跳至主要内容

ForceClassSelection

Description

Forces a player to go back to class selection.

NameDescription
playeridThe player to send back to class selection.

Returns

This function does not return any specific values.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/class", true))
{
ForceClassSelection(playerid);
TogglePlayerSpectating(playerid, true);
TogglePlayerSpectating(playerid, false);
return 1;
}
return 0;
}

Notes

注意

This function does not perform a state change to PLAYER_STATE_WASTED when combined with TogglePlayerSpectating (see example above), as is listed here.