blob: 87ec45faa8b6143aae1416f1287f3f62087d426e (
plain) (
tree)
|
|
new_1-1.gat,22,21,0 script Malivox 103,{
// if (ResetA_charstate == 1) goto L_Multiple;
// set @cost, 10000000 / ($ResetA_uses + 1);
set @cost, baselevel * 100;
mes "[Rogue Mage]";
mes "\"I have come across a spell that will";
mes "reset your status points.";
mes "Normally this spell is expensive, but";
mes "due to an unusual constellation of the";
mes "stars I can cast it very cheaply!";
mes "For you it will cost only "+@cost+" gp.\"";
next;
menu "Reset my stats",-,"Forget about it",L_Pass;
if (zeny<@cost) goto L_NoMoney;
// set $ResetA_uses, $ResetA_uses + 1;
// set ResetA_charstate, 1;
L_Reset:
set zeny, zeny-@cost;
resetstatus;
// even though statusup2 takes a number, it does not
// decrease chars statspoint, hence the repeating.
statusup bStr;
statusup bStr;
statusup bStr;
statusup bStr;
statusup bvit;
statusup bvit;
statusup bvit;
statusup bvit;
statusup bInt;
statusup bInt;
statusup bInt;
statusup bInt;
statusup bAgi;
statusup bAgi;
statusup bAgi;
statusup bAgi;
statusup bDex;
statusup bDex;
statusup bDex;
statusup bDex;
statusup bLuk;
statusup bLuk;
statusup bLuk;
statusup bLuk;
mes "[Rogue Mage]";
mes "\"There you are.";
mes "";
mes "Good as new!\"";
next;
close;
L_Pass:
mes "[Rogue Mage]";
mes "\"Very well then, see you.\"";
next;
close;
L_NoMoney:
mes "[Rogue Mage]";
mes "\"Oh dear, the price cannot be bargained.";
mes "";
mes "Perhaps you can borrow from a friend?\"";
next;
close;
}
|