diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/lofteleporter.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/items/lofteleporter.txt b/npc/items/lofteleporter.txt index e92307490..e40c32cef 100644 --- a/npc/items/lofteleporter.txt +++ b/npc/items/lofteleporter.txt @@ -47,7 +47,7 @@ OnUse: mesc l("PS. Additional reagents may be required for warps."); next; - .@x=(reputation("LoF")/10)+min(10, countitem(TimeFlask)-1); // up to 10 minutes reduction from quests, and 10 from time flasks + .@x=(reputation("LoF")/10)+min(15, countitem(TimeFlask)-1); // up to 10 minutes reduction from quests, and 15 from time flasks select l("Don't warp"), @@ -56,7 +56,8 @@ OnUse: rif(TELEPORTERS & TP_FROST, l("Frostia (@@m)", 120-.@x)), rif(TELEPORTERS & TP_HALIN, l("Halinarzo (@@m)", 120-.@x)), rif(TELEPORTERS & TP_LILIT, l("Lilit (@@m)", 150-.@x)), - rif(GSET_SOULMENHIR_MANUAL, l("Save Point (@@m)", 30-.@x)); + rif(GSET_SOULMENHIR_MANUAL, l("Save Point (@@m)", 30-.@x)), + rif(false, l("200 years ago, The Great Fire (%dm)", 360-.@x)); if (@menu == 1) close; |