ahloi007 Posted February 18, 2017 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 78 Reputation: 1 Joined: 10/15/12 Last Seen: May 23, 2023 Share 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 Link to comment Share on other sites More sharing options...
0 HappyMan Posted February 18, 2017 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 191 Reputation: 25 Joined: 07/19/14 Last Seen: June 26, 2019 Share Posted February 18, 2017 check your script bro. Quote Link to comment Share on other sites More sharing options...
0 Technoken Posted February 18, 2017 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 505 Reputation: 127 Joined: 04/04/16 Last Seen: Sunday at 02:20 PM Share 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 Link to comment Share on other sites More sharing options...
0 ahloi007 Posted March 3, 2017 Group: Members Topic Count: 27 Topics Per Day: 0.01 Content Count: 78 Reputation: 1 Joined: 10/15/12 Last Seen: May 23, 2023 Author Share 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 Link to comment Share on other sites More sharing options...
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!
Link to comment
Share on other sites
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.