• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

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 28
Joined
Feb 18, 2014
Messages
3,581
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