pueblodefairy Posted February 25, 2019 Group: Members Topic Count: 19 Topics Per Day: 0.01 Content Count: 74 Reputation: 0 Joined: 01/24/15 Last Seen: December 10, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 AnnieRuru Posted February 26, 2019 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 2044 Reputation: 682 Joined: 10/09/12 Last Seen: December 20, 2020 Share 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 Link to comment Share on other sites More sharing options...
0 pueblodefairy Posted February 26, 2019 Group: Members Topic Count: 19 Topics Per Day: 0.01 Content Count: 74 Reputation: 0 Joined: 01/24/15 Last Seen: December 10, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 AnnieRuru Posted February 27, 2019 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 2044 Reputation: 682 Joined: 10/09/12 Last Seen: December 20, 2020 Share 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 Link to comment Share on other sites More sharing options...
0 pueblodefairy Posted February 27, 2019 Group: Members Topic Count: 19 Topics Per Day: 0.01 Content Count: 74 Reputation: 0 Joined: 01/24/15 Last Seen: December 10, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 tokenacc001 Posted July 14, 2020 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 06/30/20 Last Seen: September 22, 2020 Share 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 Link to comment Share on other sites More sharing options...
0 pueblodefairy Posted July 14, 2020 Group: Members Topic Count: 19 Topics Per Day: 0.01 Content Count: 74 Reputation: 0 Joined: 01/24/15 Last Seen: December 10, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 tokenacc001 Posted July 15, 2020 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 35 Reputation: 0 Joined: 06/30/20 Last Seen: September 22, 2020 Share 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 Link to comment Share on other sites More sharing options...
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 pueblodefairyLink to comment
Share on other sites
7 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.