Player::socialClub

From RAGE Multiplayer Wiki
Revision as of 10:59, 1 January 2019 by JackSavage (talk | contribs) (Add example)

This property returns players social club name.

Note: this property is read-only.

Example

Show socialClub

Server-Side
mp.events.add('playerJoin', player => {
    console.log(`[SERVER]: SocialClub: ${player.socialClub}`);
});

See Also