Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

zealous9065

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Everything posted by zealous9065

  1. Project Argo runs nearly like Arma, making the use of scripts possible for custom missions. Third person view was not intended to be used in Argo, however it is possibly accessible using this script: (findDisplay 46) displayAddEventHandler ["KeyDown",{ if ((_this select 1) == 156) then {//I'm using 156 to represent "Enter" on NumPad while {true} do {//Must loop constantly or 3rd person will disable player switchCamera "EXTERNAL"; sleep 0.0005; }; }; }]; I'd like it so that this particular script is "Toggle-able" or enabled/disabled via one key-press, rather than to hold the key down continuously in order for it to do its job .... If anyone has the decent script-expertise and would like to share with me a finished version of what I want, I'd appreciate it! P.S. I would also like a script that allows one to access/open "BIS_fnc_arsenal" anywhere using a specific keyboard key, much like the way to activate third person view, but using the "home" key on NumPad (DIK code 199) instead. Best of regards.
  2. waituntil {!(IsNull (findDisplay 46))};//this line might not be necessary depending on where you insert this script (findDisplay 46) displayAddEventHandler ["KeyDown",{ if ((_this select 1) == 199) then { if (true) then { ["Open",true] spawn BIS_fnc_arsenal; }; }; }]; Here is a script that allows you to open the Virtual Arsenal from any position using the "Home" key. If you'd like to change the "Home" key to a different key, alter the value "199" to any "DIK code" representing your desired key. A list of all of the "DIK codes" can be found here.
  3. Greetings POLPOX, Thanks for your reply! I've tried your script on Project Argo and it didn't work, however I'm sure it would've worked on Arma 3 assuming that your script swaps between 2 states, "External" and "Internal" mode (which the intention of allowing 3rd person to be toggle-able was what I wanted, cheers!). However I forgot to exaggerate on one important note (which was displayed on line 3 of the OP's script) is that Argo forcefully places the player in "Internal" mode consistently, as the remedy I've found for this was to loop the "External" command consistently with a sleep of 0.0005 to reduce lag, as it is almost like a constant battle for which view mode your unit stays in. It sucks, but that's how Argo runs unfortunately - however I do appreciate your time nonetheless, as it is very understandable that Argo isn't meant to be played in ways that Arma can!
×