Player::serial: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "This property returns players serial. '''Note: this property is read-only.''' == Example == {{ServersideCode| <pre> let playerSerial = player.serial; player.outputChatBox("Yo...")
 
m (category)
Line 2: Line 2:


'''Note: this property is read-only.'''
'''Note: this property is read-only.'''
== Example ==
== Example ==
{{ServersideCode|
{{ServersideCode|
Line 9: Line 10:
</pre>
</pre>
}}
}}
==See Also==
==See Also==
{{Player_block}}
{{Player_block}}
[[Category:Player]]
[[Category:Server-side Property]]

Revision as of 12:58, 30 April 2019

This property returns players serial.

Note: this property is read-only.

Example

Server-Side
let playerSerial = player.serial;
player.outputChatBox("Your Serial is: " + playerSerial);

See Also