

flyingsaucerinvasion
Member-
Content Count
31 -
Joined
-
Last visited
-
Medals
Community Reputation
2 NeutralAbout flyingsaucerinvasion
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Please give arma reforger and enfusion forums
flyingsaucerinvasion replied to computer's topic in BOHEMIA INTERACTIVE - GENERAL
I didn't even know reforger was a thing intul about 20 minutes ago. The videos I've seen so far all gloss over what in my opinion is the most important factor. How is the new AI? Have they fixed any of the myriad of AI problems from previous arma games? -
ALiVE - Advanced Light Infantry Virtual Environment 1.0 (GA)
flyingsaucerinvasion replied to ALiVEmod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Get almost immediately a script error message saying "_previoustacomstate" is not defined. Don't know if this is related to the fact that very little seems to happen in the battlefield. One or two patrols seem to engage, an A10 takes off now and again, gets immediately shot down, and then pretty much nothing else happens. -
Finding TOTALLY empty position
flyingsaucerinvasion replied to flyingsaucerinvasion's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Unless I'm mistaken, BIS_fnc_findSafePos doesn't check for moving objects, such as men, or vehicles. It's very important that vehicles don't spawn on top of men or other vehicles. Sometimes it seems to also miss structures that have been spawned in during the mission, example: a warfare bunker or the hbarriers surrounding it. It also seems to be my experience that BIS_fnc_findSafePos can return a position at the apex of a hill or mountain, because the apex is technically a low gradient, even though the area immediately around it is not. This is not suitable in cases where you are looking to find a place to put a structure, because the structure's perimeter foundation may end up hovering above the ground. Please correct me if I'm wrong about this. -
Finding TOTALLY empty position
flyingsaucerinvasion posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Need help coming up with a solution to this problem. The requirements are: 1) Returned Position must be relatively flat. (i.e., not at a great slope, and not at the apex of a ridge or mountain). 2) Returned Position should be as close to the target Position as possible. (No returning positions hundreds of meters away when ones much closer would also meet the criteria). Most importantly: 3) Returned Position must be totally and completely devoid of anything that could possibly cause a collision issue. This includes, map objects, editor objects, moving objects (men and vehicles), as well as structures (buildings, ammo boxes, etc....) spawned in during the mission. 4) Position must be large enough to fit vehicles of any specific type. ---------------------------- I've got partial solutions to this problem that work most of, but not all of the time. And they fail all of the above requirements some of the time. -
Cancel Scripted Fire Mission Waypoint
flyingsaucerinvasion posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I couldn't find a good solution to this anywhere on google, so I'm gonna share what I came up with. To cancel a fire mission waypoint, such as this one: _wp = _arty_group addwaypoint [_target_pos,0]; _wp setWaypointType "SCRIPTED"; _wp setWaypointScript "A3\functions_f\waypoints\fn_wpArtillery.sqf"; _arty_group setCurrentWaypoint _wp; What I found that worked was to first move the waypoint somewhere where they can't shoot at it, pause for a few seconds, then delete the waypoint. NOTE: I have not yet tested this on mobile artillery. _wp setWaypointPosition [[1000000,0,0], 0]; //move wayoint somewhere where they can't shoot at it. sleep 5; //pause to let above waypoint movement to take effect, before deleting waypoints. _wp_count = (count (waypoints _arty_group)) - 1; for "_i" from _wp_count to 0 step -1 do { deleteWaypoint [_arty_group, _i]; }; ------- Here's a bonus piece of info: You can add dispersion to the fire mission by moving the waypoint a little bit periodically while the guns are shooting: _expire = time + 15; while {time < _expire} do { _wp setWaypointPosition [_target_pos, 75]; sleep 2; }; The artillery crew seems to adapt almost instantly to changes in the waypoint position. -------- Another piece of info: The artillery group used in conjunction with the fire mission waypoint doesn't have to be comprised of artillery of the same type, at least if you don't specify what kind of mag for them to fire. See here for more info on specifying the mag type. -
Foolproof way of forcing ai man to fire specified mag from underbarrel launcher.
flyingsaucerinvasion replied to flyingsaucerinvasion's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I can now answer two of my questions. 1) To force a unit to fire a weapon muzzle using a specific mag: _unit reload [_muzzle,_mag]; _unit selectWeapon _muzzle; _unit fire _muzzle; It will take time for them to reload the mag (but only if it isn't already loaded. However, the delay caused by reloading the mag does not appear to stop them from firing the weapon. I don't really know if the "selectWeapon" function is needed, but it doesn't seem to cause any harm that I can see. 2) This script (see spoiler) gets the muzzle capable of firing a magazine. But only from the primary weapon. All it does is check each muzzle in the weapon until it finds one that contains the searched for "_mag" in that muzzle's possible magazines. "none" is returned if no muzzle can fire the magazine. ----------------------- I've not seen any way of firing on a position that doesn't involve using an invisible target. However, what I'm actually doing is just making them fire (in whatever direction they happen to be facing), and then I adjust the velocity of the fired projectile to set it on a parabolic course toward its intended firing position. Somehow, this seems easier to me than mucking around with invisible targets (in this context anyway). -
Tracked AI vehicle stuck driving against low wall. Any way to fix?
flyingsaucerinvasion posted a topic in ARMA 3 - GENERAL
I don't know if it's a problem with this CUP vehicle in particular, but I haven't noticed other vehicles doing this exact same thing. It was stuck there 15 minutes, it's wheels spinning the whole time. Didn't move an inch. Any way to prevent AI drivers from doing this? -
Checking if a weapon is ready to fire
flyingsaucerinvasion replied to juleshuxley's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Which other thread? Please show me the way. I'm looking for an answer to this question myself, and so far google has only led to this thread where you're telling them to stop talking about the issue. So unhelpful. -
Foolproof way of forcing ai man to fire specified mag from underbarrel launcher.
flyingsaucerinvasion replied to flyingsaucerinvasion's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Can you do all that instantly? in other words all commands in sequence with no delay between them? Also, keep in mind I'm shooting at a position, not at an object. So if dotarget is required, it's no good. -
Foolproof way of forcing ai man to fire specified mag from underbarrel launcher.
flyingsaucerinvasion posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
1: Is there a foolproof way of forcing an AI man to fire a specified mag (in this case a smoke round) from his underbarrel grenade launcher? Preferably, he should fire immediately. By foolproof, I mean that if he has the mag and the weapon, he will definitely fire (the mag and weapon), and without hesitation. 2: Is there a way to make him fire it at a specific position without the use of invisible targets? (I'm currently just setting the velocity of the projectile to get it to go where I desire. But that's pretty hacky). 3: Is there a way to automatically determine if an ai man has a weapon which can fire a certain mag. And to do all of the above using the identified weapon and the appropriate muzzle. -
AI Infantry MG low rate of fire.
flyingsaucerinvasion replied to flyingsaucerinvasion's topic in ARMA 3 - GENERAL
By the way, the issue has nothing to do with performance. It will happen even if it's just you and 1 ai MGer on the map shooting at you. If they are farther away than about 100 meters, their rate of fire drops to a ridiculous 1 shot every .2 seconds. -
Community Upgrade Project - CUP
flyingsaucerinvasion replied to CUP's topic in ARMA 3 - ADDONS & MODS: COMPLETE
What do you need to give ai for them to be able to use disposable launchers? Does it take up space in their inventory? -
Has anybody ever found a solution to this problem? AI Infantry (not vehicle) machine gunners shoot at a very low rate of fire (about 1 shot every 0.2 seconds). It frankly sounds nothing like real machine gun fire. Even if we can't get them to actually fire bullets faster, we at least need to find a way for the audio to sound like they are.
-
Invisible targets.
flyingsaucerinvasion replied to flyingsaucerinvasion's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I think I've got it more or less working now with cba invisible targets. I believe I was making two mistakes. 1) The invisible target needs to be invulnerable, or else guys shooting at it will destroy it (and they'll stop shooting). 2) The helper object I was using to see where the invisible object was going, was apparently occluding the AI's view of the invisible target. -
soundshader, soundset, frequency based on distance
flyingsaucerinvasion posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Is it possible to adjust the frequency of a soundshader or soundset, based on the distance between the sound source and the listener?