Tweaked kill_manager.sqf

This commit is contained in:
Wyqer 2019-06-18 16:01:45 +02:00
parent bb27fb8312
commit c42e8f544c
No known key found for this signature in database
GPG Key ID: D7E2F8BD7F1E48FA
1 changed files with 81 additions and 42 deletions

View File

@ -4,6 +4,7 @@ if (isServer) then {
if (KP_liberation_kill_debug > 0) then {diag_log format ["[KP LIBERATION] [KILL] Kill Manager executed - _unit: %1 (%2) - _killer: %3 (%4)", typeOf _unit, _unit, typeOf _killer, _killer];};
// Get Killer, when ACE enabled, via lastDamageSource
if (KP_liberation_ace) then {
if (local _unit) then {
_killer = _unit getVariable ["ace_medical_lastDamageSource", _killer];
@ -19,14 +20,15 @@ if (isServer) then {
};
};
please_recalculate = true;
// Failsafe if something gets killed before the save manager is finished
if (isNil "infantry_weight") then {infantry_weight = 33};
if (isNil "armor_weight") then {armor_weight = 33};
if (isNil "air_weight") then {air_weight = 33};
// BLUFOR Killer handling
if ((side _killer) == GRLIB_side_friendly) then {
// Increase combat readiness for kills near a capital.
private _nearby_bigtown = sectors_bigtown select {!(_x in blufor_sectors) && (_unit distance (markerpos _x) < 250)};
if (count _nearby_bigtown > 0) then {
combat_readiness = combat_readiness + (0.5 * GRLIB_difficulty_modifier);
@ -34,6 +36,7 @@ if (isServer) then {
if (combat_readiness > 100.0 && GRLIB_difficulty_modifier < 2) then {combat_readiness = 100.0};
};
// Weights adjustments depending on what vehicle the BLUFOR killer used
if (_killer isKindOf "Man") then {
infantry_weight = infantry_weight + 1;
armor_weight = armor_weight - 0.66;
@ -51,14 +54,13 @@ if (isServer) then {
};
};
if (infantry_weight > 100) then {infantry_weight = 100};
if (armor_weight > 100) then {armor_weight = 100};
if (air_weight > 100) then {air_weight = 100};
if (infantry_weight < 0) then {infantry_weight = 0};
if (armor_weight < 0) then {armor_weight = 0};
if (air_weight < 0) then {air_weight = 0};
// Keep within ranges
infantry_weight = 0 max (infantry_weight min 100);
armor_weight = 0 max (armor_weight min 100);
air_weight = 0 max (air_weight min 100);
};
// Player was killed
if (isPlayer _unit) then {
stats_player_deaths = stats_player_deaths + 1;
// Disconnect UAV from player on death
@ -67,61 +69,102 @@ if (isServer) then {
if (vehicle _unit != _unit) then {moveOut _unit;};
};
// Check for Man or Vehicle
if (_unit isKindOf "Man") then {
// OPFOR casualty
if (side (group _unit) == GRLIB_side_enemy) then {
// Killed by BLUFOR
if (side _killer == GRLIB_side_friendly) then {
stats_opfor_soldiers_killed = stats_opfor_soldiers_killed + 1;
};
// Killed by a player
if (isplayer _killer) then {
stats_opfor_killed_by_players = stats_opfor_killed_by_players + 1;
};
};
// BLUFOR casualty
if (side (group _unit) == GRLIB_side_friendly) then {
stats_blufor_soldiers_killed = stats_blufor_soldiers_killed + 1;
// Killed by BLUFOR
if (side _killer == GRLIB_side_friendly) then {
stats_blufor_teamkills = stats_blufor_teamkills + 1;
};
// Killed by a player
if (isplayer _killer) then {
stats_blufor_teamkills_by_players = stats_blufor_teamkills_by_players + 1;
};
};
// Resistance casualty
if (side (group _unit) == GRLIB_side_resistance) then {
KP_liberation_guerilla_strength = KP_liberation_guerilla_strength - 1;
stats_resistance_killed = stats_resistance_killed + 1;
// Resistance is friendly to BLUFOR
if ((GRLIB_side_friendly getFriend GRLIB_side_resistance) >= 0.6) then {
// Killed by BLUFOR
if (side _killer == GRLIB_side_friendly) then {
if (KP_liberation_asymmetric_debug > 0) then {diag_log format ["[KP LIBERATION] [ASYMMETRIC] Guerilla unit killed by: %1", name _killer];};
[3, [(name _unit)]] remoteExec ["F_cr_globalMsg"];
stats_resistance_teamkills = stats_resistance_teamkills + 1;
[KP_liberation_cr_resistance_penalty, true] spawn F_cr_changeCR;
};
// Killed by a player
if (isplayer _killer) then {
stats_resistance_teamkills_by_players = stats_resistance_teamkills_by_players + 1;
};
};
};
// Civilian casualty
if (side (group _unit) == GRLIB_side_civilian) then {
stats_civilians_killed = stats_civilians_killed + 1;
// Killed by BLUFOR
if (side _killer == GRLIB_side_friendly) then {
if (KP_liberation_civrep_debug > 0) then {diag_log format ["[KP LIBERATION] [CIVREP] Civilian killed by: %1", name _killer];};
[2, [(name _unit)]] remoteExec ["F_cr_globalMsg"];
[KP_liberation_cr_kill_penalty, true] spawn F_cr_changeCR;
};
// Killed by a player
if (isPlayer _killer) then {
stats_civilians_killed_by_players = stats_civilians_killed_by_players + 1;
};
};
if (side _killer == GRLIB_side_friendly) then {
if (side (group _unit) == GRLIB_side_enemy) then {
stats_opfor_soldiers_killed = stats_opfor_soldiers_killed + 1;
if (isplayer _killer) then {
stats_opfor_killed_by_players = stats_opfor_killed_by_players + 1;
};
};
if (side (group _unit) == GRLIB_side_friendly) then {
stats_blufor_teamkills = stats_blufor_teamkills + 1;
stats_blufor_soldiers_killed = stats_blufor_soldiers_killed + 1;
};
};
if (side (group _unit) == GRLIB_side_resistance) then {
KP_liberation_guerilla_strength = KP_liberation_guerilla_strength - 1;
stats_resistance_soldiers_killed = stats_resistance_soldiers_killed + 1;
if (((GRLIB_side_friendly getFriend GRLIB_side_resistance) >= 0.6) && (side _killer == GRLIB_side_friendly)) then {
if (KP_liberation_asymmetric_debug > 0) then {diag_log format ["[KP LIBERATION] [ASYMMETRIC] Guerilla unit killed by: %1", name _killer];};
[3, [(name _unit)]] remoteExec ["F_cr_globalMsg"];
stats_friendlyResistance_soldiers_killed = stats_friendlyResistance_soldiers_killed + 1;
[KP_liberation_cr_resistance_penalty, true] spawn F_cr_changeCR;
};
};
} else {
// Enemy vehicle casualty
if (typeof _unit in all_hostile_classnames) then {
stats_opfor_vehicles_killed = stats_opfor_vehicles_killed + 1;
// Destroyed by player
if (isplayer _killer) then {
stats_opfor_vehicles_killed_by_players = stats_opfor_vehicles_killed_by_players + 1;
};
} else {
// Civilian vehicle casualty
if (typeOf _unit in civilian_vehicles) then {
stats_civilian_vehicles_killed = stats_civilian_vehicles_killed + 1;
// Destroyed by player
if (isplayer _killer) then {
stats_civilian_vehicles_killed_by_players = stats_civilian_vehicles_killed_by_players + 1;
};
} else {
// It has to be a BLUFOR vehicle then
stats_blufor_vehicles_killed = stats_blufor_vehicles_killed + 1;
};
};
};
} else {
// Get Killer and send it to server, when ACE enabled, via lastDamageSource
if (KP_liberation_ace && local _unit) then {
if (KP_liberation_kill_debug > 0) then {private _text = format ["[KP LIBERATION] [KILL] _unit is local to: %1", debug_source];_text remoteExec ["diag_log",2];};
KP_liberation_ace_killer = _unit getVariable ["ace_medical_lastDamageSource", _killer];
@ -129,14 +172,10 @@ if (isServer) then {
};
};
// Body/Wreck deletion after cleanup delay
if (isServer && !isplayer _unit) then {
if (((typeof _unit) == KP_liberation_ammo_crate) && ((getPosATL _unit) select 2 < 10)) then {
("R_80mm_HE" createVehicle (getPosATL _unit)) setVelocity [0, 0, -200];
deleteVehicle _unit;
} else {
sleep GRLIB_cleanup_delay;
hidebody _unit;
sleep 10;
deleteVehicle _unit;
};
sleep GRLIB_cleanup_delay;
hidebody _unit;
sleep 10;
deleteVehicle _unit;
};