Jump to content
  • 0

Npc who change the job sprite


pueblodefairy

Question


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.01
  • Content Count:  74
  • Reputation:   0
  • Joined:  01/24/15
  • Last Seen:  

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 ClownWansderer.png.155898c7dc7edfe78c83871ca522b97d.pngasdasdasdsadsad.png.c0c817079a542cc7452b2aadc9dd6579.png

Edited by pueblodefairy
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

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 by AnnieRuru
  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.01
  • Content Count:  74
  • Reputation:   0
  • Joined:  01/24/15
  • Last Seen:  

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?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

exact same script, this bug doesn't happen on hercules

you can report in rathena github
https://github.com/rathena/rathena/issues

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.01
  • Content Count:  74
  • Reputation:   0
  • Joined:  01/24/15
  • Last Seen:  

34 minutes ago, AnnieRuru said:

exact same script, this bug doesn't happen on hercules

you can report in rathena github
https://github.com/rathena/rathena/issues

thanks a lot i fixed it really easy. I really appreciate your help

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.01
  • Content Count:  35
  • Reputation:   0
  • Joined:  06/30/20
  • Last Seen:  

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?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.01
  • Content Count:  74
  • Reputation:   0
  • Joined:  01/24/15
  • Last Seen:  

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

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.01
  • Content Count:  35
  • Reputation:   0
  • Joined:  06/30/20
  • Last Seen:  

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 by tokenacc001
Link to comment
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
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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...