• Check out the results of the Techtree Contest #19!
  • 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.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

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?
 
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'
 
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.
Back
Top