diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/lofteleporter.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/items/lofteleporter.txt b/npc/items/lofteleporter.txt index 8c895387b..008bb29e6 100644 --- a/npc/items/lofteleporter.txt +++ b/npc/items/lofteleporter.txt @@ -51,11 +51,11 @@ OnUse: select l("Don't warp"), - l("Land Of Fire Village (@@m)", 40-.@x), - l("Tulimshar (@@m)", 40-.@x), + l("Land Of Fire Village (@@m)", 35-.@x), + l("Tulimshar (@@m)", 35-.@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)); + rif(GSET_SOULMENHIR_MANUAL, l("Save Point (@@m)", 30-.@x)); if (@menu == 1) close; @@ -70,13 +70,13 @@ OnUse: switch (@menu) { case 2: warp "017-1", 120, 89; - TELEPORTER_TIME=loftel_time(40, .@x); + TELEPORTER_TIME=loftel_time(35, .@x); LOCATION$="LoF"; @timer_navio_running=0; break; case 3: warp "003-1", 41, 49; - TELEPORTER_TIME=loftel_time(40, .@x); + TELEPORTER_TIME=loftel_time(35, .@x); LOCATION$="Tulim"; @timer_navio_running=0; break; @@ -94,7 +94,7 @@ OnUse: break; case 6: warp "Save", 0, 0; - TELEPORTER_TIME=loftel_time(20, .@x); + TELEPORTER_TIME=loftel_time(30, .@x); //LOCATION$="Save"; @timer_navio_running=0; break; |