FindRandomReferenceOfAnyTypeInList - Game

Member of: Game Script

Finds a random reference of any of the types in the list from the given location and within the given radius.

SyntaxEdit

ObjectReference Function FindRandomReferenceOfAnyTypeInList(FormList arBaseObjects, float afX, float afY, float afZ, float afRadius) native global

ParametersEdit

  • arBaseObjects: The list of valid base objects to look for
  • afX: center of the search, X component
  • afY: center of the search, Y component
  • afZ: center of the search, Z component
  • afRadius: Maximum distance from center to look for a reference

Return ValueEdit

A random reference of of any of the types within the radius, none if none was found.

ExamplesEdit

; Find a random gem reference to 0,0,0, limiting the search to 5 units
ObjectReference randomGem = Game.FindRandomReferenceOfAnyTypeInList(GemList, 0.0, 0.0, 0.0, 5.0)

See AlsoEdit