diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 02:36:44 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 02:36:44 +0000 |
commit | 6979b1d621c2e5c6dab882e3825c4a867d19ba98 (patch) | |
tree | 225a767df0994bd069bc148eafd0e9d90b5804b9 /npc/custom/resetnpc.txt | |
parent | fb10d4b4a1cf11daf0be70c2c03ca12358b22fbe (diff) | |
download | hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.gz hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.bz2 hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.xz hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.zip |
/custom/ folder overhaul:
==== Script Changes ====
* Warper replaced with Euphy's Warper v1.2
* Stylist replaced with a much more efficient script
* Healer replaced with more efficient script
* MVP Arena heavily condensed, and text edited
* Removed logout suggestion in Reset NPC (why was that there?)
* Quest Warper added to scripts_custom.conf [bug fix]
==== Reorganization ====
* All folders in root directory removed except "battleground", "events", "quests"
* All non-essential scripts in root directory moved to "etc" folder
* A few files renamed for easier identification
* scripts_custom.conf reordered for easier identification
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16193 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/resetnpc.txt')
-rw-r--r-- | npc/custom/resetnpc.txt | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/npc/custom/resetnpc.txt b/npc/custom/resetnpc.txt new file mode 100644 index 000000000..4069c9f09 --- /dev/null +++ b/npc/custom/resetnpc.txt @@ -0,0 +1,62 @@ +//===== rAthena Script =======================================
+//= Reset NPC
+//===== By: ==================================================
+//= rAthena Dev Team
+//===== Current Version: =====================================
+//= 1.1
+//===== Compatible With: =====================================
+//= rAthena SVN
+//===== Description: =========================================
+//= Resets skills, stats, or both.
+//===== Additional Comments: =================================
+//= 1.0 First Version
+//= 1.1 Optimized for the greater good. [Kisuka]
+//= 1.2 Cleaning [Euphy]
+//============================================================
+
+prontera,150,193,4 script Reset Girl 124,{
+
+ set .@ResetStat,5000; // Zeny for stat reset
+ set .@ResetSkill,5000; // Zeny for skill reset
+ set .@ResetBoth,9000; // Zeny for resetting both together
+
+ mes "[Reset Girl]";
+ mes "I am the Reset Girl.";
+ mes "Reset Stats: "+ .@ResetStat +"z";
+ mes "Reset Skills: "+ .@ResetSkill +"z";
+ mes "Reset Both: "+ .@ResetBoth +"z";
+ mes "Please select the service you want:";
+ next;
+ switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel")) {
+ case 1:
+ mes "[Reset Girl]";
+ if (Zeny < .@ResetSkill) {
+ mes "Sorry, you don't have enough Zeny.";
+ close; }
+ set Zeny, Zeny-.@ResetSkill;
+ ResetSkill;
+ mes "There you go!";
+ close;
+ case 2:
+ mes "[Reset Girl]";
+ if (Zeny < .@ResetStat) {
+ mes "Sorry, you don't have enough Zeny.";
+ close; }
+ set Zeny, Zeny-.@ResetStat;
+ ResetStatus;
+ mes "There you go!";
+ close;
+ case 3:
+ mes "[Reset Girl]";
+ if (Zeny < .@ResetBoth) {
+ mes "Sorry, you don't have enough Zeny.";
+ close; }
+ set Zeny, Zeny-.@ResetBoth;
+ ResetSkill;
+ ResetStatus;
+ mes "There you go!";
+ close;
+ case 4:
+ close;
+ }
+}
\ No newline at end of file |