GetPlayersInRange2D

From Onset Developer Wiki
GetPlayersInRange2D

Type: Function
Context: Server
Introduced: v1.0

Description

Gets the players in the specified range of XY in a table. An important function which replaces the use of looping through all players and then checking if they are in the specified range.

Syntax

GetPlayersInRange2D(x, y, range)

Parameters

  • x
    The X axis
  • y
    The Y axis
  • range
    The range in cm

Return Value

  • Returns a table with the player identifiers in range.

Example

for k, v in pairs(GetPlayersInRange2D(x, y, 1000)) do
        AddPlayerChat(v, "HEY YOU ARE IN THE RANGE OF THIS POINT.")
end

See also