Scripting/Squirrel/Functions/Player.UniqueID: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary
No edit summary
Line 12: Line 12:
}
}
</source>
</source>
=== Notes ===
== Notes ==


Function [[ClientMessage]] and call [[onPlayerJoin]] were used in this example. More info about them in the corresponding pages.
Function [[Scripting/Squirrel/Functions/ClientMessage|ClientMessage]] and call [[onPlayerJoin]] were used in this example. More info about them in the corresponding pages.


== Related Functions ==
== Related Functions ==


{{Scripting/Squirrel/Functions/Player Functions}}
{{Scripting/Squirrel/Functions/Player Functions}}

Revision as of 22:01, 5 March 2015

This will return player Unique ID.

Syntax

string player.UniqueID

Example

function onPlayerJoin( player )
{
     ClientMessage( "pm >> Your Unique ID: " + player.UniqueID, player, 0, 255, 0 );
}

Notes

Function ClientMessage and call onPlayerJoin were used in this example. More info about them in the corresponding pages.

Related Functions

Player Game Functions

These functions exist for compatibility with the R2 Squirrel server.