Page 1 of 1
Team 3 Question [Solved]
Posted: Sun Aug 11, 2013 5:36 pm
by DarthAphotic
This may have already been discussed but I didn't find anything, but is it possible for ONLY Team 3 AI to spawn, and Team 1 & 2 AI don't spawn?
Re: Team 3 Question
Posted: Sun Aug 11, 2013 5:40 pm
by razac920
Use the function AllowAISpawn(team, boolean). In your case, you want to add 3 lines to your LUA:
AllowAISpawn(1, false)
AllowAISpawn(2, false)
AllowAISpawn(3, true)
Re: Team 3 Question
Posted: Mon Aug 12, 2013 12:46 am
by DarthAphotic
Thanks So Much
