Jump to content

tills13

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About tills13

  • Rank
    Newbie
  1. tills13

    Boeing C-17 ArmA 3 Mod

    Is there a way to disable the loader script or is there a model without that functionality? I have written my own and I'd like to use it.
  2. With regards to script timing, how would it look if I wanted to sync mission parameters to all the clients before the assets are loaded. I have global vars in vehicle inits which sometimes seem to run before the server has a chance to init these vars? I was told elsewhere that I should use cfgFunctions but I'm not sure what that would look like. I'm using the following in my init.sqf: for [{_i = 0}, {_i < count(paramsArray)}, {_i = _i + 1}] do { _param = (configName ((missionConfigFile >> "Params") select _i)); _value = (paramsArray select _i); format["%1 = %2", _param, _value] call BIS_fnc_log; call compile format ["%1 = %2; publicVariable ""%1""", (configName ((missionConfigFile >> "Params") select _i)), (paramsArray select _i)]; };
×