Is there a way to make it so UIDs I whitelist in the variables.sqf called over my mission pbo for a certain array, have no overburdened? Like no weight limit?
I have seen this code from infistar:
adminob = { _log = 'No OverBurdened - ON'; if (isNil 'ascc') then {ascc = 0;}; if (ascc == 0) then { ascc = 1; if (isNil 'oR3F_TIRED_FNCT_Voile_Noir') then {oR3F_TIRED_FNCT_Voile_Noir = R3F_TIRED_FNCT_Voile_Noir;}; if (isNil 'oR3F_TIRED_FNCT_DoBlackVanish') then {oR3F_TIRED_FNCT_DoBlackVanish = R3F_TIRED_FNCT_DoBlackVanish;}; R3F_TIRED_FNCT_Voile_Noir = {}; R3F_TIRED_FNCT_DoBlackVanish = {}; } else { ascc = 0; R3F_TIRED_FNCT_Voile_Noir = oR3F_TIRED_FNCT_Voile_Noir; R3F_TIRED_FNCT_DoBlackVanish = oR3F_TIRED_FNCT_DoBlackVanish; _log = 'No OverBurdened - OFF'; }; hint _log; cutText [_log, 'PLAIN']; _sl = format['%1 - %2',name player,_log]; PVAH_WriteLogReq = [player,_sl]; publicVariableServer 'PVAH_WriteLogReq'; };
Is there a way to implement a script where certain UIDs you whitelist, have no overburdened?
ALSO if case is, is there a way to link it just like this admin build option from that post:
?