-
Content Count
4313 -
Joined
-
Last visited
-
Medals
Everything posted by Grumpy Old Man
-
JSRS 2.1 Problems and Troubleshooting
Grumpy Old Man replied to Brainbug's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Blew up a hunter after ~950 rounds from the pawnee M134 with JSRS 2.1 Without JSRS it took approximately the same amount of rounds to blow it up. The Hunter was placed ~20m in front of the pawnee, so the M134 hit the hunter a bit below its headlights. Are you sure you're not running any other mods? -
How to check if units is unarmed, EVEN if he has a gun in his backpack?
Grumpy Old Man replied to Undeceived's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You could use currentWeapon or primaryWeapon/secondaryWeapon/handgunWeapon to perform the check. Cheers -
Where can I find the "picture" .paa file for soldiers?
Grumpy Old Man replied to BEAKSBY's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Soldier Units don't have their pictures defined, always returns an empty string (if I can recall right), at least you can retrieve the "icon" image. -
[Help] Using an editor to place, then converting editor data to script.
Grumpy Old Man replied to TheTranscendentOne's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Take a look at BIS_fnc_objectgrabber / BIS_fnc_objectmapper in the functions, should do just what you want. -
Try to convert it to .ogg, should improve loading performance.
-
[Release] GOM_AD - Aerial Denial script
Grumpy Old Man replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Added: Short demo Video Added: "MISSILES" parameter - adds one AA missile launcher to each Aerial Denial Zone Changed: switched the 20mm gatling into a 35mm autocannon with side specific tracers -
General Discussion (dev branch)
Grumpy Old Man replied to DnA's topic in ARMA 3 - DEVELOPMENT BRANCH
They either saw you through the window or they heard you using the radio. When issuing commands or using the radio you can give away your position to nearby units, has been like that in A2, should still be the case. -
Init.SQF Optimization
Grumpy Old Man replied to Kydoimos's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Have you tried to launch all your scripts from a seperate .sqf file? -
Delete vehicle not crew
Grumpy Old Man replied to Victim9l3's topic in ARMA 3 - MISSION EDITING & SCRIPTING
{deletevehicle _x} forEach (crew vehiclename)+[vehiclename] Should do the trick. Cheers! -
Arma 3 has so much more to offer, if you're bored with a mission type there's plenty of other (well populated) missions to choose from. Try out some domination or patrol ops servers with active admins or join a small community that's playing specific missions tailored to the amount of active players, I'd bet you won't look back.
-
Movement detection
Grumpy Old Man replied to wyattwic's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey, something like this maybe? Didn't test it but it should work (already had 2 mugs o coffee so it should, heh) First param is the unit you want to monitor, second parameter is the distance the unit has to move until the function returns true. Will be checked every 3 seconds (more than plenty of time to trigger some C4 or whatever you want) _unit = _this select 0; _detectiondistance = _this select 1; _oldpos = getposATL _unit; _oldposX = _oldpos select 0; _oldposY = _oldpos select 1; _checking = true; while {alive _unit AND _checking} do { _currentpos = getposATL _unit; _newposX = _currentpos select 0; _newposY = _currentpos select 1; if (_newposX >= _oldposX + _detectiondistance OR {_newposX <= _oldposX - _detectiondistance} OR {_newposY >= _oldposY + _detectiondistance} OR {_newposY <= _oldposY - _detectiondistance}) exitwith {_checking = false;hint "Movement detected";true}; hint "No Movement detected"; sleep 3; }; Other version which is a wee bit simpler (blame the coffee): _unit = _this select 0; _detectiondistance = _this select 1; _oldpos = getposATL _unit; _checking = true; while {alive _unit AND _checking} do { _currentpos = getposATL _unit; if (_unit distance _oldpos <= _detectiondistance) exitwith {_checking = false;hint "Movement detected";true}; hint "No Movement detected"; sleep 3; }; -
Make a normal car to autonomous
Grumpy Old Man replied to bardosy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Place an UGV and name it UGV, then place 2 trucks named truck1 and truck2. Next execute this from the debug console in the editor: _grp = group UGV; { _uavcrew = "B_UAV_AI" createUnit [getposATL player,_grp, format ["this moveindriver %1",_x]]; } foreach [truck1,truck2]; _grp setbehaviour "SAFE"; _newpos = nearestLocation [getPos UGV, "nameCity"]; UGV move locationposition _newpos; Now you got an autonomous spooky convoy (ASC) -
Make a normal car to autonomous
Grumpy Old Man replied to bardosy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'd like to know this aswell. So far I spawned a UAV AI and put it in the driver seat of a Hunter, but the vehicle didn't show up on the UAV terminal, neither did the connectterminaltoUAV command do anything. _grp = creategroup side player; _uavcrew = "B_UAV_AI" createUnit [getposATL player,_grp, "this moveindriver car"]; If you spawn the UAV AI into the players group you can command it like a regular soldier, very spooky. From the looks there's probably something simple I'm missing to make the vehicle accessible through the UAV terminal, maybe someone else has any hints? -
LOSounds2 - A Hyper Funny Sound Mod For ArmA3
Grumpy Old Man replied to laxemann's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Wrong announcement? You announced a "Hyper Realism Sound Mod" and stated that you "asked experienced shooters what each weapon, vehicle and even gear part should sound like and recreated it with an enormous focus on detail.". A bit too late for Aprils fools. -
LOSounds2 - A Hyper Funny Sound Mod For ArmA3
Grumpy Old Man replied to laxemann's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Very odd to watch, stuff like that doesn't belong here. What has this forum become... -
Place Vehicle on its side - impossible?
Grumpy Old Man posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey folks, currently trying to place vehicles sideways, to no avail. I've been using [cursortarget, 0, -130] call BIS_fnc_setPitchBank; to test various vehicles and they all seem to auto-unflip themselves. I even tried to add enablesimulation false, didn't work at all. Seems to be wonky physx handling from the game itself, if you try it you can even see the vehicles starting to dance around until they're unflipped. This is driving me mad. Any suggestions? -
Disable wave bob on trawler but keep the lights?
Grumpy Old Man replied to Oforf Ucksake's topic in ARMA 3 - MISSION EDITING & SCRIPTING
The time delay did the trick, thanks for that, cheers! -
This thread is an inspiration and an incredibly good source of information to help balancing missions. Keep up the good work!
-
Place Vehicle on its side - impossible?
Grumpy Old Man replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@F2k Sel: Seems to be the same issue that I had, voted your ticket. -
Place Vehicle on its side - impossible?
Grumpy Old Man replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Apparently this command won't work as intended when using it on already existing vehicles mid-mission (just like I did when testing the command in the editor), when putting it into an units init field or using it shortly after spawning the unit it's working just fine, all vehicles are sideways now, when using the command in my spawn scripts. Very weird. -
Disable wave bob on trawler but keep the lights?
Grumpy Old Man replied to Oforf Ucksake's topic in ARMA 3 - MISSION EDITING & SCRIPTING
You could probably attach the trawler to a smaller boat and turn off the simulation on the smaller one, might be worth a try. -
Place Vehicle on its side - impossible?
Grumpy Old Man replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
the setvectorup command is basically doing the same as the bis_fnc_setpitchbank Vehicles will be on their sides for a split second, then magically bounce until they're on their wheels again for some weird reason. The only workaround I can think of is to use setcenterofmass to shift the mass of a vehicle to the side it should be lying on, but it's not working as reliable as I want it to. -
Spawn in MG team
Grumpy Old Man replied to hellstorm77's topic in ARMA 3 - MISSION EDITING & SCRIPTING
On top of what Beerkan said you could also use "createvehiclecrew" to create a gunner for the static weapon of your choice. -
Ruin your copy of Arma and your PC.
Grumpy Old Man replied to das attorney's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for this thread attorney, really appreciate it. Tried to increase the shadow distance with the new script command, didn't do much for me (no difference between setting it to 200-2000), gonna test your mod later today and see if it's different. Is there a way to increase the grass drawing distance on top of the other options of this mod? This would really make a great must-have mod for people interested in screenshots. -
Blastcore: Phoenix 2
Grumpy Old Man replied to Opticalsnare's topic in ARMA 3 - ADDONS & MODS: COMPLETE
As far as I know this won't happen in arma3, you can try it out for yourself. Load up Blastcore, place a few vehicles and set their health to 0. Hit preview and watch them explode. Now increase the vehicle amount and it won't take long until you find out that some vehicles won't emit fire/smoke because some weird particle limit or gfx limit (afaik) is being reached. Depending on your GPU this will happen even way before you're seeing any GPU usage increases.