summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWushin <pasekei@gmail.com>2015-05-11 20:54:05 -0500
committerWushin <pasekei@gmail.com>2015-05-11 20:54:05 -0500
commit666512014d1a7929d511403c47fc4e49420c5423 (patch)
treea61636883be4e1b4d57d414279cbd3f2c8998186
parentf66a4f56235180e8f0a476de4c59c6bc4c7eb51d (diff)
parent821d5db25b3561850480ae1c0fded08fe4b2a039 (diff)
downloadserverdata-666512014d1a7929d511403c47fc4e49420c5423.tar.gz
serverdata-666512014d1a7929d511403c47fc4e49420c5423.tar.bz2
serverdata-666512014d1a7929d511403c47fc4e49420c5423.tar.xz
serverdata-666512014d1a7929d511403c47fc4e49420c5423.zip
Merge pull request #372 from mekolat/parua
fix candor timer
-rw-r--r--world/map/npc/029-3/parua.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/world/map/npc/029-3/parua.txt b/world/map/npc/029-3/parua.txt
index 41e1fe8c..1ac59e0a 100644
--- a/world/map/npc/029-3/parua.txt
+++ b/world/map/npc/029-3/parua.txt
@@ -8,7 +8,7 @@
set @FIGHT_CAVE_ANNOUNCE_COST, 3000;
set @FIGHT_CAVE_ANNOUNCE_COST$, "3,000";
if ($@FIGHT_CAVE_STATUS == 1) goto L_Enjoy;
- if ($@FIGHT_CAVE_STATUS >= 2) goto L_Wait;
+ if ($@FIGHT_CAVE_STATUS >= 2 && $@ANNOUNCE_TIME > gettimetick(2)) goto L_Wait;
mes "[Parua]";
mes "\"Hello.\"";
next;
@@ -105,7 +105,7 @@ L_Enjoy:
goto L_Exit;
L_Wait:
- set @ms, ($@ANNOUNCE_TIME - gettimetick(2)) * 1000;
+ set @seconds, $@ANNOUNCE_TIME - gettimetick(2);
callfunc "HumanTime";
mes "[Parua]";
mes "\"Be Patient... The fight will start in " + @time$ + ".\"";
@@ -362,6 +362,7 @@ L_CleanUp:
donpcevent "#CandorAnnouncer::OnCommandTalk";
areatimer "029-3", 20, 20, 70, 60, 10, "Parua::OnReward";
set $@FIGHT_CAVE_STATUS, 0;
+ set $@ANNOUNCE_TIME, 0;
set $@FIGHT_CAVE_PAID, 0;
set $@FIGHT_CAVE_PLAYER_COUNT, 0;
set $@FIGHT_CAVE_LEVEL, 1;