ForceClassSelection
Description:
Function ForceClassSelection forces a player to go back to class selection.
|
Parameters:
(playerid)
int | playerid | The player to send back to class selection. |
Return Values:
- 1: The function was executed successfully.
- 0: The function failed to execute. This means the player specified does not exist.
Examples:
if(!strcmp(cmdtext, "/class", true)) { ForceClassSelection(playerid); TogglePlayerSpectating(playerid, true); TogglePlayerSpectating(playerid, false); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- AddPlayerClass: Add a class.
- SetPlayerSkin: Set a player's skin.
- GetPlayerSkin: Get a player's current skin.
Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.
- OnPlayerRequestClass: Called when a player changes class at class selection.