Jump to content

xxjhxx2

Member
  • Content Count

    8
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About xxjhxx2

  • Rank
    Private
  1. xxjhxx2

    Key Handler (Hold)

    It is created as a dialog and they are set as: (findDisplay 46) displayAddEventHandler ["KeyDown", "_this call life_fnc_keyHandler"]; (findDisplay 46) displayAddEventHandler ["KeyUp", "_this call life_fnc_keyUpHandler"];
  2. xxjhxx2

    Key Handler (Hold)

    Any ideas how to do it more efficiently, just run a file on a press and close the created dialog on release...
  3. xxjhxx2

    Key Handler (Hold)

    I will show you, i am running a file on key down that creates the dialog and i want it to close on keyup: //fn_keyDownHandler switch (_code) do { case 219: { if (!life_action_inUse) then { [] spawn { private "_handle"; _handle = [] spawn life_fnc_actionKeyHandler; waitUntil {scriptDone _handle}; life_action_inUse = false; }; }; }; }; //fn_keyUpHandler switch (_code) do { case _interactionKey: { if (!(_menu isEqualTo 10)) then { hint "I tried"; closeDialog 0; }; }; };
  4. Hi guys, I am attempting to create a script that opens when a key is held and closes when a key is released. I have tried using the onKeyUp and onKeyDown handlers but the onKeyUp handler does not seem very responsive. Does anyone know if it is possible to do, or if using a mod would be a better option? If I could use a mod I would, could someone point me in the right direction? Thanks!
  5. xxjhxx2

    Tanoa discussion (Dev-Branch)

    How could i make that work with this script: { if (_x animationPhase "Door_1_rot" = 1) then { _x animate ["Door_1_rot", 0]; } else { _x animate ["Door_1_rot", 1]; }; } forEach (nearestObjects [player, ["Land_BarGate_F"], 15]);
  6. xxjhxx2

    Tanoa discussion (Dev-Branch)

    Anybody help me out here, im working on something for Tanoa Life and im trying to find the open animation for the new sliding gates (Land_ConcreteWall_01_l_gate_F) somebody help? :)
  7. xxjhxx2

    Enhanced Movement

    Hey man, i tried the new Enhanced Movement on my 1.60 server and the mod isn't working, i have the same mod client and server side along with the key and stuff however the mod isn't loading... I looked through the logs and saw the server was loading the mod serverside but still got nothing, any ideas? name | modDir | default | origin | hash | hashShort | fullPath 18:02:43 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 18:02:43 @EM | @EM | false | GAME DIR | e4d9904bf4d365334fd0918300a870c7d24022d0 | 63c265c0 | C:\TCAFiles\Users\JordanH\21288\@EM 18:02:43 Ryan's Zombies & Demons | @ZombiesandDemons | false | GAME DIR | bc9a355d4ddab783bf912981bc56001dddc7b897 | 5f862e78 | C:\TCAFiles\Users\JordanH\21288\@ZombiesandDemons 18:02:43 CUP Vehicles - 1.3 | @CUPVehicles | false | GAME DIR | 316bf660eb45b7f6d0fe09ab06604c263034af25 | b9d29b6d | C:\TCAFiles\Users\JordanH\21288\@CUPVehicles 18:02:43 CUP Units 1.3.1 | @CUPUnits | false | GAME DIR | 49f2aaa7f9872d608f7dca40ff6de4274967d0d1 | fbe0fafb | C:\TCAFiles\Users\JordanH\21288\@CUPUnits 18:02:43 CUP Weapons 1.6 | @CUPWeapons | false | GAME DIR | 8db6bdac14bfd0db4284c6c35abe0ca336cd79be | 700c11cf | C:\TCAFiles\Users\JordanH\21288\@CUPWeapons 18:02:43 Community Base Addons v2.4.0 | @CBA_A3 | false | GAME DIR | 0874b3117ba845aa6c9aa4a86a2fea7549729617 | ef57f0f4 | C:\TCAFiles\Users\JordanH\21288\@CBA_A3 18:02:43 Exile Mod | @Exile | false | GAME DIR | 2aca2920ea6f52c1cbdcbdf7c7d2efc44c90442d | 3197fd66 | C:\TCAFiles\Users\JordanH\21288\@Exile 18:02:43 Arma 3 DLC Bundle | dlcbundle | true | NOT FOUND | | | 18:02:43 Arma 3 Marksmen | mark | true | GAME DIR | 8a8bc2a7d7ad8251bcc82f29aea6d3f34ebffb3d | 1c11a244 | C:\TCAFiles\Users\JordanH\21288\mark 18:02:43 Arma 3 Helicopters | heli | true | GAME DIR | 1614a75b4d3cceb5d296ca4101a589fba596aa5e | 9a800f11 | C:\TCAFiles\Users\JordanH\21288\heli 18:02:43 Arma 3 Karts | kart | true | GAME DIR | 41f70c200a668f39e52eedf55e0c6f494aef1903 | c9867676 | C:\TCAFiles\Users\JordanH\21288\kart 18:02:43 Arma 3 Zeus | curator | true | GAME DIR | fb1eec1e78a39cd021a71a293ae4ae1e00c98686 | 44f886e | C:\TCAFiles\Users\JordanH\21288\curator 18:02:43 Arma 3 | A3 | true | NOT FOUND | | | 18:02:43 @a3_dms | @a3_dms | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JordanH\21288\@a3_dms 18:02:43 @ExileServer | @ExileServer | false | GAME DIR | da39a3ee5e6b4b0d3255bfef95601890afd80709 | 11fdd19c | C:\TCAFiles\Users\JordanH\21288\@ExileServer 18:02:43 ==========================================================================================================================================================================================================
×