ChaosDuck 20 Report post Posted December 29, 2018 (edited) a simple box that shows the current selected weapon, total ammo count and flare count (doesn't show if its in single or burst flare), i tried my best to make it look like the default arma 3 hud but just gave up and replaced it with a structured text box, so if anyone wants they can change that. just look for _string = ""; and everything below that is adding to the text.https://github.com/dulanw/A3ExilePilotHUD *edit* an alternative posted by USAFJunkie that uses the exile hud style. https://pastebin.com/YY57MG8Z overrides ExileClient_gui_hud_renderWeaponPanel Edited January 1 by ChaosDuck 4 Share this post Link to post Share on other sites
Monkeynutz 230 Report post Posted December 30, 2018 A while true loop inside of a while true loop... FPS will get hit hard with this stuff, I’ll write this better for you when I get time and show you a neat trick. 1 Share this post Link to post Share on other sites
ChaosDuck 20 Report post Posted December 30, 2018 5 hours ago, Monkeynutz said: A while true loop inside of a while true loop... FPS will get hit hard with this stuff, I’ll write this better for you when I get time and show you a neat trick. it would be great if there was an alternative way to do this. I just did it this way since I didn't notice any performance impact (also the easiest way i knew to do this). only the inner loop gets executed with a sleep of 0.2 sec, since you don't break out of it until you get out the vehicle and it doesn't start executing until you get in to helicopter and a plane. Share this post Link to post Share on other sites
[x] cit 23 Report post Posted December 30, 2018 12 hours ago, Monkeynutz said: A while true loop inside of a while true loop... FPS will get hit hard with this stuff, I’ll write this better for you when I get time and show you a neat trick. we are waiting, if it possible to do this for all vehicles/ Share this post Link to post Share on other sites
ChaosDuck 20 Report post Posted December 31, 2018 2 hours ago, [x] cit said: we are waiting, if it possible to do this for all vehicles/ Why for all vehicles? Don’t remember seeing any other vehicles having weapons that are usable from the driver seat. Share this post Link to post Share on other sites
StokesMagee 871 Report post Posted January 1 On 12/30/2018 at 10:15 AM, ChaosDuck said: it would be great if there was an alternative way to do this. I just did it this way since I didn't notice any performance impact (also the easiest way i knew to do this). only the inner loop gets executed with a sleep of 0.2 sec, since you don't break out of it until you get out the vehicle and it doesn't start executing until you get in to helicopter and a plane. I quoted what he said in another forum post as well... so i don't have to repeat myself here: Spoiler but anyways... for this you can just make an override for Exiles hud update, and add inside of there the update for your ammo stuff, it would save a loop, but honestly it's not doing anything at all so it's completely up to you. Share this post Link to post Share on other sites
USAFJunkie 15 Report post Posted January 1 (edited) @ChaosDuck Mind if I throw in a quick pastebin file of my simple override that does something similar? I figure players might want options but i dont want to create a new thread for something that is the same exact purpose as this If not no problems Edited January 1 by USAFJunkie Share this post Link to post Share on other sites
ChaosDuck 20 Report post Posted January 1 23 minutes ago, USAFJunkie said: @ChaosDuck Mind if I throw in a quick pastebin file of my simple override that does something similar? I figure players might want options but i dont want to create a new thread for something that is the same exact purpose as this If not no problems sure thing, yours looks much better too. Share this post Link to post Share on other sites
USAFJunkie 15 Report post Posted January 1 14 minutes ago, ChaosDuck said: sure thing, yours looks much better too. I ended up just copying Exiles default It, unfortunately, doesn't do flares nor does it do Manual Fire so your functionality is better than mine. But I mean hey its simple lol. It could probably end up being less code than it is. But hey what can ya do lol. https://pastebin.com/YY57MG8Z 1 Share this post Link to post Share on other sites
ChaosDuck 20 Report post Posted January 1 24 minutes ago, USAFJunkie said: I ended up just copying Exiles default It, unfortunately, doesn't do flares nor does it do Manual Fire so your functionality is better than mine. But I mean hey its simple lol. It could probably end up being less code than it is. But hey what can ya do lol. https://pastebin.com/YY57MG8Z edited the initial post and added a link to your one 1 Share this post Link to post Share on other sites