|
发表于 2011-12-23 12:57:01
|
显示全部楼层
教授坐飞机:我不是改图的。。。
config是指j文件最后的那一段config么?
昨天看了一下,好像没有什么特别的和分组有关的代码 (2011-12-23 12:13) [jass]function InitCustomTeams takes nothing returns nothing
// Force: TRIGSTR_003
call SetPlayerTeam(Player(0), 0)
call SetPlayerState(Player(0), PLAYER_STATE_ALLIED_VICTORY, 1)
call SetPlayerTeam(Player(1), 0)
call SetPlayerState(Player(1), PLAYER_STATE_ALLIED_VICTORY, 1)
// Allied
call SetPlayerAllianceStateAllyBJ(Player(0), Player(1), true)
call SetPlayerAllianceStateAllyBJ(Player(1), Player(0), true)
endfunction[/jass]
两个玩家,同组,同盟,联盟胜利
配置部分的话有下面这两个:
[jass]
function config takes nothing returns nothing
……
call SetPlayers(2)
call SetTeams(2)
……[/jass]
以及
[jass]// Player setup
call InitCustomPlayerSlots()
call InitCustomTeams()
call InitAllyPriorities()[/jass]
第一个是单独的玩家设置,比如种族啥的
第二个就是之前给出的玩家分组等设置
第三个是联盟优先级设置 |
|