Перейти к содержанию

Player::rgscId

Материал из RAGE MP Wiki Archive
Версия от 12:24, 9 декабря 2019; imported>Unknown
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This property returns the player's Social club ID.

Note: this property is read-only.

Getter

  • string The player's Social club ID.

Example

Server-Side
mp.events.addCommand('scID', (player) => {
 let socialID = player.rgscId;
 player.outputChatBox("Your Social club ID is: " + socialID);
});


See Also