Stop gaining experience

JoyRo

New member
Messages
120
Points
0
Location
Netherlands
Emulator
Hello,

Is it posible to make a npc that wil stop you from getting lvls.
Like if i am lvl 80 and i wanna stay lvl 80 i talk to a npc or something and wont get any more lvl up.
Even if i kill alot of mobs.

 
Try this

Code:
OnNPCKillEvent:
	if( BaseLevel >= 80 ){
		set BaseExp,0;
	}
	end;
 
This is a example as i wanna make it but its not working atm.
Any 1 can help.
i want the npc set my exp gain to 0 so i can keep killing whatever i lke.

Atm it removes my exp.

Code:
prontera,146,142,4	script	EXP Stop	4_F_KAFRA6,{

	mes "[Stop EXP]";
	mes "So you wanna stop leveling your character?"; 
	next;
	menu "Yes", EXP_OFF, "Set it back!", EXP_ON, "Exit", EXP_EXIT3;
	
EXP_OFF:
	if( BaseLevel >= 1 ){
		set BaseExp,0;
	}
	close;
	
EXP_ON:
	if( BaseLevel >= 1 ){
		set BaseExp,100;
	}
	close;

EXP_EXIT3:
	mes "[Stop EXP]";
	mes "Come back whenever you want.";
	close;
}
 
Last edited by a moderator:
oke thanx but if i use ModExp it wil mess the hole account not just 1 char.
And also with ViP status wil be messed up.
They gain 200% exp for 1 month

 
Back
Top