diff options
author | evera <evera@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-03 13:35:56 +0000 |
---|---|---|
committer | evera <evera@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-03 13:35:56 +0000 |
commit | c301134cbe48c26635b3c02229859e4dd08fdb96 (patch) | |
tree | 7899effa3cf61378a71f2ba655602c4ede84e7f5 /npc/other | |
parent | 3db89006299235c4060c4bb9cc042212bc766f24 (diff) | |
download | hercules-c301134cbe48c26635b3c02229859e4dd08fdb96.tar.gz hercules-c301134cbe48c26635b3c02229859e4dd08fdb96.tar.bz2 hercules-c301134cbe48c26635b3c02229859e4dd08fdb96.tar.xz hercules-c301134cbe48c26635b3c02229859e4dd08fdb96.zip |
fixed zeny bug in dts_warper.txt
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8093 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/dts_warper.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/other/dts_warper.txt b/npc/other/dts_warper.txt index ae0956fdb..c5f752166 100644 --- a/npc/other/dts_warper.txt +++ b/npc/other/dts_warper.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= Evera
//===== Current Version: =====================================
-//= 1.9
+//= 2.0
//===== Compatible With: =====================================
//= eAthena
//===== Description: =========================================
@@ -42,6 +42,7 @@ //= Pretty sure there are more locations I didn't find.
//= Base level 60 required to vote
//===== Version History: ====================================
+//= 2.0 Fixed zeny bug [Evera] (7/03/06)
//= 1.9 Removed global eligibility option [Evera] (7/15/06)
//= 1.8 Changed requirement to lvl 60 [Evera] (7/03/06)
//= 1.7 Fixed bug of DTS_Admin not running by itself [Evera] (7/03/06)
@@ -784,7 +785,7 @@ function script F_DTS_Warp { Lwarp:
if (@dtswarp$[@num] == "Cancel") goto Lcancel;
if (Zeny<4000) goto Lnomoney;
- set Zeny, Zeny-@dtswarpcost[@num];
+ set Zeny, Zeny-4000;
if (@dtswarpmap$[@num] == "Toy Factory, Level 2") warp "xmas_dun02.gat",130,123; //Maps to warp to
if (@dtswarpmap$[@num] == "Clock Tower, Level 3") warp "alde_dun03.gat",265,22; |