summaryrefslogtreecommitdiff
path: root/npc/009-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-10-29 11:44:36 -0300
committerJesusaves <cpntb1@ymail.com>2018-10-29 11:44:36 -0300
commit3310e25de23917ca9ffdb7d435b893b398f19b2f (patch)
tree7cb89df22da68ef64cb2e662aeb86e35f926a0c3 /npc/009-1
parent592fae2cce56e04efe2df43a7e7ea8a881913b05 (diff)
downloadserverdata-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')
-rw-r--r--npc/009-1/_import.txt1
-rw-r--r--npc/009-1/teleporter.txt54
2 files changed, 55 insertions, 0 deletions
diff --git a/npc/009-1/_import.txt b/npc/009-1/_import.txt
index 0d482e907..e91e09873 100644
--- a/npc/009-1/_import.txt
+++ b/npc/009-1/_import.txt
@@ -9,3 +9,4 @@
"npc/009-1/lynnthetraveler.txt",
"npc/009-1/mapflags.txt",
"npc/009-1/soul-menhir.txt",
+"npc/009-1/teleporter.txt",
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;
+}
+