Jump to content

unhappytroll

Member
  • Content Count

    44
  • Joined

  • Last visited

  • Medals

Community Reputation

6 Neutral

About unhappytroll

  • Rank
    Lance Corporal

Recent Profile Visitors

956 profile views
  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.
×