Jump to content

BlackSomethingDown

Member
  • Content Count

    36
  • Joined

  • Last visited

  • Medals

Community Reputation

22 Excellent

About BlackSomethingDown

  • Rank
    Private First Class

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. BlackSomethingDown

    Tier 1 Weapons

    I figured you probably got asked this before, but is it possible to implement canted aiming for the offset red dot sights? As of now with the RHS way the scope body still takes up the entire left half of your screen and nukes your situational awareness anyway which renders offset red dots almost useless.
  2. BlackSomethingDown

    LAMBS Improved Danger.fsm

    Haha! What a shame I didn't get to see that for myself
  3. BlackSomethingDown

    LAMBS Improved Danger.fsm

    Crap, duplicate post, snipped
  4. BlackSomethingDown

    LAMBS Improved Danger.fsm

    You can see the logic if you would just read their posts. This is "Improved Danger.fsm", that's the part of AI behavior they are modifying. What you are asking for is behavior that is not defined by Danger.fsm and is handled by OTHER components that this mod cannot touch. And as nkenny has already said,
  5. BlackSomethingDown

    Damage Handling (ACE)

    I'm tinkering around with an ACE-friendly version of Blackout's CQB Shoot-house , but I have no clue how to actually keep the player from dying and wake them instantly upon being downed. Long story short, it's an SP scenario (no teammates), you go in, if you are about to take fatal damage, you instantly get healed up (via the below script) and the round resets. // Get old and new Player damage _current_damage = damage player; _new_damage = _current_damage + _reduced_damage_taken; // Update player damage if(_new_damage > _current_damage and _current_damage < 1) then { if(_new_damage >= 1) then { // Going to die, trigger game over player allowDamage false; null = ["Mission failed! You were killed"] execVM "scripts\end_round.sqf"; } else { // Apply damage to player... }; }; end_round.sqf calls "ace_medical_treatment_fnc_fullHealLocal" to restore the player's health fully and remove all wounds. However, there are still 3 problems: There are times where the player still gets insta-killed despite the script supposedly checking for fatal damage. The player can sometimes go unconscious. Even though he wakes up soon after getting healed up, I'd rather not have those 2-3 seconds of a black screen. Even on the mission setting that disables all damage, you can still be inflicted wounds. Is there a work-around for these problems?
  6. BlackSomethingDown

    [WIP] French Army Mod : ArmaModFrance

    >OMA >Krogar >Siege-A It's almost like a holy trinity where everything looks nice so long all three appear in the credits section of a render
  7. BlackSomethingDown

    Veteran mod (VTN) - announcement and WIP

    Let him work at his own pace man, if he feels like it's ready then it's ready. You can still play other scenarios, other mods, other maps in the meantime.
  8. BlackSomethingDown

    USP Gear & Uniforms

    Dammit, I can't believe I never knew of that functionality until now. Yes it works fine and it is readable.
  9. BlackSomethingDown

    USP Gear & Uniforms

    I had asked previously and I understand that the pbos are all locked to protect your work. However, in that case, may I request just a list of the classes with their inheriting classes (e.g. a config.cpp on github or something)? This is so that in case my group (or any other for that matter) can easily make private config replacement that only hides what my group does not need or changes armour/storage values, etc, etc. Cheers!
  10. BlackSomethingDown

    CAG/Delta Force Faction

  11. BlackSomethingDown

    ARMA 3 Addon Request Thread

    The plate carriers in COS are only available in OD btw and some of the pouches do not have loaded textures. I think most guys running some kind of COS have their own private retextures.
  12. BlackSomethingDown

    ARMA 3 Addon Request Thread

    Gear is probably COS by Sakuraba, with shirts being Project BJC.
  13. According to the ACE medical guide, this is the recommended loadout for soldiers: However, the current conversion of an FAK to medical items gives us something like this: Will there be plans to change the current FAK conversion to contain the items in the former list (and include a splint)?
  14. BlackSomethingDown

    Russian Helmets Project

    Wow, even the modern SpN helmets?
×