diff options
-rw-r--r-- | npc/025-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/025-1/teleporter.txt | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/npc/025-1/_import.txt b/npc/025-1/_import.txt index a276b04d9..b5be1c942 100644 --- a/npc/025-1/_import.txt +++ b/npc/025-1/_import.txt @@ -11,4 +11,5 @@ "npc/025-1/phoenix.txt", "npc/025-1/salohcin.txt", "npc/025-1/selim.txt", +"npc/025-1/teleporter.txt", "npc/025-1/xovilam.txt", diff --git a/npc/025-1/teleporter.txt b/npc/025-1/teleporter.txt new file mode 100644 index 000000000..a7476dddc --- /dev/null +++ b/npc/025-1/teleporter.txt @@ -0,0 +1,23 @@ +// 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 + + +018-5,40,115,0 script #WarpGateFort NPC_HIDDEN,1,0,{ + end; + +OnTouch: + TeleporterGate(TP_FORT); + close; + + +OnInit: + .sex = G_OTHER; + .distance = 1; + end; +} + |