diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-03-27 23:12:30 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-04-04 19:26:42 +0200 |
commit | 865e3023f7a83bc7fedf621b55962cbfd4f7843a (patch) | |
tree | ea89a0e9714c6542d2c78ab8b775ca2943c22e36 /npc/029-3_Fight_Cave/parua.txt | |
parent | 9384ac196aa4cacd86d3555e137dff3b3a6bc6ab (diff) | |
download | serverdata-865e3023f7a83bc7fedf621b55962cbfd4f7843a.tar.gz serverdata-865e3023f7a83bc7fedf621b55962cbfd4f7843a.tar.bz2 serverdata-865e3023f7a83bc7fedf621b55962cbfd4f7843a.tar.xz serverdata-865e3023f7a83bc7fedf621b55962cbfd4f7843a.zip |
removing debug possibility from parua script after testing
Diffstat (limited to 'npc/029-3_Fight_Cave/parua.txt')
-rw-r--r-- | npc/029-3_Fight_Cave/parua.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/npc/029-3_Fight_Cave/parua.txt b/npc/029-3_Fight_Cave/parua.txt index 3a98f003..c292f963 100644 --- a/npc/029-3_Fight_Cave/parua.txt +++ b/npc/029-3_Fight_Cave/parua.txt @@ -1,5 +1,4 @@ // Parua's fight -// Todo: Remove comments from "getareausers" lines. They are only to facilitate testing 029-3.gat,50,25,0 script Parua 183,{ if ($@FIGHT_CAVE_STATUS == 1) goto L_Enjoy; if ($@FIGHT_CAVE_STATUS >= 2) goto L_Wait; @@ -18,12 +17,12 @@ if (zeny >= 20000 + 3000) goto L_CallPlayers; L_Paying: -// if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; + if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; if (zeny < 20000) goto L_NotEnough; set zeny, zeny - 20000; L_StartFight: -// if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; + if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; npctalk "Let the battle begin!"; set $@FIGHT_CAVE_STATUS, 1; set $@FIGHT_CAVE_LEVEL, 1; @@ -48,7 +47,7 @@ L_CallPlayers: "In 30 minutes.", -, "I don't want to wait. Let's start it now!", L_Paying; -// if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; + if (getareausers("029-3.gat", 20, 20, 70, 60) < 5) goto L_NotEnoughPlayers; if (zeny < 20000 + 3000) goto L_NotEnough_Announce; set zeny, zeny - (20000 + 3000); set $@SPONSOR$, strcharinfo(0); |