OnPlayerStateChange PT
From SA-MP Wiki
Description:
Esta Callback é chamada quando o player muda de Status.
(playerid, newstate, oldstate)
playerid | ID of the player that changed state. |
newstate | Novo Status do Jogador. |
oldstate | Status anterior do jogador. |
Valores de retorno:
Esta callback não lida com retornos.
public OnPlayerStateChange(playerid, newstate, oldstate) { if(oldstate == PLAYER_STATE_ONFOOT && newstate == PLAYER_STATE_DRIVER) // Jogador entrou no veículo como motorista { new vehicleid = GetPlayerVehicleID(playerid); AddVehicleComponent(vehicleid, 1010); // Adiciona NOS ao veículo } return 1; }
Callbacks Relacionadas
As seguintes Callbacks também podem ser úteis, pois estão relacionadas a esta Callback.
- OnPlayerInteriorChange: Called when a player changes interior.
Funções Relacionadas
As seguintes funções podem ser úteis, pois estão relacionadas a esta callback.
- GetPlayerState: Get a player's current state.
- GetPlayerSpecialAction: Get a player's current special action.
- SetPlayerSpecialAction: Set a player's special action.