diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-27 14:24:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-27 14:24:58 -0300 |
commit | b19f4d3527de7b0335730149ea3b0b21a0ab6eef (patch) | |
tree | c66b199c6bf4d95fa34466aad7d46e9afe1f8ae1 /npc/items | |
parent | af9c87dfddcee979537ba65302b80f53ff6f5024 (diff) | |
download | serverdata-b19f4d3527de7b0335730149ea3b0b21a0ab6eef.tar.gz serverdata-b19f4d3527de7b0335730149ea3b0b21a0ab6eef.tar.bz2 serverdata-b19f4d3527de7b0335730149ea3b0b21a0ab6eef.tar.xz serverdata-b19f4d3527de7b0335730149ea3b0b21a0ab6eef.zip |
LoF Teleporter Cooldown exchange.
Using Time Flask to go to Save Point will never be null, now.
And LoF/Tulimshar warps will be 5 minutes faster each
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; |