Jump to content
FapFap

Apparel Fusion

Recommended Posts

I'm having some trouble while fusing Champ Armor to "All Class Armor Apparel" it doesn't let me fuse, fusion allowed only to "Champ Armor Apparel", what should I edit at forge.lua to allow fusion of Champ Armors to "All Class Apparel Armors" and after that does that require to change each Champion Armor Apparel ItemInfo Number from "27" to "22" ? I hope im clear..

Share this post


Link to post
Share on other sites

 

use a function like
inside can_fusion_item_main(Table)

	if EquipmentType == 27 then
		EquipmentType = 22
	end

in 1.36 files should be 
ItemType_Shuxing for left "
and Item_Waiguan for right"


so
 

if ItemType_Shuxing == 27 then
  ItemType_Shuxing =22
end
if Item_Waiguan == 27 then
  Item_Waiguan =22
end

or just filter all your items by itemtype 22/27 then change them all to 22  :P
should work c.c

Edited by mkhzaleh

Share this post


Link to post
Share on other sites
3 hours ago, mkhzaleh said:

inside can_fusion_item_main(Table) 


if ItemType_Shuxing == 27 then
  ItemType_Shuxing =22
end

if Item_Waiguan == 27 then
  Item_Waiguan =22
end

 

I'm still having a Pop-Up message when I try to fuse, so aint working

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...