Quote:
Originally Posted by Unknown123
Somethin like:
pawn Код:
new AdminCar[5];
//Under OnGameModeInit AdminCar[0] = AddStaticVehicleEx(...); AdminCar[1] = AddStaticVehicleEx(...); AdminCar[2] = AddStaticVehicleEx(...); AdminCar[3] = AddStaticVehicleEx(...); AdminCar[4] = AddStaticVehicleEx(...);
//..... public OnPlayerStateChange(playerid, newstate, oldstate) { if(newstate == PLAYER_STATE_DRIVER && AdminCar[4]) { if(IsPlayerLuxAdmin(playerid, 1)) //Change it to what you want { SendClientMessage(playerid, 0xFF0000FF, "This vehicle is for admins ONLY!"); return 1; } else return 1; } return 1; }
|
This will stop the player from entering a vehicle IF HE IS AN ADMIN. Use something like :
pawn Код:
if(!IsPlayerLuxAdmin(playerid, 1))
I added a "!" which tells you it's negative.