Jump to content
  • 0

Remove weight limit when in admin list


FragZ

Question

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:

?

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...