diff options
author | mekolat <mekolat@gmail.com> | 2015-03-02 15:02:29 -0500 |
---|---|---|
committer | mekolat <mekolat@gmail.com> | 2015-03-07 18:57:59 -0500 |
commit | ba62260c2e047662062a6bb69961004d59abf1eb (patch) | |
tree | e18400b03003de7568c5844aeff5e756b3b3594c /world/map/npc | |
parent | a85d79c9397ec32b5bbd4e8b3d2fb6ff1f29cf39 (diff) | |
download | serverdata-ba62260c2e047662062a6bb69961004d59abf1eb.tar.gz serverdata-ba62260c2e047662062a6bb69961004d59abf1eb.tar.bz2 serverdata-ba62260c2e047662062a6bb69961004d59abf1eb.tar.xz serverdata-ba62260c2e047662062a6bb69961004d59abf1eb.zip |
Use HumanTime for Parua
Diffstat (limited to 'world/map/npc')
-rw-r--r-- | world/map/npc/029-3/parua.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/world/map/npc/029-3/parua.txt b/world/map/npc/029-3/parua.txt index 59e0c8b6..b9972f53 100644 --- a/world/map/npc/029-3/parua.txt +++ b/world/map/npc/029-3/parua.txt @@ -105,12 +105,10 @@ L_Enjoy: goto L_Exit; L_Wait: - set @seconds, ($@ANNOUNCE_TIME - gettimetick(2)); + set @ms, ($@ANNOUNCE_TIME - gettimetick(2)) * 1000; + callfunc "HumanTime"; mes "[Parua]"; - if (@seconds/60 == 0) - mes "\"Be Patient... The fight will start in " + @seconds + " seconds.\""; - if (@seconds/60 > 0) - mes "\"Be Patient... The fight will start in " + @seconds/60 + " minute(s).\""; + mes "\"Be Patient... The fight will start in " + @time$ + ".\""; goto L_Exit; L_NotEnough: |