diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-24 22:58:01 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-24 22:58:01 +0000 |
commit | 16f52f1e0353529f3c6725cbc9d4dd20d8374b36 (patch) | |
tree | 0af2187ebdfcf71f4d3a9f9439f0ea3ab5ba16b6 /npc/custom | |
parent | 98b876139a91fd1b44719c3f1d21c754096a1377 (diff) | |
download | hercules-16f52f1e0353529f3c6725cbc9d4dd20d8374b36.tar.gz hercules-16f52f1e0353529f3c6725cbc9d4dd20d8374b36.tar.bz2 hercules-16f52f1e0353529f3c6725cbc9d4dd20d8374b36.tar.xz hercules-16f52f1e0353529f3c6725cbc9d4dd20d8374b36.zip |
- Clarified the comment about spaces in 'server_name' config. (bugreport:2656)
- Grouped all the log file/table settings together, follow up to r15253 (ea:15042).
- Added "DROP TABLE" statements to the mob_skill_db SQL files. (bugreport:5284)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15629 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/jobs/reset.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/custom/jobs/reset.txt b/npc/custom/jobs/reset.txt index 8d69650df..2b185b958 100644 --- a/npc/custom/jobs/reset.txt +++ b/npc/custom/jobs/reset.txt @@ -14,45 +14,45 @@ //============================================================ prontera,150,193,4 script Reset Girl 124,{ - set @rskill,5000; // Set value in zeny for skill reset here - set @rstat,5000; // Set value in zeny for stat reset here - set @rboth,9000; // Set value for "package deal" (i.e.: reseting both) here. + set .rskill,5000; // Set value in zeny for skill reset here + set .rstat,5000; // Set value in zeny for stat reset here + set .rboth,9000; // Set value for "package deal" (i.e.: reseting both) here. mes "[Reset Girl]"; mes "I am a Reset Girl."; - mes "Reset Stats: "+ @rstat +"z"; - mes "Reset Skills: "+ @rskill +"z"; - mes "Reset Both: "+ @rboth +"z"; + mes "Reset Stats: "+ .rstat +"z"; + mes "Reset Skills: "+ .rskill +"z"; + mes "Reset Both: "+ .rboth +"z"; 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 < @rskill) { + if (Zeny < .rskill) { 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-@rskill; + set Zeny,Zeny-.rskill; ResetSkill; close; case 2: mes "[Reset Girl]"; - if (Zeny < @rstat) { + if (Zeny < .rstat) { 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-@rstat; + set Zeny,Zeny-.rstat; ResetStatus; close; case 3: mes "[Reset Girl]"; - if (Zeny < @rboth) { + if (Zeny < .rboth) { 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-@rboth; + set Zeny,Zeny-.rboth; ResetSkill; ResetStatus; close; |