HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

A trigger to check if the monster where killed in the right order...

01-31-2003, 01:53 PM#1
Guest
Hoiw do i make A trigger to check if the monster where killed in the right order...

Say for example you have to kill the paladin before you kill the troll, and so on?
01-31-2003, 02:07 PM#2
fr0ggE
lets see...well you could make a boolean variable:

"paladindead". it starts out false

------
Event: Unit (paladin) dies

Actions: set variable (paladindead) = true
------
Event: Unit(troll) dies

Conditions: boolean: (variable (paladindead) = true) = true

Actions: whatever
------