pueblodefairy Posted February 25, 2019 Posted February 25, 2019 (edited) Im looking for an extra npc who can change job sprites for example change wanderer old sprite for new wanderer sprite by paying 100m zeny. and do the same with all jobs. I really appreciate help Edited February 25, 2019 by pueblodefairy Quote
0 AnnieRuru Posted February 26, 2019 Posted February 26, 2019 (edited) prontera,147,174,5 script Change Dress 509,{ if ( !(eaclass() & EAJL_THIRD) || BaseJob == Job_SuperNovice ) { mes "I'm sorry, but you do not have 3rd class."; close; } mes "Hi "+strcharinfo(0)+" do you want to change your dress?"; next; if ( select ( "Yes", "No" ) == 2 ) close; if ( Zeny < 100000000 ) { mes "You need 100,000,000 Zeny"; close; } .@s = select("Primary Dress", "Second Dress") -1; if ( getlook(LOOK_BODY2) == .@s ) { mes "You already wearing that dress"; close; } setlook LOOK_BODY2, .@s; Zeny -= 100000000; mes "Done!"; close; } this script was like... just few topics down below ... Edited February 26, 2019 by AnnieRuru 1 Quote
0 pueblodefairy Posted February 26, 2019 Author Posted February 26, 2019 16 hours ago, AnnieRuru said: prontera,147,174,5 script Change Dress 509,{ if ( !(eaclass() & EAJL_THIRD) || BaseJob == Job_SuperNovice ) { mes "I'm sorry, but you do not have 3rd class."; close; } mes "Hi "+strcharinfo(0)+" do you want to change your dress?"; next; if ( select ( "Yes", "No" ) == 2 ) close; if ( Zeny < 100000000 ) { mes "You need 100,000,000 Zeny"; close; } .@s = select("Primary Dress", "Second Dress") -1; if ( getlook(LOOK_BODY2) == .@s ) { mes "You already wearing that dress"; close; } setlook LOOK_BODY2, .@s; Zeny -= 100000000; mes "Done!"; close; } this script was like... just few topics down below ... Thanks a lot its works good, but it has a problem when i log out the sprite change again. Do i have to change sprites names to fix it? or something different? Quote
0 AnnieRuru Posted February 27, 2019 Posted February 27, 2019 exact same script, this bug doesn't happen on hercules you can report in rathena githubhttps://github.com/rathena/rathena/issues 1 Quote
0 pueblodefairy Posted February 27, 2019 Author Posted February 27, 2019 34 minutes ago, AnnieRuru said: exact same script, this bug doesn't happen on hercules you can report in rathena githubhttps://github.com/rathena/rathena/issues thanks a lot i fixed it really easy. I really appreciate your help Quote
0 tokenacc001 Posted July 14, 2020 Posted July 14, 2020 On 2/27/2019 at 10:19 AM, pueblodefairy said: thanks a lot i fixed it really easy. I really appreciate your help hello, may i know what you did to fix the problem where the sprite reverted to before after logging out? Quote
0 pueblodefairy Posted July 14, 2020 Author Posted July 14, 2020 9 hours ago, tokenacc001 said: hello, may i know what you did to fix the problem where the sprite reverted to before after logging out? emulator/ renewal/ conf / battle / client // Save body styles. (Note 1) // Note: Don't turn this on unless you know what you are doing. // Sprites are not released officially. save_body_style: yes Quote
0 tokenacc001 Posted July 15, 2020 Posted July 15, 2020 (edited) 4 hours ago, pueblodefairy said: emulator/ renewal/ conf / battle / client // Save body styles. (Note 1) // Note: Don't turn this on unless you know what you are doing. // Sprites are not released officially. save_body_style: yes oh thanks! it worked. Edited July 15, 2020 by tokenacc001 Quote
Question
pueblodefairy
Im looking for an extra npc who can change job sprites for example change wanderer old sprite for new wanderer sprite by paying 100m zeny. and do the same with all jobs. I really appreciate help

Edited by pueblodefairy7 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.