27.05.2012, 08:49
Not unless you use return.
pawn Код:
if(newstate == PLAYER_STATE_DRIVER)
{
SendClientMessage(playerid, -1, "You entered a vehicle.");
return 1;
}
if(newstate == PLAYER_STATE_WHATEVER)
{
// This will never be called because we returned 1 above. This stops the rest of the code from executing.
}