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

unhappytroll

Member
  • Content Count

    44
  • Joined

  • Last visited

  • Medals

Everything posted by unhappytroll

  1. unhappytroll

    3CB BAF Vehicles

    good day to you, gentlemen. missiles UK3CB_BAF_PylonRack_4Rnd_Hellfire_K[0] are constantly missing the lased targets (having lanched from Apache with buddy lasing from the Watchkeeper drone) with all LOAL options, 10-50 meters. only about one missile in 8 launches hits. on a contrary, rhs_mag_AGM114K_4 hits 6 times from 8 with buddy lasing. I think something is not working quite right. laser code is 1111 in both cases, on both aircrafts
  2. unhappytroll

    ARMA 3 Addon Request Thread

    Is there any mod, that can make copilot's camera to be usable by pilot in helicopters?
  3. ok, thank you for the response
  4. Question. On the mission start, how can I limit armament in the AWS: a) to setup limited types of weapons only to select from (f.e. only Mk82 and AIM-9C); b) to list only predefined custom presets (and no actual selection for the pylons); c) to limit certain type of weapons to certain pylons (with or without custom presets)?
  5. Armaholic site is dead, so this list may be considered deprecated in the tools part.
  6. unhappytroll

    [WIP] Embraer A-29 Super Tucano

    Ty, it is indeed Blastcore. But I found another issue - Zoom key does not work if rockets installed and selected. Missiles, guns and bombs are not affected.
  7. unhappytroll

    [WIP] Embraer A-29 Super Tucano

    I beieve, there is no other Super Tucano mods. so I bring it here. I think that hot exhaust effect is more than a little excessive, picture jumps constantly. I don't really believe it is a issue of real aircraft, especially in flight.
  8. Can anyone say anything about timeline to fix CCIP on planes at least?
  9. Original link: http://www.armaholic.com/page.php?id=19139 Note 1: it works properly only if there is no more vehicles in the trigger. Problem is, that even a simple helipad portable light "PortableHelipadLight_01_red_F" IS a vehicle. Which means that if it was placed in the trigger, it will be listed in "thislist" variable, and [thislist select 0] in the activation script will do zilch, because your vehicle would not be in first position - hence script will not work for you. So be sure that there is nothing else in the trigger that had been placed by you. Note 2: code _type = typeOf _object; _object vehicleChat format ["Servicing %1... Please stand by...", _type]; will give you name of the vehicle in the form of class name, which is like "B_Heli_Light_01_armed_F" and not very informative. But you can do better. Just make it look like: _type = typeOf _object; _type_name = getText(configFile >> "CfgVehicles" >> _type >> "displayName"); _object vehicleChat format ["Servicing %1... Please stand by...", _type_name]; and you will have nice "AH-9 Pawnee" name instead. Note 3: you can safely remove code while {(fuel _object) < 0.99} do { _object setFuel ((fuel _object + 0.1) min 1); sleep 0.01; }; And leave just _object setFuel 1; All that it is doing just the slowing the movement of a fuel indicator to it's 100% position. Leave it only if you want it for "immersion" sake, and then tweak sleep and step parameters as you like.
  10. No, it is pretty much dead. Not in the sense that you can't use it, but development had ceased almost three years ago - if you check the github.
  11. It is definitely not, but whatever. I will not die without this mod. It is just my opinion that you did something wrong and trying to blame me for it. Well, most laughable thing of it, that I'm not using it while playing Arma (why I need it in my system - is another matter). Definitely, it is more than one network adapter (virtual or physical) in the system, and even my "hosts" file is clean, lol. so, literally nothing can prevent any program to connect through loopback address (and any WAMP package I tried had zero problems to do so). It is looking like authors of this mod for some inconceivable reason used "localhost" definition instead of just simple 127.0.0.1 loopback. Why is that - I cannot imagine.
  12. can we have ADR-97 in handgun slot at least? this is where it should be in a first place.
  13. /me wonders, why then my localhost XAMPP installation works without the issues... also like literally nothing such is on the Redis site in docs. wonder, if someone had a wrong keys when compiled that server from the sources... also, this is from config file comments: # By default Redis listens for connections from all the network interfaces # available on the server. It is possible to listen to just one or multiple # interfaces using the "bind" configuration directive, followed by one or # more IP addresses. wonder, if someone literally can't write the code right... also, this is right next to the "bind" option in v4.0 config file: # Protected mode is a layer of security protection, in order to avoid that # Redis instances left open on the internet are accessed and exploited. # # When protected mode is on and if: # # 1) The server is not binding explicitly to a set of addresses using the # "bind" directive. # 2) No password is configured. # # The server only accepts connections from clients connecting from the # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain # sockets. # # By default protected mode is enabled. You should disable it only if # you are sure you want clients from other hosts to connect to Redis # even if no authentication is configured, nor a specific set of interfaces # are explicitly listed using the "bind" directive. protected-mode yes but it is not in the config file for your server. wonder, what version did you compiled then...
  14. ok, so be warned - by the word of the author of... this, Redis server is unable to lock on to localhost interface. so if you have more than one network interface (VPN, virtualization programs) - this mod will not work.
  15. also it would be nice to have code like this (which is from Lowlands warrior PiP mod): will be integrated into the game. Just because.
  16. How can I check if Redis server able to receive data from mod? How can I check if Redis server starts properly and loads right config file? How can I check if application able to receive data from Redis server? Because I do think that is the reason. Also, that BE errors... This is some .NET libraries, which Unity probably uses.
  17. Reinstalled. Same issue up to BE errors. You mean this window? I'm not sure that Redis Addon ever works.
  18. Can we have CCRP mode in the planes?
  19. I also had these messages from BattlEye: 11.08.2018 17:19:25 - Blocked loading of file 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml.Linq\327089111a659a9c33988ebc69cb4557\System.Xml.Linq.ni.dll' 11.08.2018 17:19:25 - Blocked loading of file 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\cf2ec3f149fd0ca1f034de565e5d9ead\System.Xml.ni.dll' after using these mods. But disabling BE did nothing helpful.
  20. Nothing else except stated in the manual. 1. Run Redis server by .bat file (you can see it on the second screenshot) 2. Run Wings exe 3. Click connect button. (this is where that red line shows itself). 4. Start your mission from Eden. Null problemo. https://imgur.com/a/kJPHU6S
  21. https://imgur.com/a/P25fGHO https://imgur.com/a/xBgRDnR There is only one clock. Yes, that's what I did. Nah, it's ok for me.
  22. There is a checkbox with "Windowed" label, it works, so this is fine enough. It is just when I tried to select my 1440x900 monitor the fullscreen image was scaled to 720x400, I think. There is the problem, gauges is not working. Buttons are working, clock is working. Gauges does not receive data looks like.
  23. There is some screen resolution issues with my 3 different monitors (1920x1080, 1440x900, 1280x1024 turned to vertical). Also I have "key not found please start the mission" error. upd. this is with Steam current version.
×