diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-28 21:54:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-28 21:54:34 -0300 |
commit | ce20c7c97760915ae5ac838dc5b732ef6da50195 (patch) | |
tree | b875b64de7315c9208dbb2d5eda780a1b1c8d675 /npc/items | |
parent | 08268b51173bdc1ae12d359b24b0e0562156a8d2 (diff) | |
download | serverdata-ce20c7c97760915ae5ac838dc5b732ef6da50195.tar.gz serverdata-ce20c7c97760915ae5ac838dc5b732ef6da50195.tar.bz2 serverdata-ce20c7c97760915ae5ac838dc5b732ef6da50195.tar.xz serverdata-ce20c7c97760915ae5ac838dc5b732ef6da50195.zip |
Use EnterTown() on ships
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/lofteleporter.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/items/lofteleporter.txt b/npc/items/lofteleporter.txt index e7acfdc62..e92307490 100644 --- a/npc/items/lofteleporter.txt +++ b/npc/items/lofteleporter.txt @@ -72,37 +72,37 @@ OnUse: case 2: warp "017-1", 120, 89; TELEPORTER_TIME=loftel_time(35, .@x); - LOCATION$="LoF"; + EnterTown("LoF"); @timer_navio_running=0; break; case 3: warp "003-1", 41, 49; TELEPORTER_TIME=loftel_time(35, .@x); - LOCATION$="Tulim"; + EnterTown("Tulim"); @timer_navio_running=0; break; case 4: warp "024-1", 155, 82; TELEPORTER_TIME=loftel_time(120, .@x); - LOCATION$="Frostia"; + EnterTown("Frostia"); @timer_navio_running=0; break; case 5: warp "009-1", 113, 91; TELEPORTER_TIME=loftel_time(120, .@x); - LOCATION$="Halin"; + EnterTown("Halin"); @timer_navio_running=0; break; case 6: warp "018-5", 111, 53; TELEPORTER_TIME=loftel_time(150, .@x); - LOCATION$="Lilit"; + EnterTown("Lilit"); @timer_navio_running=0; break; case 7: - warp "Save", 0, 0; TELEPORTER_TIME=loftel_time(30, .@x); - //LOCATION$="Save"; + //EnterTown("Save"); + teleporthome(); @timer_navio_running=0; break; } |