Frate
Member-
Content Count
4 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout Frate
-
Rank
Rookie
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
How do I set a player camera view direction? I'm working at a small script to allow for turret aiming via freelook (Track IR). But I cannot find a way to force the player camera to turn into a specific direction/object. Is there a command to do that? Thanks
-
Hello, I'm trying to figure out if the player is aiming at an object. I'm using weaponDirection but It does not point properly on elevation. Seems to be following the terrain slope ahead. How to solve this? onEachFrame { _beg = getpos player; _wDir = (player weaponDirection currentWeapon player vectorMultiply 100); _endW = _beg vectorAdd _wDir; drawLine3D [_beg, _endW, [0,1,0,1]]; drawIcon3D ["\a3\ui_f\data\IGUI\Cfg\Radar\radar_ca.paa", [1,1,1,1], _endW, 1, 1, 45, "Target", 1, 0.05, "TahomaB"]; }; https://imgur.com/a/bOuXWo8 Video example of the issue. Frate
-
Tanks - Missile flight profiles and weapon improvements
Frate replied to oukej's topic in ARMA 3 - DEVELOPMENT BRANCH
Hi, I see we can use Shots Diagnostics Exe but I would like to get the current flight phase from a script. Is there any way to achieve this? Any function to get the lock state of a pod? Frate- 328 replies
-
Little Immersion Tweaks - Spice Up Arma 3's Night Life
Frate replied to voiper's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, resurrecting old topic for a fix to this error. Don't know the exact reason of the issue, maybe the mixed list type. You can fix by changing the following lines in vip_lit/vip_lit_mapAdditions.sqf functions vip_lit_eh_cl_keyDnNVG and vip_lit_eh_cl_keyUpFlashlight : _arr = _this; _arr deleteAt 0; change to _arr = [_this select 1, _this select 2, _this select 3, _this select 4]; so you end up with vip_lit_eh_cl_keyUpFlashlight = (findDisplay 12) displayAddEventHandler ["KeyUp", { _arr = [_this select 1, _this select 2, _this select 3, _this select 4]; if (str _arr == str vip_lit_var_cl_mapFlashlightKey) then { if (HAS_LIGHT) then { vip_lit_var_cl_flashlightKeyDown = false; vip_lit_var_cl_flashlightOn = if (vip_lit_var_cl_flashlightOn) then {false} else {true}; 0 = [] spawn {sleep 0.016; playsound "vip_lit_snd_flashlightClick"}; //sleep to create buffer between sounds; keyUp fires instantly if player presses and releases quickly }; }; false }]; and vip_lit_eh_cl_keyDnNVG = (findDisplay 12) displayAddEventHandler ["KeyDown", { _arr = [_this select 1, _this select 2, _this select 3, _this select 4]; if (str _arr == str vip_lit_var_cl_mapNVGKey) then { if ((hmd player) != "") then { vip_lit_var_cl_mapNVGOn = if (vip_lit_var_cl_mapNVGOn) then {false} else {true}; }; }; false }]; Do the same thing to vip_cmn_eh_cl_keyBindTemp in vip_cmn\fn\fn_cl_keyBind.sqf