2015-06-29 02:34:21 +00:00
|
|
|
#include "script_component.hpp"
|
2015-07-15 11:03:54 +00:00
|
|
|
//#include "initKeybinds.sqf";
|
2015-07-04 23:07:51 +00:00
|
|
|
|
|
|
|
// Add interaction menu exception
|
|
|
|
["isNotSpectating", {!((_this select 0) getVariable [QGVAR(isSpectator), false])}] call EFUNC(common,addCanInteractWithCondition);
|
|
|
|
|
2015-06-29 02:34:21 +00:00
|
|
|
["SettingsInitialized", {
|
2015-07-21 12:31:13 +00:00
|
|
|
GVAR(availableModes) = [[0,1,2], [1,2], [0], [1], [2]] select GVAR(restrictModes);
|
|
|
|
GVAR(availableVisions) = [[-2,-1,0,1], [-2,-1], [-2,0,1], [-2]] select GVAR(restrictVisions);
|
2015-07-26 12:12:58 +00:00
|
|
|
|
|
|
|
if !(hasInterface) exitWith {};
|
|
|
|
|
2015-07-26 12:13:46 +00:00
|
|
|
if (GVAR(onDeath)) then {
|
2015-07-26 12:12:58 +00:00
|
|
|
player addEventHandler ["Killed",FUNC(handleKilled)];
|
|
|
|
player addEventHandler ["Respawn",FUNC(handleRespawn)];
|
|
|
|
};
|
2015-07-04 17:53:06 +00:00
|
|
|
}] call EFUNC(common,addEventHandler);
|