AI FRAMEWORK PROBLEM

sovoki

Member
Hi there i recently added AI into my server. but when i go into the server
there is nothing not even zombie's

example:

Code:
// Kamenka, 0 bandit groups, 1 soldier groups, 2 survivor groups - spawn probability ba,so,su - maximum group members ba,so,su
_check = [["max_grps","rnd_grps","max_p_grp"],[[0,0,0],[100,100,100],[20,20,20]],"SAR_area_0_0"] call SAR_AI_mon_upd;

i dont know what i did wrong i want only bandits on the server with this AI !
 
i just added this my self last night still dont know y no ai is spawning but aint u supposed to do this
// Kamenka, 0 bandit groups, 1 soldier groups, 2 survivor groups - spawn probability ba,so,su - maximum group members ba,so,su
_check = [["max_grps","rnd_grps","max_p_grp"],[[0,1,2],[100,100,100],[20,20,20]],"SAR_area_0_0"] call SAR_AI_mon_upd;
 
The first set of brackets is the number of bandit, soldier, and survivor groups. In your example, these are all set to zero [0,0,0] so no AI will spawn.

If you want just bandits ...
[1,0,0],[100,0,0],[20,0,0] Spawns 1 bandit group, 100% chance, with 20 members per group
[2,0,0],[100,0,0],[20,0,0] Spawns 2 bandit groups, 100% chance, with 20 members per group

And so on ...
 
Back
Top