-
Content Count
129 -
Joined
-
Last visited
-
Medals
-
An extra param would be nice for Killed and MPKilled eventhandlers: killer / instigator weapon, so we could get what weapon was used when the shooter killed the victim
-
How Change this Mission Name in the MP Hosting "Create Game" Screen
UnDeaD. replied to dgrrrhelp's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, i believe you have to change the text of briefingName inside description.ext https://community.bistudio.com/wiki/Description.ext#briefingName -
Disable EndMission when out of Tickets
UnDeaD. replied to greenpeacekiller's topic in ARMA 3 - MISSION EDITING & SCRIPTING
. -
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.
-
Many thanks! 😁
-
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?
-
ticket deduction Killed Spawn AI subtract Sector Control Tickets
UnDeaD. replied to LcplDad's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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.- 5 replies
-
- sector control
- spawned troops
-
(and 2 more)
Tagged with:
-
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
-
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"]];
-
Why isn't this working (SpawnAI custom define)
UnDeaD. replied to RS30002's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
Add Item_Money_stack in crate
UnDeaD. replied to TKSRichy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, that is listed in magazines near the end of this list. Use the classname from there. Hope i could help. -
sqf Missing semicolon
UnDeaD. replied to xym_modding's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
GF Headshot + Killfeed Script
UnDeaD. replied to GEORGE FLOROS GR's topic in ARMA 3 - MISSION EDITING & SCRIPTING
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. -
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.
-
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.