Ugrás a fő tartalomhoz

GetPlayerSkin

Description

Returns the class of the players skin

NameDescription
playeridThe player you want to get the skin from

Returns

The skin id.

0 if invalid.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/myskin", true))
{
new string[32];
new playerSkin = GetPlayerSkin(playerid);

format(string, sizeof(string), "Your skin id: %d", playerSkin);
SendClientMessage(playerid, -1, string);
return 1;
}
return 0;
}

Notes

tanács

Returns the new skin after SetSpawnInfo is called but before the player actually respawns to get the new skin. Returns the old skin if the player was spawned through SpawnPlayer function.