diff options
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); |