mirror of
https://github.com/Teh-Dango/Sarge-AI.git
synced 2024-08-30 16:32:11 +00:00
2.4.1
Fixing AI relations
This commit is contained in:
parent
65e4453908
commit
7c627d868a
@ -43,10 +43,13 @@ SAR_AI_friendly_side = "";
|
||||
SAR_AI_unfriendly_side = "";
|
||||
|
||||
switch (_modName) do {
|
||||
case "desolation": { // Only found a CfgPatches entry
|
||||
case "desolation": {
|
||||
|
||||
SAR_AI_friendly_side = CIVILIAN;
|
||||
SAR_AI_unfriendly_side = RESISTANCE;
|
||||
SAR_AI_friendly_side = INDEPENDENT;
|
||||
SAR_AI_unfriendly_side = WEST;
|
||||
|
||||
WEST setFriend [CIVILIAN, 0];
|
||||
INDEPENDENT setFriend [CIVILIAN, 1];
|
||||
|
||||
// Initialize Vehicles arrays
|
||||
call compile preProcessFileLineNumbers (format ["\addons\sarge\code\configs\vehicles\%1\%1_air.sqf",_modName]);
|
||||
@ -75,8 +78,11 @@ switch (_modName) do {
|
||||
};
|
||||
case "epoch": {
|
||||
|
||||
SAR_AI_friendly_side = WEST;
|
||||
SAR_AI_unfriendly_side = RESISTANCE;
|
||||
SAR_AI_friendly_side = INDEPENDENT;
|
||||
SAR_AI_unfriendly_side = WEST;
|
||||
|
||||
WEST setFriend [CIVILIAN, 0];
|
||||
INDEPENDENT setFriend [CIVILIAN, 1];
|
||||
|
||||
// Initialize Vehicles arrays
|
||||
call compile preProcessFileLineNumbers (format ["\addons\sarge\code\configs\vehicles\%1\%1_air.sqf",_modName]);
|
||||
|
Loading…
Reference in New Issue
Block a user