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

Character Select Trigger Help?

Status
Not open for further replies.
Level 3
Joined
Jan 23, 2010
Messages
53
This is what im using...
  • Events
    • Unit - a unit enters region 'rouge'
  • Conditions
  • Actions
    • Unit - kill triggering unit
    • Unit - create 1 rouge for (triggering player) at center of region 'character spawn'
when the character selector runs into the region he dies (which is correct) but the character he chose does not create itself. what am i doing wrong here?
 
Level 8
Joined
Jun 26, 2010
Messages
530
This is what im using...
  • Events
    • Unit - a unit enters region 'rouge'
  • Conditions
  • Actions
    • Unit - kill triggering unit
    • Unit - create 1 rouge for (triggering player) at center of region 'character spawn'
when the character selector runs into the region he dies (which is correct) but the character he chose does not create itself. what am i doing wrong here?

Triggering player makes reference to the player who trigerred the event. In your trigger there isn`t a player, it`s a unit (that is owned by a player, of course) that triggers it.

Try replacing your last action for

  • Unit - create 1 rouge for (OwnerOfUnit(triggering unit)) at center of region 'character spawn'
 
Level 3
Joined
Jan 23, 2010
Messages
53
Triggering player makes reference to the player who trigerred the event. In your trigger there isn`t a player, it`s a unit (that is owned by a player, of course) that triggers it.

Try replacing your last action for

  • Unit - create 1 rouge for (OwnerOfUnit(triggering unit)) at center of region 'character spawn'

it works now :D you are still a genius my friend. I owe you alot of rep. but sadly i cant give it to you because of the Hives limitations.
 
Status
Not open for further replies.
Top