Warcraft III resources & community, 2003–2006 · archived

Need trigger help

3 posts
#1

Need trigger help

I need a trigger that changes owner of a particular unit when a particular ability is used on the unit.
#2
This is a pretty basic trigger. You first have to set the unit who you want to change to variable "OwnerChanger" in some other trigger (maybe map initialization). I used the spell Holy Light, but you can ofcourse use whatever you like.

==============================================

ChangeOwner
Events
Unit - A unit Begins casting an ability
Conditions
(Ability being cast) Equal to Holy Light
(Casting unit) Equal to OwnerChanger
Actions
Wait 1.00 seconds
Unit - Change ownership of (Target unit of ability being cast) to Player 2 (Blue) and Change color


==============================================
#3
thanks