
- Removed Fredzilla's duping auction script (no need for it since we have official auction system). - Removed 'Temp Gefenia Warper' because we have 'The Sign Quest'. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13213 54d463be-8e91-2dee-dedb-b68131a5f0ec
58 lines
1.7 KiB
Plaintext
58 lines
1.7 KiB
Plaintext
//===== eAthena Script =======================================
|
|
//= Reset NPC for Athena by Script & DB Team
|
|
//===== By: ==================================================
|
|
//= eAthena Team
|
|
//===== Current Version: =====================================
|
|
//= 1.1
|
|
//===== Compatible With: =====================================
|
|
//= Any eAthena Version
|
|
//===== Description: =========================================
|
|
//= Resets skills, stats, or both.
|
|
//===== Additional Comments: =================================
|
|
//= 1.0 First Version
|
|
//= 1.1 Optimized for the greater good. [Kisuka]
|
|
//============================================================
|
|
prontera,150,193,4 script Reset Girl 124,{
|
|
mes "[Reset Girl]";
|
|
mes "I am a Reset Girl.";
|
|
mes "Reset Stats: 5,000z";
|
|
mes "Reset Skills: 5,000z";
|
|
mes "Reset Both: 9,000z";
|
|
mes "Please select the service you want:";
|
|
next;
|
|
switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Quit")) {
|
|
case 1:
|
|
mes "[Reset Girl]";
|
|
if (Zeny < 5000) {
|
|
mes "Sorry, you don't have enough Zeny.";
|
|
close;
|
|
}
|
|
mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!";
|
|
set Zeny,zeny-5000;
|
|
ResetSkill;
|
|
close;
|
|
case 2:
|
|
mes "[Reset Girl]";
|
|
if (Zeny < 5000) {
|
|
mes "Sorry, you don't have enough Zeny.";
|
|
close;
|
|
}
|
|
mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!";
|
|
set Zeny,zeny-5000;
|
|
ResetStatus;
|
|
close;
|
|
case 3:
|
|
mes "[Reset Girl]";
|
|
if (Zeny < 9000) {
|
|
mes "Sorry, you don't have enough Zeny.";
|
|
close;
|
|
}
|
|
mes "Alright, here we go now.. Remember, changes won't take effect until you log back on!";
|
|
set Zeny,zeny-9000;
|
|
ResetSkill;
|
|
ResetStatus;
|
|
close;
|
|
case 4:
|
|
close;
|
|
}
|
|
} |