Search the Community
Showing results for tags '126652'.
Found 2 results
-
ARMA 2: Operation Arrowhead - Linux Server beta 1.63.126652
Dwarden posted a topic in ARMA 2 & OA - Servers & Administration
Server binary https://dl.dropboxusercontent.com/u/18463425/a2oa/a2oa-server-1.63.126652.tar.bz2 https://dl.dropboxusercontent.com/u/18463425/a2oa/a2oa-server-1.63.126652.tar.bz2 Changes: STEAM libraries are now part of package steam_appid.txt is part of archive glibc 2.15 or newer needed (was 2.16 in previous server build, older isn't possible due to steamlib dependency) some little irks related to nix libraries Note: * it requires Arma 2: Operation Arrowhead data to be updated to version 1.63 first in order to run properly. Please provide us with feedback to this topic. http://community.bistudio.com/wiki/ArmA:_Dedicated_Server previous thread about 1.63.xxxxx linux server : -
Trying to accsess init field through sqf
3lockad3 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
As the title suggests, I am trying to access the init from a created object from an sqf.. My example example of the object and position. //f-18_1 _pos = [14228.0078125,16305.0800781,0.00465202]; _object = createVehicle ["JS_JC_FA18E", _pos, [], 0, "CAN_COLLIDE"]; _object = _this select 0; _object setDir 144.741; _object setPosATL _pos; Now I would like to add a re-spawn via external script,, Iceman77's advance vehicle re-spawn to be more exact.. _nul = [this, 2, 1, {}] execVM "vehrespawn.sqf"; But I'm at a loss for a solution at this point, as the code normally implemented in the argument, seems to have changed in the last while. setVehicleInit processInitCommands clearVehicleInit So,, that is my question. I would like to access the command remote.. So that leads me to. call BIS_fnc_MP; However, I'm unfamiliar with this method. I just want to access the init field of an object for re-spawn or simple commands to run my missions/projects.. Could someone help elaborate, as I'm sure others would like help with this as well... As you can see I clearly did some research, but I need help or a nudge in the right direction.