• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Teleporter Question

Status
Not open for further replies.
Level 4
Joined
Jan 4, 2007
Messages
67
Heya guys, a short question:
i set up two teleporters and added the standart triggers
(if unit enters [area] and is red or blue or ... , instantly teleport unit to [area2])
But if I enter the teleporter the game crashes...
 
Last edited:
Level 4
Joined
Jan 4, 2007
Messages
67
Thanks but its okay.
I think you know this noob mistake..
I cant really explain but the unit teleports from one teleporter to another and back and back and...
 
Level 32
Joined
Oct 23, 2006
Messages
5,291
Teleport Triggers

A basic two way teleport system will require four regions and two triggers. Each end of the teleport loop uses two regions; the triggers are very simple.

  • Teleport 1
    • Events
      • Unit - A unit enters 001 Teleport 1 Enter <gen>
    • Conditions
      • (Owner of (Triggering unit)) Not equal to Neutral Passive
    • Actions
      • Camera - Pan camera for (Triggering player) to (Center of 004 Teleport 1 Exit <gen>) over 1.00 seconds
      • Unit - Move (Triggering unit) instantly to (Center of 004 Teleport 1 Exit <gen>)
  • Teleport 2
    • Events
      • Unit - A unit enters 003 Teleport 2 Enter <gen>
    • Conditions
      • (Owner of (Triggering unit)) Not equal to Neutral Passive
    • Actions
      • Camera - Pan camera for (Triggering player) to (Center of 002 Teleport 2 Exit <gen>) over 1.00 seconds
      • Unit - Move (Triggering unit) instantly to (Center of 002 Teleport 2 Exit <gen>)
I used a condition filter to prevent critters from activating the teleport regions.
 
Status
Not open for further replies.
Top