• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

HELP CTF winning trigger

Status
Not open for further replies.
Level 11
Joined
Jul 2, 2004
Messages
471
Event:
Every 1 Second

Condition:
<none>

Action:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Team1Score Equal to 3
Then - Actions
Game - Victory Player X (Red) (Show dialogs, Show scores)
Else - Actions

If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Team2Score Equal to 3
Then - Actions
Game - Victory Player Y (Red) (Show dialogs, Show scores)
Else - Actions
 
Level 5
Joined
Sep 8, 2004
Messages
98
dont do that kind of trigger, it'll make it lag a bit more. Instead try running the victory trigger every time they score a point.

EX:
Events:Unit enters region
Conditions
Entering unit has (flag) equal to true.
Actions
Set team 1 points = team 1 points + 1
Run Victory Trigger

(this condition is boolean, but you select unit has item under it).

(Victory Trigger)
Events
(none)
Conditions
None
Action:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Team1Score Equal to 3
Then - Actions
Game - Victory Player X (Red) (Show dialogs, Show scores)
Else - Actions

If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Team2Score Equal to 3
Then - Actions
Game - Victory Player Y (Red) (Show dialogs, Show scores)
Else - Actions
 
Status
Not open for further replies.
Top