Team 3 Question [Solved]
Moderator: Moderators
- DarthAphotic
- Private First Class
- Posts: 75
- Joined: Wed Nov 21, 2012 12:09 pm
- Projects :: Malachor V
- xbox live or psn: Playstation 3
- Location: Yavin
- Contact:
Team 3 Question [Solved]
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?
Last edited by DarthAphotic on Mon Aug 12, 2013 12:46 am, edited 1 time in total.
-
razac920
- 2nd Lieutenant

- Posts: 365
- Joined: Sun Jan 16, 2011 12:42 am
Re: Team 3 Question
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)
AllowAISpawn(1, false)
AllowAISpawn(2, false)
AllowAISpawn(3, true)
- DarthAphotic
- Private First Class
- Posts: 75
- Joined: Wed Nov 21, 2012 12:09 pm
- Projects :: Malachor V
- xbox live or psn: Playstation 3
- Location: Yavin
- Contact:
Re: Team 3 Question
Thanks So Much 
