If I reset my stats on my server, they get lower. My Job Master give 750 extra status points. If I reset them they jump back to 13222 where I can edit the max statuspoints so that the 750 won't get deleted?
My Script:
merullian,99,100,5 script Reset Girl 882,{
//Preis Status Reset, Preis Skill Reset, Preis beides Reset, Extra Status punkte, Minimales Level,Erlaube Novice zurücksetzen(0 = Nein,1 = Ja),Preis Novice Reset,Novice Reset Extra Punkte
setarray @in1to[1],40000,50000,90000,0,20,1,100000,100;
//Name
set @in1to1$,"[^ff0000Resetter^000000]";
mes @in1to1$;
if (@in1to[6] == 0)mes "Gutentag, ich bin ein Resetter und kann deine Status und Skills zurücksetzen.";
if (@in1to[6] == 1)mes "Gutentag, ich bin ein Resetter und kann deine Status,Skills und dich zum Novice zurücksetzen.";
next;
mes @in1to1$;
if (BaseLevel < @in1to[5]){
mes "Du musst mindestens Base Level "+@in1to[5]+"^000000 haben.";
close;
}
mes "Was möchtest du machen ?";
switch(select((@in1to[6])?"Zum Novice Zurücksetzen":"",
"Status Resetten","Skills Resetten","Beides Resetten","Beenden")){
case 1:
next;
mes @in1to1$;
mes "Das wird dich ^ff0000"+@in1to[7]+"^000000 kosten, einversanden?";
switch(select("Nein","Ja")){
case 1:
close;
case 2:
next;
mes @in1to1$;
if(checkcart() || checkfalcon() || checkriding()){
mes "Bitte entferne dein Cart,Falcon oder PecoPeco und komm dann wieder";
close;
}
resetlvl 1;
set StatusPoint,0;
set SkillPoint,0;
jobchange 0;
set StatusPoint,StatusPoint+@in1to[4];
mes "Du wurdest nun als Novice wiedergeboren...";
close;
}
case 2:
next;
mes @in1to1$;
mes "Das wird dich ^ff0000"+@in1to[1]+"^000000 kosten, einversanden?";
switch(select("Ja","Nein")){
case 1:
if (Zeny < @in1to[1])goto lneedzeny;
ResetStatus;
if (BaseLevel == 350)set StatusPoint,13952+@in1to[4];
if (BaseLevel < 350)set StatusPoint,StatusPoint+@in1to[4];
set Zeny,Zeny-@in1to[1];
close;
case 2:
close;
}
case 3:
next;
mes @in1to1$;
mes "Das wird dich ^ff0000"+@in1to[2]+"^000000 kosten, einversanden?";
switch(select("Ja","Nein")){
case 1:
if (Zeny < @in1to[1])goto lneedzeny;
ResetSkill;
set Zeny,Zeny-@in1to[2];
close;
case 2:
close;
}
case 4:
next;
mes @in1to1$;
mes "Das wird dich ^ff0000"+@in1to[3]+"^000000 kosten, einversanden?";
switch(select("Ja","Nein")){
case 1:
if (Zeny < @in1to[3])goto lneedzeny;
ResetStatus;
ResetSkill;
if (BaseLevel == 350)set StatusPoint,13222+@in1to[4];
if (BaseLevel < 350)set StatusPoint,StatusPoint+@in1to[4];
set Zeny,Zeny-@in1to[3];
close;
case 2:
close;
}
case 5:
close;
}
next;
mes @in1to1$;
mes "Du hast leider nicht genug Zeny dabei..";
close;
}
Question
Werdio
Hi,
If I reset my stats on my server, they get lower. My Job Master give 750 extra status points. If I reset them they jump back to 13222
where I can edit the max statuspoints so that the 750 won't get deleted?
My Script:
Edited by Lightning Farron3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.