• 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.

List to teleport

Status
Not open for further replies.
Level 5
Joined
Jan 19, 2020
Messages
102
List to teleport

i want a list for a teleporter,

when you klick it there should be a list where you can teleport,

can you help me with trigger and list?
 
Level 30
Joined
Feb 18, 2014
Messages
3,623
Use a Dialog : Basics of a Dialog

  • Teleport Dialog
    • Events
      • Player - Player 1 (Red) skips a cinematic sequence
    • Conditions
    • Actions
      • Dialog - Clear TeleportDialog
      • Dialog - Change the title of TeleportDialog to Teleport to ?
      • Dialog - Create a dialog button for TeleportDialog labelled Destination 01
      • Set Destination[1] = (Last created dialog Button)
      • Dialog - Create a dialog button for TeleportDialog labelled Destination 02
      • Set Destination[2] = (Last created dialog Button)
      • Dialog - Create a dialog button for TeleportDialog labelled Destination 03
      • Set Destination[3] = (Last created dialog Button)
      • Dialog - Show TeleportDialog for Player 1 (Red)
  • Destination 01
    • Events
      • Dialog - A dialog button is clicked for TeleportDialog
    • Conditions
      • (Clicked dialog button) Equal to Destination[1]
    • Actions
      • Unit - Move (Your Unit) instantly to Destination 01
 
Last edited:
Status
Not open for further replies.
Top