[Request] Size changer npc

iCORE

New member
Messages
393
Points
0
Location
Halcyon Ragnarok
Github
Naori
Emulator
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.

 
Last edited by a moderator:
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()

 
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?

 
Here you go.

Code:
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;
}

 
Last edited by a moderator:
wokring
default_smile.png
thanks...

 
Back
Top