modChecker---Exile-version/initPlayerLocal.sqf

25 lines
927 B
Plaintext
Raw Normal View History

2016-10-08 12:55:39 +00:00
// Add this at the bottom of initPlayerLocal.sqf
///////////////////////////////////////////////////////////////////////////
// MOD CHECKER
///////////////////////////////////////////////////////////////////////////
waitUntil {!isNull findDisplay 46 && !isNil 'ExileClientLoadedIn' && getPlayerUID player != ''}; // wait until player is in spawned
uiSleep 3;
firstCheck = 0;
execVM "addons\modChecker\modChecker.sqf";
2016-10-08 18:10:17 +00:00
/*Note, if you have Exile ProtectionRemember.sqf, use this
2016-10-08 12:55:39 +00:00
///////////////////////////////////////////////////////////////////////////
// MOD CHECKER + PROTECTION REMEMBER
///////////////////////////////////////////////////////////////////////////
waitUntil {!isNull findDisplay 46 && !isNil 'ExileClientLoadedIn' && getPlayerUID player != ''}; // wait until player is in spawned
uiSleep 3;
execVM "addons\scripts\protectionRemember.sqf";
firstCheck = 0;
execVM "addons\modChecker\modChecker.sqf";
*/