diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-20 15:35:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-20 15:35:43 -0300 |
commit | 0fed099bb375cdfb19802dd69a88575c6b4f5ab6 (patch) | |
tree | 0ac6a7328edd6a3d28f9a1fbf64986955f771660 /npc/items | |
parent | 7fc5c0df16c91ab7b8ee5c785445bc9ee118247d (diff) | |
download | serverdata-0fed099bb375cdfb19802dd69a88575c6b4f5ab6.tar.gz serverdata-0fed099bb375cdfb19802dd69a88575c6b4f5ab6.tar.bz2 serverdata-0fed099bb375cdfb19802dd69a88575c6b4f5ab6.tar.xz serverdata-0fed099bb375cdfb19802dd69a88575c6b4f5ab6.zip |
Doing LoF Quests allow you up to 3 minutes discount on every warp time w/ Flask
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/teleporter.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/items/teleporter.txt b/npc/items/teleporter.txt index d14f03413..27453b248 100644 --- a/npc/items/teleporter.txt +++ b/npc/items/teleporter.txt @@ -29,10 +29,12 @@ OnUse: mesc l("PS. Additional reagents may be required for warps."); next; + .@x=reputation("Hurns"); + menu l("Don't warp"), -, - l("Land Of Fire Village (30m)"), L_LoF, - l("Save Point (30m)"), L_Save; + l("Land Of Fire Village (@@m)", 50-.@x), L_LoF, + l("Save Point (@@m)", 30-.@x), L_Save; close; @@ -42,7 +44,7 @@ L_Save: } else { doevent "shake::OnGM"; warp "Save", 0, 0; - TELEPORTER_TIME=gettimetick(2)+(60*30); + TELEPORTER_TIME=gettimetick(2)+(60*30)-(.@x*60); } closedialog; end; @@ -53,7 +55,7 @@ L_LoF: } else { doevent "shake::OnGM"; warp "017-1", 120, 89; - TELEPORTER_TIME=gettimetick(2)+(60*30); + TELEPORTER_TIME=gettimetick(2)+(60*30)-(.@x*60); } closedialog; end; |