Jump to content

UnDeaD.

Member
  • Content Count

    128
  • Joined

  • Last visited

  • Medals

Everything posted by UnDeaD.

  1. Hi, i believe you have to change the text of briefingName inside description.ext https://community.bistudio.com/wiki/Description.ext#briefingName
  2. UnDeaD.

    Ravage

    Refilling jerry cans at CUP fuel stations (i tried the one with classname "Land_A_FuelStation_Feed") on Chernarus Redux throws error that _value and _fuelsource is not defined and the jerry can disappears. I assume the same happens on other maps that use CUP fuel stations.
  3. UnDeaD.

    Ravage

    Many thanks! 😁
  4. UnDeaD.

    Ravage

    Has anyone noticed that GRAD Persistence doesn't save Ravage variables (hunger, thirst)? I saw that these variables are not broadcasted to the server and persistence cannot find them. Would it cause multiplayer issues if these variables were broadcasted?
  5. Since the recent update: https://community.bistudio.com/wiki/Arma_3:_Mission_Event_Handlers#EntityCreated Only thing you would need to do is maybe filter the units a bit.
  6. UnDeaD.

    AI ignore airfield

    Hi, if you refer to the editor then try increasing their skill, that way they will also spot enemies much quicker. One more thing you could do is to move the helos into one group, so they spot enemies and share it with the other ones. Or you could bring in a bit of scripting and use commands such as reveal
  7. UnDeaD.

    Inuries

    Hi, try this (this adds random blood textures to clothes): _unit setObjectMaterialGlobal [0, selectrandom ["A3\Characters_F\Civil\Data\c_cloth1_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth2_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth3_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth4_injury.rvmat"]]; or directly into the unit's init box: this setObjectMaterialGlobal [0, selectrandom ["A3\Characters_F\Civil\Data\c_cloth1_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth2_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth3_injury.rvmat","A3\Characters_F\Civil\Data\c_cloth4_injury.rvmat"]];
  8. Hi, I'm not experienced with config defines but my first guess would be to put the unit/vehicle classnames into quotes. Hope that solves it.
  9. Hi, that is listed in magazines near the end of this list. Use the classname from there. Hope i could help.
  10. UnDeaD.

    Missing semicolon

    Hi, i'm not experienced with display stuff, but i saw on the wiki that closeDisplay requires(?) a parameter in front of it (display closeDisplay exitCode). Not sure, if that causes the problem, i'm just guessing.
  11. UnDeaD.

    GF Headshot + Killfeed Script

    Hi, I believe if you replace this part of the script if(!(isplayer _killed))then{ _killed_Name = getText (configFile >> "CfgVehicles" >> format["%1",typeOf _killed] >> "Displayname"); }else{_killed_Name = name _killed}; with this _killed_Name = name _killed; it should work the way you want it.
  12. UnDeaD.

    Ravage

    I believe if they have a weapon, they will fight for the faction they were grouped to. I'm just using them as playable units for a mission, so the restriction of using another faction's clothes doesn't apply to them, even when they are assigned to another faction the way I mentioned above.
  13. UnDeaD.

    Ravage

    The easiest workaround is to use civilians as playable units, which you group to a Blufor/Opfor/Independent unit. After that it should change it's color to the selected faction, and then you can delete that unit. Civilians can use any type of clothing.
  14. Hi, i'm using this condition in one of my missions: (count (fullCrew [_vehicle,"",true]) == count (fullCrew _vehicle)) which returns true if the _vehicle is full.
  15. Hi, "test" call BIS_fnc_getParamValue returns 0, because the default value you assigned to it is a string and it has to be a number. Remove the quotes from values and default and it should work fine.
  16. Hi, i'm pretty sure this will work: {deletevehicle _x} foreach (units opfor); With the 2.02 update the devs expanded the units command, so it can collect all units of a side, too. Link
  17. UnDeaD.

    Random task for AI

    Something like this: _rand = round (random 5); switch (_rand) do { case 0: {[New_AI_Group_3, _pos_1, 500] call lambs_wp_fnc_taskPatrol;}; case 1: {[New_AI_Group_3, _pos_1, 50] call lambs_wp_fnc_taskCamp;}; case 2: {[New_AI_Group_3, _pos_1, 50] call lambs_wp_fnc_taskGarrison;}; case 3: {[New_AI_Group_3, _pos_1, 50] spawn lambs_wp_fnc_taskCQB;}; case 4: {[New_AI_Group_3, _pos_1] call BIS_fnc_taskDefend;}; case 5: {[New_AI_Group_3, _pos_1, 1000] call BIS_fnc_taskPatrol;}; };
  18. UnDeaD.

    Ravage

    @haleks Not sure if it was asked before, or if it's already in the mod (although i haven't noticed it), but would it be possible to make zombies react to flashlights, weapon lights, vehicle lights, burning campfires and shoulder mounted chemlights? I often walk around at night with a light on and zombies don't seem to notice me. I think it would be a cool feature if they could react to it (zeds close would start to run to it and those which are a bit further would walk towards it)
  19. UnDeaD.

    AI Discussion (dev branch)

    What i noticed about AI: The Falcon drone sometimes gets crazy and starts to go around in circles and increase altitude when it reaches it's waypoint. This happens when ordered to a position through the UAV terminal (on Altis, waypoint over sea, enemies in a 1.5km radius) Ifrit driver has a hard time reaching a waypoint after it stops due to collision/other reasons. He starts to reverse, then it looks like he is "tapping" the gas and moves very slowly. He keeps doing that for like 15-30 seconds, then he either gets stuck in a loop and does the same thing for a few more times or it starts moving normally. Hunter and Strider works fine, so i'm guessing it uses a different AI driving. I noticed the same thing for some modded vehicles, and that is probably because they are using the Ifrit's AI.
  20. UnDeaD.

    Ravage

    If you want to do it without additional mods then check this out:
  21. UnDeaD.

    Ravage

    Try this: {_x == "rvg_baconEmpty"} count (magazines player)
  22. UnDeaD.

    Ravage

    A mission I released a few days ago: https://steamcommunity.com/sharedfiles/filedetails/?id=2446793856 It has persistence, a very basic base building and other stuff that are mentioned in the description.
  23. UnDeaD.

    Ravage

    Sorry for bothering you @haleks, but i just tried to repair a helicopter on top of a building, and it got teleported into it and exploded as soon as the repair was finished 😂 When you get to releasing a new update: could you replace _vehicle setPos (getPos _vehicle); with _vehicle setPosASL (getPosASL _vehicle); (line 43) in repairParts.sqf? This way this problem will be solved. Thanks.
  24. UnDeaD.

    [Release] SCCLoot

    Hello, how does the spawn chance works? Does it have to be 100 in total in each loot category? And when players meet, does the loot duplicate or will it spawn only for one player (but will be accessible for both)?
×