adds jail check to sync command
This commit is contained in:
parent
cbee6e0ab9
commit
f835bca30e
@ -553,6 +553,9 @@ CMD:sync( playerid, params[ ] )
|
|||||||
if ( ! IsPlayerConnected( playerid ) || ! IsPlayerSpawned( playerid ) || p_SyncingPlayer{ playerid } == true || IsPlayerAFK( playerid ) )
|
if ( ! IsPlayerConnected( playerid ) || ! IsPlayerSpawned( playerid ) || p_SyncingPlayer{ playerid } == true || IsPlayerAFK( playerid ) )
|
||||||
return SendError( playerid, "You cannot use this feature at the moment." );
|
return SendError( playerid, "You cannot use this feature at the moment." );
|
||||||
|
|
||||||
|
if ( p_Jailed{ playerid } )
|
||||||
|
return SendError( playerid, "You cannot use this feature while you are jailed." );
|
||||||
|
|
||||||
if ( IsPlayerInAnyVehicle( playerid ) )
|
if ( IsPlayerInAnyVehicle( playerid ) )
|
||||||
return SendError( playerid, "You cannot synchronize yourself in a vehicle." );
|
return SendError( playerid, "You cannot synchronize yourself in a vehicle." );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user