diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-29 11:44:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-29 11:44:36 -0300 |
commit | 3310e25de23917ca9ffdb7d435b893b398f19b2f (patch) | |
tree | 7cb89df22da68ef64cb2e662aeb86e35f926a0c3 /npc/009-1/teleporter.txt | |
parent | 592fae2cce56e04efe2df43a7e7ea8a881913b05 (diff) | |
download | serverdata-3310e25de23917ca9ffdb7d435b893b398f19b2f.tar.gz serverdata-3310e25de23917ca9ffdb7d435b893b398f19b2f.tar.bz2 serverdata-3310e25de23917ca9ffdb7d435b893b398f19b2f.tar.xz serverdata-3310e25de23917ca9ffdb7d435b893b398f19b2f.zip |
Hm... @Saulc will hate this commit and blame me %%n
Even so, this is not permanent. I mean, some mechanic is, but price isn't.
Price will probably rely on a few other elements...
Diffstat (limited to 'npc/009-1/teleporter.txt')
-rw-r--r-- | npc/009-1/teleporter.txt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/npc/009-1/teleporter.txt b/npc/009-1/teleporter.txt new file mode 100644 index 000000000..a5a401149 --- /dev/null +++ b/npc/009-1/teleporter.txt @@ -0,0 +1,54 @@ +// TMW2 Script +// Authors: +// Jesusalva +// Description: +// Link portals to soul menhirs like the teleporters from old +// The price is temporary. This feature got in because no ship in Nivalis Port +// PS. Anise => “Aisen” Anagram + + +024-1,155,80,0 script #WarpGateFrost NPC_NO_SPRITE,1,0,{ + end; + +OnTouch: + if (!TELEPORTERS & TP_HALIN) { + TELEPORTERS=TELEPORTERS|TP_HALIN; + mesn "Anise Inc."; + mesc l("Location Registered. You are now capable to use this warp gate."); + next; + } + mesc l("Where should I warp to?"); + mesc l("Cost: 1 @@", getitemlink(EverburnPowder)), 1; + if (!countitem(EverburnPowder)) + close; + next; + select + rif(TELEPORTERS & TP_FROST, l("Frostia")), + rif(TELEPORTERS & TP_HALIN && 0, l("Halinarzo")), + rif(TELEPORTERS & TP_TULIM, l("Tulimshar")), + rif(TELEPORTERS & TP_HURNS, l("Hurnscald")), + rif(TELEPORTERS & TP_NIVAL, l("Nivalis")), + rif(TELEPORTERS & TP_ARTIS, l("Artis")), + rif(TELEPORTERS & TP_ESPER, l("Esperia")), + rif(TELEPORTERS & TP_BOSSR, l("The Monster King Fortress")), + l("None"); + mes ""; + if (@menu != 9) + delitem EverburnPowder, 1; + closedialog; + switch (@menu) { + case 1: + warp "024-1", 155, 82; break; + default: + close; + } + + close; + + +OnInit: + .sex = G_OTHER; + .distance = 1; + end; +} + |