- Joined
- Oct 31, 2008
- Messages
- 124
- Reaction score
- 0
Go in forge.lua
this code indicate that the position of the apparel in iteminfo id is in no. 5000 - 6000 more.
and this :
his code indicate that the position of the equiptment that can be fuse is in id no. 1 - 4999.
so the problem is, many in our iteminfo have this unsealed 85 in id above 5000, so it is cannot be fuse, cause forge lua indicate it as apparel.
so to solve it, you got to remove the unsealed 85 to id no below 4999 (i prefer use unknown item, cause many in iteminfo id have this).
after you remove that, you got to see this in equiptment for example from my previous guide "how to make crown decaden to be able fuse and forge".
see in coloum "max instantiation hole value", the previous crown of decadent (see your iteminfo) have no. 3 (this could not be fuse), so change it into "0" (compare your iteminfo with above, above code can be fuse). that's it! you done
credit to opexone78
Code:
local ItemID_Waiguan = GetItemID ( Item_Waiguan )
if ItemID_Waiguan <= 4999 or ItemID_Waiguan >= 6000 then
SystemNotice( role ,"Item cannot determined attribute")
return 0
end
this code indicate that the position of the apparel in iteminfo id is in no. 5000 - 6000 more.
and this :
Code:
local Item_FUSIONID_star = GetItemAttr ( Item_Shuxing , ITEMATTR_VAL_FUSIONID )
local ItemID_shuxing_star = GetItemID ( Item_Shuxing )
if Item_FUSIONID_star ==0 and ItemID_shuxing_star >=5000 then
SystemNotice( role ,"Equipment on right slot has not attribute. Unable to fuse!")
return 0
end
his code indicate that the position of the equiptment that can be fuse is in id no. 1 - 4999.
so the problem is, many in our iteminfo have this unsealed 85 in id above 5000, so it is cannot be fuse, cause forge lua indicate it as apparel.
so to solve it, you got to remove the unsealed 85 to id no below 4999 (i prefer use unknown item, cause many in iteminfo id have this).
after you remove that, you got to see this in equiptment for example from my previous guide "how to make crown decaden to be able fuse and forge".
Code:
2835 Crown of Decedent e1043 10110001 0000920001 0001930001 0002991001 0003010301 0 00 22 0 0 0 0 1 1 1 1 1 1 1 123564 -1 75 -1 0 0 0 -1 0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 1,1 1,1 1,1 1,1 1,1 0,0 0,0 0,0 0,0 0,0 10,10 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0 7000,7000 20000,20000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 Boss Crown
see in coloum "max instantiation hole value", the previous crown of decadent (see your iteminfo) have no. 3 (this could not be fuse), so change it into "0" (compare your iteminfo with above, above code can be fuse). that's it! you done
credit to opexone78