diff options
author | mekolat <mekolat@gmail.com> | 2015-03-02 15:06:33 -0500 |
---|---|---|
committer | mekolat <mekolat@gmail.com> | 2015-03-07 18:57:59 -0500 |
commit | 42e418d881029a97d40ce959c1758e56f28c18a5 (patch) | |
tree | ae85ba6c1678b68848cd2f138b227800f2b05edb /world/map | |
parent | ba62260c2e047662062a6bb69961004d59abf1eb (diff) | |
download | serverdata-42e418d881029a97d40ce959c1758e56f28c18a5.tar.gz serverdata-42e418d881029a97d40ce959c1758e56f28c18a5.tar.bz2 serverdata-42e418d881029a97d40ce959c1758e56f28c18a5.tar.xz serverdata-42e418d881029a97d40ce959c1758e56f28c18a5.zip |
Use HumanTime for Brodomir
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/npc/009-6/brodomir.txt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/world/map/npc/009-6/brodomir.txt b/world/map/npc/009-6/brodomir.txt index 9b2c55d5..21d14fb7 100644 --- a/world/map/npc/009-6/brodomir.txt +++ b/world/map/npc/009-6/brodomir.txt @@ -146,13 +146,10 @@ L_Go: goto L_Close; L_Wait: - set $@brodomir_seconds, ($@BRODOMIR_START_TIME - gettimetick(2)); + set @ms, ($@BRODOMIR_START_TIME - gettimetick(2)) * 1000; + callfunc "HumanTime"; mes "[Brodomir]"; - if ($@brodomir_seconds/60 == 0) - mes "\"Just a little longer. I will bring you there in " + $@brodomir_seconds + " seconds.\""; - if ($@brodomir_seconds/60 > 0) - mes "\"Just a little longer. I will bring you there in " + $@brodomir_seconds/60 + " minute(s).\""; - set $@brodomir_seconds, 0; + mes "\"Just a little longer. I will bring you there in " + @time$ + ".\""; goto L_Close; OnTimer5000: |