- Joined
- Aug 11, 2009
- Messages
- 1,606
I have this trigger in my map,but for some reason(s) it bugs.It shows the displayed message X times for X players...don't know why.Example there are 5 players in game,it will show in screen
Single Player Detected - Arena Disabled
Single Player Detected - Arena Disabled
MultiPlayer Detected -Arena Enabled
MultiPlayer Detected -Arena Enabled
MultiPlayer Detected -Arena Enabled
This is what exactly what it shows,why is this?I want it to just show Single player if there is only 1 player and Multiplayer if there are 2 or more players in the map.
Single Player Detected - Arena Disabled
Single Player Detected - Arena Disabled
MultiPlayer Detected -Arena Enabled
MultiPlayer Detected -Arena Enabled
MultiPlayer Detected -Arena Enabled
This is what exactly what it shows,why is this?I want it to just show Single player if there is only 1 player and Multiplayer if there are 2 or more players in the map.
-
Turn Arena On
-
Events
-
Map initialization
-
-
Conditions
-
Actions
-
Player Group - Pick every player in (All players) and do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
And - All (Conditions) are true
-
Conditions
-
((Picked player) controller) Equal to User
-
(Player number of (Picked player)) Greater than or equal to 4
-
-
-
-
Then - Actions
-
Trigger - Turn on Arena <gen>
-
Trigger - Turn on Arena2 <gen>
-
Trigger - Turn on SetHeroGroups <gen>
-
Trigger - Turn on Display Arena <gen>
-
Game - Display to (All players) the text: |c00ff0303Multiplay...
-
-
Else - Actions
-
Game - Display to (All players) the text: |c00ff0303Single pl...
-
-
-
-
-
-