Car Admin
#1

Any way to make admin cars so only admins car enter the admin cars
Reply
#2

Which adminscript you're using?
Reply
#3

LuxAdmin
Reply
#4

Код:
#include <ladmin>
IsPlayerLuxAdmin(playerid);
or
IsPlayerLuxAdmin(playerid, level);
Reply
#5

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;
}
Reply
#6

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.
Reply
#7

Quote:
Originally Posted by Mean
Посмотреть сообщение
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.
ROFL i know that, but i made this fast so.. i just copyed and pasted the "IsPlayerLuxAdmin(playerid, 1)" from a other post here, LoL

EDIT: I edited my post
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)