Skip to content

EN_Commands

Christian edited this page Jun 14, 2020 · 1 revision

Civilian Reputation

Server Exec

The number can be positive or negative to add/substract the given value from the current value.

[10] call F_cr_changeCR;

Intel points

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;

Liberate a sector

Server Exec

Provided parameter has to be the marker name string and not the marker text.

["military_12"] spawn sector_liberated_remote_call;

Reset logistics

Server Exec

This will reset all logistic convois:

KP_liberation_logistics = [];

Resource spawning

Local Exec

Supplies

[] call KPLIB_fnc_createCrate;

Ammo

[KP_liberation_ammo_crate] call KPLIB_fnc_createCrate;

Fuel

[KP_liberation_fuel_crate] call KPLIB_fnc_createCrate;
Clone this wiki locally