16.09.2009, 09:57
pawn Код:
public OnPlayerStateChange( playerid, newstate, oldstate )
{
if ( newstate == PLAYER_STATE_DRIVER ) TogglePlayerControllable( playerid, false );
return 1;
}
//wherever you want to start it, say a keypress or a command
TogglePlayerControllable( playerid, true );
Ofcourse this may conflict somewhere due to commands and features I don't know about (your script) but a quick fix could be made I'm sure.

