[SD/Misc] Question about ''Team 1'' only Map. (Map Suggestion Appreciated)

Status
Not open for further replies.
Level 1
Joined
Dec 26, 2010
Messages
1
Hello, I don't know if this is a right place to ask about this but I'll give it a chance:

I found this Map and wanted to play with friends but seems like it has only Team 1 Available and cant start the map because of it.

Is there any way to fix this? I don't get it why was it made for 24 players if u cant start it.

and if someone knows the similar map I'd gladly appreciate the suggestion.
 

Attachments

  • WarcraftTW3.2(24).w3x
    7.5 MB · Views: 12
Level 19
Joined
Jan 1, 2018
Messages
739
Had the same issue with one of my maps, when hostbots were still around this was not an issue because you could still start the game, but without those the game validates that there is a player in at least two teams. Only solution that I know of is to edit the map so it has two teams.
 
Level 19
Joined
Jan 1, 2018
Messages
739
The attached map works with only one team, but it has only 12 players and was developed in older patches.

I tested it just now in Reforged Battle.net and it runs.
Checked the map script and I found this:
JASS:
globals
constant integer isDebug=0
endglobals
function InitCustomTeams takes nothing returns nothing
call SetPlayerTeam(Player(0),0)
call SetPlayerTeam(Player(1),0)
call SetPlayerTeam(Player(2),0)
call SetPlayerTeam(Player(3),0)
call SetPlayerTeam(Player(4),0)
call SetPlayerTeam(Player(5),0)
call SetPlayerTeam(Player(6),0)
call SetPlayerTeam(Player(7),0)
call SetPlayerTeam(Player(8),0)
call SetPlayerTeam(Player(9),0)
call SetPlayerTeam(Player(10),0)
call SetPlayerTeam(Player(11),0)
if isDebug>0 then
call SetPlayerTeam(Player(11),1)
endif
endfunction

It's weird because the condition should be false, but maybe this is some kinda hack/workaround to trick the game into letting you start the map even with only one force?
 
Status
Not open for further replies.
Top