Sarge AI uniforms

monkeyshlut

New Member
Is it possible to have the AI set to wear specific uniforms, for instance I have AI patrolling the trade zones and would like them to wear a police uniform.

Thanks for any help.
 
I'm guessing that these are static AI you're adding...really depends on how you want to configure it and what your needs are. One way it could be done is:

SAR_config.sqf:
Code:
// survivor AI
SAR_leader_surv_list = ["RU_Policeman_DZ"];
SAR_sniper_surv_list = ["RU_Policeman_DZ"];
SAR_soldier_surv_list = ["Survivor2_DZ","SurvivorW2_DZ","Soldier_Crew_PMC"];

SAR_cfg_grps_chernarus.sqf:
Code:
[SAR_whatever-you-named-your-marker,2,3,0,"patrol",true] call SAR_AI;

-survivor group, 1 leader (group always spawns with 1 leader), 3 snipers, 0 soldiers
-here you'd have 4 AI dressed as policemen patrolling the area where you spawn them

I would honestly go through both of the above files and review them in detail, everything makes sense after experimenting with it a while :)

edit: should also note that the above is just an example - if you've got survivor groups dynamically spawning around the map, those survivor AI will also be wearing police skins
 
The issue i think is that he wants specific skins per spawn group, not per side / type.

This is not possible at the moment. It would need a change in the logic how you call the specific groups.

Sarge
 
Back
Top