diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-04 23:54:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-04 23:54:06 -0300 |
commit | 440c958e87d78795af82d565dc6d936cb7ed0c1c (patch) | |
tree | b53b6750d947b53c38a7552bc8831078a0489699 /npc/items | |
parent | 77e84ace436049d9633e94a029d2f93895f3565f (diff) | |
download | serverdata-440c958e87d78795af82d565dc6d936cb7ed0c1c.tar.gz serverdata-440c958e87d78795af82d565dc6d936cb7ed0c1c.tar.bz2 serverdata-440c958e87d78795af82d565dc6d936cb7ed0c1c.tar.xz serverdata-440c958e87d78795af82d565dc6d936cb7ed0c1c.zip |
Reduce time on LoF Teleporter
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/lofteleporter.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/items/lofteleporter.txt b/npc/items/lofteleporter.txt index 9a1b9ba94..44cf93c59 100644 --- a/npc/items/lofteleporter.txt +++ b/npc/items/lofteleporter.txt @@ -52,8 +52,8 @@ OnUse: select l("Don't warp"), l("Land Of Fire Village (@@m)", 40-.@x), - rif(TELEPORTERS & TP_FROST, l("Frostia (@@m)", 360-.@x)), - rif(TELEPORTERS & TP_HALIN, l("Halinarzo (@@m)", 360-.@x)), + rif(TELEPORTERS & TP_FROST, l("Frostia (@@m)", 120-.@x)), + rif(TELEPORTERS & TP_HALIN, l("Halinarzo (@@m)", 120-.@x)), rif(GSET_SOULMENHIR_MANUAL, l("Save Point (@@m)", 20-.@x)); if (@menu == 1) @@ -74,12 +74,12 @@ OnUse: break; case 3: warp "024-1", 155, 82; - TELEPORTER_TIME=loftel_time(360, .@x); + TELEPORTER_TIME=loftel_time(120, .@x); LOCATION$="Frostia"; break; case 4: warp "009-1", 113, 91; - TELEPORTER_TIME=loftel_time(360, .@x); + TELEPORTER_TIME=loftel_time(120, .@x); LOCATION$="Halin"; break; case 5: |