Jump to content

t.buur

Member
  • Content Count

    20
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About t.buur

  • Rank
    Private First Class

Profile Information

  • Gender
    Male
  • Location
    Aachen
  • Interests
    Arma of course

Recent Profile Visitors

749 profile views
  1. t.buur

    Analog Throttle

    It seems that ARMA has a general problem with analogue input devises. (https://feedback.bistudio.com/T126494) You can check the input actions. https://community.bistudio.com/wiki/inputAction They should all go from 0 to 1.
  2. t.buur

    Jets DLC Official Feedback

    Already on feedback tracker: https://feedback.bistudio.com/T126018
  3. You know following scripting commands? https://community.bistudio.com/wiki/listRemoteTargets https://community.bistudio.com/wiki/listVehicleSensors Edit: forgott to say that listRemoteTargets is a little bit broken: https://feedback.bistudio.com/T125977
  4. Please have a look on inGameUISetEventHandler Maybe you can disable it for a special car.
  5. thanks man that's the solution.
  6. Dear all, do anybody know a method to get the color chosen ingame on map screen. I'm talking about the combo box on the right top corner. I want to use the information for creating custom Markers. Thanks in advanced
  7. Ok, my question was not clear enough. When you create a marker ingame by double clicking on the map the markername is "_USER_DEFINED #0/52/1". Where "_USER_DEFINED #" is a prefix, 0 is the player, 52 is the MarkerID and 1 is the channel. So, these is stored by a BI function which gratetes ingame the marker. And I'm looking for this variable to get it with getvariable.
  8. Dear all, short question: Where is the MarkerID stored? I mean the markerID described in allMapMarkers. I looked for it in missionnamespace, also in uiNamespace but I could not found it. Maybe you have an idea where to search. best gerads
  9. Only when the enemy plane is in the radar cone. So, when you search for enemy near ground and enemy is flying high you never get a look on.
  10. Even with the new sensor display it is hard to find enemy jets in the air because you don't know if the jet is flying high or low. My request: Is it possible to add the high of air planes to the display? Maybe only the thousand and the hundreds. For example 15 stands for flight level 1578.
  11. Dear all Maybe you know the problem that if you are using trackIr your body is leaning foreword if you have lowered the weapon. Reason for this is that you haven't a feeling where your body is pointing at and your head is compositing this automatically. So I want to write a mod which will hold the upper part of the body vertically when the weapon is lowered. I have checked all scripting commands but found only solutions to find out the direction of the head (getCameraViewDirection). At the end I need the position the upper part of the body is pointing at. I read a lot of old topics in the net that explain that I have to look for the cgfsceleton but I don't find it in ARMA 3. Maybe one of you can give me a hint where I can find the position of the upper part of the player. Greetings
  12. Never worked with this command. Try it.
  13. You can create a new respawn point with https://community.bistudio.com/wiki/BIS_fnc_addRespawnPosition
  14. Yes, https://community.bistudio.com/wiki/stance jump = { // your jumping code as a function _vel = velocity player; _dir = direction player; _speed = 1; player setVelocity [ ((_vel select 0) + (sin _dir * _speed)), ((_vel select 1) + (cos _dir * _speed)), ((_vel select 2) + 5) ]; }; if (isNil "player_jump_time" ) then // function only executet when variable player_jump_time not set for the player { if ((vectorMagnitude velocity player) == 0 || (stance player) == "CROUCH" || (stance player) == "PRONE") then { hint "I am standing now! and cannot jump"; } else { call jump; player_jump_time = [player,time]; // variable player_jump_time will be set }; } else { //if variable set this part will executet if ((player == player_jump_time select 0) && (time > (player_jump_time select 1 ) + 5)) then // here we check if the player_jump_varialble is right player and also if the time (here 5 seconds.) { if ((vectorMagnitude velocity player) == 0 || (stance player) == "CROUCH" || (stance player) == "PRONE") then { hint "I am standing now! and cannot jump"; } else { call jump; player_jump_time = [player,time]; // variable player_jump_time will be set in the eles part }; }; };
  15. Sometimes the init.sqf loaded to fast. Insert simple a sleep 3; before the eventhandler and than it will run. sleep 3; moduleName_keyDownEHId = (findDisplay 46) displayAddEventHandler ["KeyDown", "if ((_this select 1) == 57) then {_nul = [] execVM 'jump.sqf'};"] You can check your own speed. If it is zero you can add special code. jump = { // your jumping code as a function _vel = velocity player; _dir = direction player; _speed = 1; player setVelocity [ ((_vel select 0) + (sin _dir * _speed)), ((_vel select 1) + (cos _dir * _speed)), ((_vel select 2) + 5) ]; }; if (isNil "player_jump_time" ) then // function only executet when variable player_jump_time not set for the player { if ((vectorMagnitude velocity player) == 0) then { hint "I am standing now! and cannot jump"; } else { call jump; player_jump_time = [player,time]; // variable player_jump_time will be set }; } else { //if variable set this part will executet if ((player == player_jump_time select 0) && (time > (player_jump_time select 1 ) + 5)) then // here we check if the player_jump_varialble is right player and also if the time (here 5 seconds.) { if ((vectorMagnitude velocity player) == 0) then { hint "I am standing now! and cannot jump"; } else { call jump; player_jump_time = [player,time]; // variable player_jump_time will be set in the eles part }; }; };
×