mirror of
https://github.com/NRZ7/modChecker---Exile-version.git
synced 2024-08-30 17:32:11 +00:00
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
// 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";
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// MOD CHECKER + PROTECTION REMEMBER
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/*Note, if you have Exile ProtectionRemember.sqf, use this
|
|
|
|
waitUntil {!isNull findDisplay 46 && !isNil 'ExileClientLoadedIn' && getPlayerUID player != ''}; // wait until player is in spawned
|
|
uiSleep 3;
|
|
execVM "addons\scripts\protectionRemember.sqf";
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// MOD CHECKER
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
firstCheck = 0;
|
|
execVM "addons\modChecker\modChecker.sqf";
|
|
|
|
*/ |