FindRandomReferenceOfType - Game

Member of: Game Script

Finds a random reference of the given type from the given location and within the given radius.

SyntaxEdit

ObjectReference Function FindRandomReferenceOfType(Form arBaseObject, float afX, float afY, float afZ, float afRadius) native global

ParametersEdit

  • arBaseObject: The type of base object 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 that type within the radius, none if none was found.

ExamplesEdit

; Find a random diamond reference to 0,0,0, limiting the search to 5 units
ObjectReference randomDiamond = Game.FindRandomReferenceOfType(Diamond, 0.0, 0.0, 0.0, 5.0)

See AlsoEdit