note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
ForceClassSelection
Description
Forces a player to go back to class selection.
Name | Description |
---|---|
playerid | The 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
warning
This function does not perform a state change to PLAYER_STATE_WASTED
when combined with TogglePlayerSpectating (see example above), as is listed here.
Related Functions
- AddPlayerClass: Add a class.
- SetPlayerSkin: Set a player's skin.
- GetPlayerSkin: Get a player's current skin.
Related Callbacks
- OnPlayerRequestClass: Called when a player changes class at class selection.