Warcraft III resources & community, 2003–2006 · archived

Scoreboard trigger

3 posts
#1

Scoreboard trigger

I got my scoreboard set up to recognize kills but I dont how to make a trigger start when a certain amount of kills is on my scoreboard like, when Kills is equal to 20 do action or start trigger, something like that. Any help?
#2
In the trigger where you increase your kills variable have if/then/else right after it, like:

events - unit dies
conditions - owner of killing unit equal to player1
actions -
set variable killsp1 = (killsp1 + 1)
if
killsp1 equal to 20
then
do something
else
do nothing
#3

TY

Thanx man! =)