12.02.2011, 04:53
Any way to make admin cars so only admins car enter the admin cars
#include <ladmin> IsPlayerLuxAdmin(playerid); or IsPlayerLuxAdmin(playerid, level);
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;
}
Somethin like:
pawn Код:
|
if(!IsPlayerLuxAdmin(playerid, 1))
This will stop the player from entering a vehicle IF HE IS AN ADMIN. Use something like :
pawn Код:
|