Lua:SetTeamAllies

From Fortress Forever Wiki
Revision as of 15:45, 28 May 2006 by Mulchman MM (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

SetTeamAllies is used to ally one team to another.

The function only works within a .lua files startup() section

Example

function startup()
     SetTeamAllies( BLUE_TEAM, 16 );
     SetTeamAllies( YELLOW_TEAM, 4 );
end