FindRandomReferenceOfTypeFromRef - Game

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: Game Script

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

Syntax[edit | edit source]

ObjectReference Function FindRandomReferenceOfTypeFromRef(Form arBaseObject, ObjectReference arCenter, float afRadius) global

Parameters[edit | edit source]

  • arBaseObject: The type of base object to look for
  • arCenter: The reference to use as the center of the search
  • afRadius: Maximum distance from center to look for a reference

Return Value[edit | edit source]

A random reference of that type within the radius, none if none was found.

Examples[edit | edit source]

; Find a random diamond reference near the player, limiting the search to 5 units
ObjectReference randomDiamond = Game.FindRandomReferenceOfTypeFromRef(Diamond, Game.GetPlayer(), 5.0)

See Also[edit | edit source]