diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-20 20:16:42 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-20 20:16:42 +0000 |
commit | e2fe19ef95e052f8fbbd238321a68449a03876fe (patch) | |
tree | c70e532d3a6ea0854b54766b5bbfe7eba1cd9f1d /npc/custom/resetnpc.txt | |
parent | 40066aec2e23c2b3c204e4a72de67d7f74d0536e (diff) | |
download | hercules-e2fe19ef95e052f8fbbd238321a68449a03876fe.tar.gz hercules-e2fe19ef95e052f8fbbd238321a68449a03876fe.tar.bz2 hercules-e2fe19ef95e052f8fbbd238321a68449a03876fe.tar.xz hercules-e2fe19ef95e052f8fbbd238321a68449a03876fe.zip |
* Fixed a typo in guild scripts, bugreport:6517 (guild\gefg_cas02.txt)
* Misc. standardization...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16672 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/resetnpc.txt')
-rw-r--r-- | npc/custom/resetnpc.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/custom/resetnpc.txt b/npc/custom/resetnpc.txt index c0839212c..eb34137e4 100644 --- a/npc/custom/resetnpc.txt +++ b/npc/custom/resetnpc.txt @@ -33,7 +33,8 @@ prontera,150,193,4 script Reset Girl 124,{ mes "[Reset Girl]"; if (Zeny < .@ResetSkill) { mes "Sorry, you don't have enough Zeny."; - close; } + close; + } set Zeny, Zeny-.@ResetSkill; sc_end SC_ALL; ResetSkill; @@ -43,7 +44,8 @@ prontera,150,193,4 script Reset Girl 124,{ mes "[Reset Girl]"; if (Zeny < .@ResetStat) { mes "Sorry, you don't have enough Zeny."; - close; } + close; + } set Zeny, Zeny-.@ResetStat; ResetStatus; mes "There you go!"; @@ -52,7 +54,8 @@ prontera,150,193,4 script Reset Girl 124,{ mes "[Reset Girl]"; if (Zeny < .@ResetBoth) { mes "Sorry, you don't have enough Zeny."; - close; } + close; + } set Zeny, Zeny-.@ResetBoth; sc_end SC_ALL; ResetSkill; |