Jump to content

fincuan

Member
  • Content Count

    336
  • Joined

  • Last visited

  • Medals

Everything posted by fincuan

  1. True, and it's not even necessary to wait for the circle. Lock and release will put it right on the target most of the time. The box you see on the hud is simply a target indicator that is misaligned because huds aren't properly done in A2. It should be on top of the target, just like the bigger box which is part of the 2D gui.
  2. fincuan

    Someone upload 1.03 & 1.04 please.

    There is only one version of the patch, and the language you end up using is defined by what version of the game you bought.
  3. Noticeably lower FPS here too, and for me the culprit turned out to be clutter. Using other parts from this one but the clutter-part from Proper made all the difference.
  4. Two different situations here: What's ok in coop may not be that ok in pvp. That is why pvp is mostly played on server which disallow addons or only allow a few via signature checking. Something basic and highly useful in coops, such as InstantViewDistance or SightAdjustment, is very unfair towards the others if used in pvp.
  5. Besides the obvious choices: Saitek X52, Saitek Pro Pedals, headtracking with Freetrack. Brain mostly, but not always.
  6. fincuan

    FP : DR - News & Discussion

    Correct, also known as missions in OFP/Arma-series :) edit: And in this case we'll count DR as belonging there, since there's only one big map where the missions take place.
  7. fincuan

    AKM vs. AK-74 sound differences

    I don't know either if that should technically happen, but I assure you it doesn't happen in practice :)
  8. fincuan

    Ka-52 Funnel Meneuver and Side Fly

    That's possible with any chopper in Arma2 though, not just the Ka. No idea how that is irl.
  9. fincuan

    Demo activation with license key?

    MadDogX is entirely correct. The downloadable demo is a no-go in this case, so if I were you I'd turn towards Steam. Maybe try re-entering the CD-key a couple of times to make sure it's not a typo or something, and if it still doesn't work ask their support to confirm that it's a valid cd-key at all. http://forums.steampowered.com/forums/forumdisplay.php?f=368 edit: You could of course also inquire the seller on which version the cd-key is meant for. There's other downloadable versions besides Steam, even though as far as I'm aware none offers any "upgrade from demo" capability.
  10. fincuan

    FP : DR - News & Discussion

    Man that place is a real Comedy Central. Remember to check the DR vs. Arma comparison thread while it's still there. Good stuff
  11. fincuan

    FP : DR - News & Discussion

    Oh my... That thread was one of the most pathetic things I've seen in a while. :) In defense of the mods it must be said that they've now closed it.
  12. Notepad++ with the Arma Script-plugin
  13. Wow, that sounds interesting. First bugreport: No other SLX-addons installed, and on entering the main menu this pops up: Cannot load texture slx_wounds\data\ambulance_move.paa
  14. fincuan

    why no respitartors

    The end result is the same, but the reason is exactly the opposite: At high altitude you won't be able to get ENOUGH oxygen out of the air. Wiki has something more on the subject: http://en.wikipedia.org/wiki/Hypoxia_(medical) With proper acclimatization it's of course entirely possible to attain these high altitudes, for short periods of time, even without the use of supplemental oxygen. Man has even been on top of Mt.Everest(8840 m) without it, but such feats require weeks of acclimatization and an exceptional physical condition with suitable genes.
  15. fincuan

    Appeal to ALL public server admins!

    Even though it's a nice addon it's not signed yet, so probably not going to happen.
  16. I too understood this poll is only about the positional audio. The first post says: Not to say that a full support wouldn't be nice, but I find it hard to believe it ever happens.
  17. My alltime favourite in this one... Throw them to orbit(well ok, not quite... but still high!) :) { _dir = vectorDir _x; _x setVelocity[(_dir select 0)*200,(_dir select 1)*200,200]; } forEach thislist;
  18. This ACE was provided to us for free and was still massive in content, as well as good in quality, so I don't complain(well, not much). The extra weapons and such aren't certainly a bad thing either, and it's good to hear that they still have a place in the mod.
  19. fincuan

    Reflector sights?

    Ideally it would work like that, but in A2 the rifle isn't strictly locked to the eyes when aiming. There's an ever so slight wobble, the sights get slightly misaligned, enough to cause an offset of several meters at distance. With properly done red-dots this wouldn't matter, because even if the dot was off-center on the screen it would still point to the target.
  20. if ((unitA distance player) < 15) then { unitA sideChat "Reporting for duty, SIR!"; (units unitA) joinSilent player; };
  21. fincuan

    Reflector sights?

    I'd say having the sights point where the bullet will hit is a pretty damn big part of gameplay, so yeah it has an effect. As it stands now the sights are misaligned by even the slightest headmovement, which shouldn't be the case. Same thing with aircraft huds.
  22. fincuan

    JTD Fire And Smoke

    Hi Ambulance Chaser and DM :) Your memory serves you right, I've been around Frugal's but not in a while. Maybe it's time for a visit again :) I remember both of you guys well from there.
  23. fincuan

    JTD Fire And Smoke

    Instead of just bitching I'll try to present a solution to the MP-problem: Add an isClass-check to the globalExecute parts. For example: ForestfireVehicle.sqf, line 144 original [-2,{_this ExecVM "JTD_FireAndSmoke\Scripts\ForestFireTree.sqf"},[_x,_x,_SmokeStyle,_PrimaryLifetime,_SecondaryLifetime,_thisTime]] call CBA_fnc_globalExecute; Proposed solution(untested): [-2,{if (isClass(configFile >> "cfgPatches" >> "JTD_FireAndSmoke")) then {_this ExecVM "JTD_FireAndSmoke\Scripts\ForestFireTree.sqf"}},[_x,_x,_SmokeStyle,_PrimaryLifetime,_SecondaryLifetime,_thisTime]] call CBA_fnc_globalExecute; Will test it right now.
×