Player::eyeColor: Difference between revisions

From RAGE Multiplayer Wiki
m (Replaced HTML with template)
mNo edit summary
Line 2: Line 2:
== Syntax ==
== Syntax ==
<pre>
<pre>
player.eyeColor;
Number player.eyeColor;
</pre>
</pre>



Revision as of 12:14, 26 October 2018

Sets/gets the players eye color

Syntax

Number player.eyeColor;

Examples

This lets you set the eye color of your player and will output the value of the players eye color in the chat.

Server-Side
mp.events.addCommand('eyecolor', (player, _, id) => {
    player.eyeColor = parseInt(id);
    player.outputChatBox("Eye Color: " + eColor);
});

See Also