-
-
Notifications
You must be signed in to change notification settings - Fork 307
EN_Commands
Christian edited this page Jun 14, 2020
·
1 revision
Server Exec
The number can be positive or negative to add/substract the given value from the current value.
[10] call F_cr_changeCR;
Server Exec
To set the intel points to a direct value (e.g. 100) use:
resources_intel = 100;
To add or substract a given value (e.g. 10) use:
resources_intel = resources_intel + 10;
// or for substraction
resources_intel = resources_intel - 10;
Server Exec
Provided parameter has to be the marker name string and not the marker text.
["military_12"] spawn sector_liberated_remote_call;
Server Exec
This will reset all logistic convois:
KP_liberation_logistics = [];
Local Exec
[] call KPLIB_fnc_createCrate;
[KP_liberation_ammo_crate] call KPLIB_fnc_createCrate;
[KP_liberation_fuel_crate] call KPLIB_fnc_createCrate;