allMissionObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|s1= +" to "|s1= ")
No edit summary
Line 26: Line 26:
* <tt>"#soundonvehicle"</tt> - sound created with [[say3D]] for example
* <tt>"#soundonvehicle"</tt> - sound created with [[say3D]] for example
* <tt>"#dynamicsound"</tt> - sound source created using [[createSoundSource]]
* <tt>"#dynamicsound"</tt> - sound source created using [[createSoundSource]]
* <tt>"#thunderbolt"</tt> - lightning bolt
* <tt>"EmptyDetector"</tt> - All [[trigger]]s
* <tt>"EmptyDetector"</tt> - All [[trigger]]s
* <tt>"Logic"</tt> - All game logics
* <tt>"Logic"</tt> - All game logics

Revision as of 10:16, 20 June 2021

Hover & click on the images for description

Description

Description:
Returns all mission objects which were created by and during the mission with given type or its subtype. In some cases allMissionObjects. Sometimes allMissionObjects could be replaced by the much faster entities command.

Some of the unusual mission objects that can be detected with this command as well as with nearestObject:
  • "" - returns everything like agents, bees, mosquitoes, foot prints (footstep), armed mines...
  • "all" - more restrictive than "": no ambient insects, just agents like rabbits and snakes, no foot prints, tracks, no armed mines
  • "#slop" - blood drop
  • "#mark" - unit footprints
  • "#track" - vehicle tracks
  • "#crater" - explosion crater on the ground
  • "#crateronvehicle" - bullet marks on vehicle
  • "#explosion" - an explosion
  • "#objectdestructed" - building, tree or bush destruction
  • "#soundonvehicle" - sound created with say3D for example
  • "#dynamicsound" - sound source created using createSoundSource
  • "#thunderbolt" - lightning bolt
  • "EmptyDetector" - All triggers
  • "Logic" - All game logics
This command is quite performance heavy. Use with caution!
Multiplayer:
Arma 3
This command is ~5 times faster on a dedicated server than on a client. Reason unknown.
Groups:
Object Detection

Syntax

Syntax:
allMissionObjects type
Parameters:
type: String
Return Value:
Array of Objects

Examples

Example 1:
_airObjects = allMissionObjects "Air";
Example 2:
{ deleteVehicle _x } forEach (allMissionObjects "");
Example 3:
_allMObjects =allMissionObjects "All";

Additional Information

See also:
allDeadallGroupsallUnitsentitiesvehiclesallMinesallSimpleObjects

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note