GetPlayerLocale

From Onset Developer Wiki
GetPlayerLocale

Type: Function
Context: Server
Introduced: v1.0

Description

Returns the computers localization of a player. For example en_US, de_DE, etc.

Syntax

GetPlayerLocale(player)

Parameters

  • player
    The player identifier.

Return Value

  • Returns a string with the player's localization.

Example

AddEvent("OnPlayerJoin", function(playerid)
	AddPlayerChatToAll("[JOIN] "..GetPlayerName(playerd).." has joined from "..GetPlayerLocale(player))
end)

See also