summaryrefslogtreecommitdiff
path: root/npc/024-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/024-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/024-1')
-rw-r--r--npc/024-1/_import.txt1
-rw-r--r--npc/024-1/teleporter.txt54
2 files changed, 55 insertions, 0 deletions
diff --git a/npc/024-1/_import.txt b/npc/024-1/_import.txt
index 1434d7261..5cad72414 100644
--- a/npc/024-1/_import.txt
+++ b/npc/024-1/_import.txt
@@ -3,3 +3,4 @@
"npc/024-1/_warps.txt",
"npc/024-1/guard.txt",
"npc/024-1/mapflags.txt",
+"npc/024-1/teleporter.txt",
diff --git a/npc/024-1/teleporter.txt b/npc/024-1/teleporter.txt
new file mode 100644
index 000000000..cdced77aa
--- /dev/null
+++ b/npc/024-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_FROST) {
+ TELEPORTERS=TELEPORTERS|TP_FROST;
+ 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 && 0, l("Frostia")),
+ rif(TELEPORTERS & TP_HALIN, 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 2:
+ warp "009-1", 113, 91; break;
+ default:
+ close;
+ }
+
+ close;
+
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 1;
+ end;
+}
+