Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(v0.96.8) Objects and Static Weapons management in enemy sectors #975

Open
wants to merge 47 commits into
base: v0.96.8
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
d74b0d1
Update CfgFunctions.hpp
PiG13BR Nov 23, 2024
e98dcbf
Add files via upload
PiG13BR Nov 23, 2024
b0c4f0e
Update custom.sqf
PiG13BR Nov 23, 2024
043fd03
Update init_presets.sqf
PiG13BR Nov 23, 2024
b12d246
Update manage_one_sector.sqf
PiG13BR Nov 23, 2024
f64fec0
Add files via upload
PiG13BR Nov 23, 2024
77076d6
Update init_presets.sqf
PiG13BR Nov 23, 2024
aede76e
Update fn_createStaticWeapons.sqf
PiG13BR Nov 23, 2024
a89bb42
Update KPLIB_staticsConfigs.sqf
PiG13BR Nov 24, 2024
f6b09e7
Update and rename fn_createGarrisons.sqf to fn_createSectorObjects.sqf
PiG13BR Nov 24, 2024
e1b9e71
Update and rename fn_registerGarrison.sqf to fn_registerSectorObjects…
PiG13BR Nov 24, 2024
0c90920
Update fn_createStaticWeapons.sqf
PiG13BR Nov 24, 2024
922e7ae
Add files via upload
PiG13BR Nov 24, 2024
dc06255
Update fn_sectorObjectBlacklist.sqf
PiG13BR Nov 24, 2024
1eeb989
Update CfgFunctions.hpp
PiG13BR Nov 24, 2024
bd29bee
Update manage_one_sector.sqf
PiG13BR Nov 24, 2024
19801c3
Update fn_createStaticWeapons.sqf
PiG13BR Nov 24, 2024
924e41b
Update KPLIB_staticsConfigs.sqf
PiG13BR Nov 24, 2024
75edc60
Update fn_createStaticWeapons.sqf
PiG13BR Nov 24, 2024
ebde174
Update KPLIB_staticsConfigs.sqf
PiG13BR Nov 24, 2024
06ca9a8
Update manage_one_sector.sqf
PiG13BR Nov 24, 2024
7699254
Update CfgFunctions.hpp
PiG13BR Nov 24, 2024
073fb3b
Update fn_registerSectorObjects.sqf
PiG13BR Nov 24, 2024
aa5f636
Update fn_sectorObjectBlacklist.sqf
PiG13BR Nov 24, 2024
69e1d72
Update fn_createSectorObjects.sqf
PiG13BR Nov 24, 2024
3452709
Update fn_createStaticWeapons.sqf
PiG13BR Nov 24, 2024
e3b0e6a
Update KPLIB_staticsConfigs.sqf
PiG13BR Nov 24, 2024
036b11a
Update KPLIB_staticsConfigs.sqf with new types
PiG13BR Nov 30, 2024
c2044e5
Update custom.sqf with new variables
PiG13BR Nov 30, 2024
0be7a7f
Update init_presets.sqf
PiG13BR Nov 30, 2024
1356425
Update hashmap variable for sector objects
PiG13BR Nov 30, 2024
cf584c1
Update fn_createSectorObjects.sqf
PiG13BR Nov 30, 2024
55d0091
Update fn_createStaticWeapons.sqf
PiG13BR Nov 30, 2024
837a7e5
Update fn_createStaticWeapons.sqf
PiG13BR Nov 30, 2024
5e2c4ed
Update fn_createStaticWeapons.sqf
PiG13BR Nov 30, 2024
fae93cc
Update fn_sectorObjectBlacklist.sqf
PiG13BR Dec 1, 2024
8461570
Update fn_sectorObjectBlacklist.sqf
PiG13BR Dec 1, 2024
fafa672
Update fn_sectorObjectBlacklist.sqf
PiG13BR Dec 2, 2024
4ee880d
Update fn_registerSectorObjects.sqf
PiG13BR Dec 4, 2024
50ebb70
Update init_server.sqf
PiG13BR Dec 4, 2024
9fd4bf1
Update fn_spawnStaticWeapon.sqf
PiG13BR Dec 10, 2024
bb3efd9
Update init.sqf
PiG13BR Dec 15, 2024
371b6e4
Update fn_registerSectorObjects.sqf
PiG13BR Dec 16, 2024
fccde8b
fn_registerSectorObjects.sqf Rethink
PiG13BR Dec 16, 2024
f6f2fb0
fn_sectorObjectBlacklist.sqf Rethink
PiG13BR Dec 16, 2024
9f9a6a8
Update fn_createStaticWeapons.sqf
PiG13BR Dec 18, 2024
b81981a
Update fn_spawnStaticWeapon.sqf
PiG13BR Dec 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update fn_sectorObjectBlacklist.sqf
  • Loading branch information
PiG13BR authored Dec 1, 2024
commit fae93cc22af6114063a87697b8c51bb3ade7f94e
4 changes: 2 additions & 2 deletions Missionframework/functions/fn_sectorObjectBlacklist.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
if (!isServer) exitWith {};

params[
"_object",
["_object", objNull, [objNull]],
["_blacklisted", true, [FALSE]],
["_canGarrison", true, [FALSE]] // To work, the structure classname must be under KPLIB_staticsConfigs. This will not enable a structure to accept static weapons spawn by magic.
];

if (isNull _object) exitWith {diag_log "Null object provided"};
if (isNull _object) exitWith {["Null object provided"] call bis_fnc_error};

// General blacklist variable
if (isNil "KPLIB_sector_ObjectsBlacklist") then {
Expand Down