Jump to content
  • 0
iCORE

[Request] Size changer npc

Question

i am looking for a script that can change the size of the character and dont revert upon loging out for a certain amount of zeny or an item requirement.

 

Change to @size 3 = 500 Million Zeny or 50 Poring Coin

Change to @size 1  = 1 Billion Zeny or 100 Poring Coin

 

Thanks.

Edited by iCORE

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0

it's not possible to make it persist after logout, but you can emulate this behaviour by setting a char variable, then in OnPCLoginEvent checking if the variable exists and calling atcommand()

Share this post


Link to post
Share on other sites
  • 0
prontera,149,179,0	script	Size Changer	4_PORING,{

mes "Do you want to change your size??";
menu "Ok",-,"No thanks.",L_No;

atcommand "@size 1 "+strcharinfo(0);

close;

L_No:

close;

}

thanks for the reply i have this script now can you help on adding a little bit more?

Share this post


Link to post
Share on other sites
  • 0

Here you go.

 

prontera,150,150,5	script	SizeChanger	4_M_PECOKNIGHT,{
	mes "What size would you like to have?";
	mes "These changes are persisant after logout";
	next;
	sizeVal = select("Normal:Small:Large") -1;
	mes "There you go!";
	close2;
OnPCLoginEvent:
	atcommand "@size "+ sizeVal;
	end;
}  

 

Edited by PB&JJ

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.