Scripting/Squirrel/Functions/Player.UniqueID
This wiki is using an old backup from 2020
Some information may be old/missing
This will return player Unique ID.
Syntax
player.UniqueID
Example
function onPlayerJoin( player )
{
ClientMessage( "pm >> Your Unique ID: " + player.UniqueID, player, 0, 255, 0 );
}
Notes
onPlayerJoin were used in this example. More info about them in the corresponding pages.