Scripting/Squirrel/Functions/Player.UniqueID

From Vice City Multiplayer
Revision as of 04:20, 4 March 2015 by Vcmptr (talk | contribs) (Created page with "This will return player Unique ID. == Syntax == <pre>player.UniqueID</pre> == Example == <source lang=squirrel> function onPlayerJoin( player ) { ClientMessage( "pm >>...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
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

Call onPlayerJoin were used in this example. More info about them in the corresponding pages.