diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-27 15:25:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-27 15:25:46 -0300 |
commit | 26c0bdfed5f9f2ab27ff41f896e7875cdb1e14bf (patch) | |
tree | ce7506b57f1a960c1099159be478c72ceee3f60a /npc/025-1/teleporter.txt | |
parent | 204a99027931e98204df133ca7c152e873ad9099 (diff) | |
download | serverdata-26c0bdfed5f9f2ab27ff41f896e7875cdb1e14bf.tar.gz serverdata-26c0bdfed5f9f2ab27ff41f896e7875cdb1e14bf.tar.bz2 serverdata-26c0bdfed5f9f2ab27ff41f896e7875cdb1e14bf.tar.xz serverdata-26c0bdfed5f9f2ab27ff41f896e7875cdb1e14bf.zip |
Add Teleporter Gate to Fortress Town
Diffstat (limited to 'npc/025-1/teleporter.txt')
-rw-r--r-- | npc/025-1/teleporter.txt | 23 |
1 files changed, 23 insertions, 0 deletions
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; +} + |