diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-29 14:26:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-29 14:26:57 -0300 |
commit | 76939330e98f30b52530bef2cd77228169a60936 (patch) | |
tree | ce1086c045bc2bed32001d0768683fc05c1dc689 /npc/items/teleporter.txt | |
parent | e50b461dba004b4180bd53fa70f5313a3425bb60 (diff) | |
download | serverdata-76939330e98f30b52530bef2cd77228169a60936.tar.gz serverdata-76939330e98f30b52530bef2cd77228169a60936.tar.bz2 serverdata-76939330e98f30b52530bef2cd77228169a60936.tar.xz serverdata-76939330e98f30b52530bef2cd77228169a60936.zip |
Count time flasks too. There are other bugs, beware. Missing max() on time flask too
Diffstat (limited to 'npc/items/teleporter.txt')
-rw-r--r-- | npc/items/teleporter.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/teleporter.txt b/npc/items/teleporter.txt index 64adb4120..f88540ad2 100644 --- a/npc/items/teleporter.txt +++ b/npc/items/teleporter.txt @@ -33,7 +33,7 @@ OnUse: mesc l("PS. Additional reagents may be required for warps."); next; - .@x=reputation("Hurns"); + .@x=reputation("Hurns")+countitem(TimeFlask)-1; menu l("Don't warp"), -, @@ -59,7 +59,7 @@ L_LoF: } else { doevent "shake::OnGM"; warp "017-1", 120, 89; - TELEPORTER_TIME=gettimetick(2)+(60*30)-(.@x*60); + TELEPORTER_TIME=gettimetick(2)+(60*50)-(.@x*60); } closedialog; end; |