ahloi007 Posted February 18, 2017 Posted February 18, 2017 The type of item shown in the list was wrong, how can I fix this problem? If anyone knows please tell me how to do, Thanks you! Quote
0 Technoken Posted February 18, 2017 Posted February 18, 2017 It's because of this update https://github.com/rathena/rathena/commit/7d6be7e21ea831130111de846b81700cfc6c6c1e Update your script or post it here so we can tell you which one to replace. Quote
0 ahloi007 Posted March 3, 2017 Author Posted March 3, 2017 // Group requirement if (getgroupid() < .UseMinLv) { mes .NpcName$; mes "I'm sorry, but I can't help you."; mes "See you."; close; } mes .NpcName$; mes "I'm the Armsmith."; mes "I can refine all kinds of weapons, armor and equipment, so let me"; mes "know what you want me to refine."; next; setarray .@position$[1], "Head","Body","Left hand","Right hand","Robe","Shoes","Accessory 1","Accessory 2","Head 2","Head 3"; set .@menu$, ""; for(.@i = 1; .@i <= 10; .@i++) { if(getequipisequiped(.@i)) { set .@menu$, .@menu$ + .@position$[.@i] + "-" + "[" + getequipname(.@i) + "]"; .@equipped = 1; } set .@menu$, .@menu$ + ":"; } if (.@equipped == 0) { mes .NpcName$; mes "I don't think I can refine any items you have..."; close; Is it this one? Sry for my late reply.... Quote
Question
ahloi007
The type of item shown in the list was wrong, how can I fix this problem? If anyone knows please tell me how to do, Thanks you!
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.