diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-07 17:23:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-07 17:23:04 -0300 |
commit | 308de3817d4d70dcd4753f6da3a559a8bcd9c6f5 (patch) | |
tree | 76e0a1aebd4e52378a90811afe7f753f78615c0f /npc/items | |
parent | 9c3fe38cf165e4bf1bbb1e305d9909afd9c3cc6a (diff) | |
download | serverdata-308de3817d4d70dcd4753f6da3a559a8bcd9c6f5.tar.gz serverdata-308de3817d4d70dcd4753f6da3a559a8bcd9c6f5.tar.bz2 serverdata-308de3817d4d70dcd4753f6da3a559a8bcd9c6f5.tar.xz serverdata-308de3817d4d70dcd4753f6da3a559a8bcd9c6f5.zip |
Allow Time Flask reduction up to 15 mins instead of 10.
Add the new stage from Episode to LoF Reputation
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; |