Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

skillpoint remover.

Newbie Spellweaver
Joined
Aug 14, 2009
Messages
67
Reaction score
2
Try this one..

Just edit the header by yourself.
<map>,<x>,<y>,<z> script Skill Point Remover <#>,{

if(!SkillPoint) {
mes "I can't help you right now.";
close;
}
else {
mes "Want me to remove your left over skill points?";
if(select("No:Yes") == 1) close;
set SkillPoint,0;
mes "Done!";
close;
}
}
 
Last edited:
Back
Top