21.11.2014, 15:31
Hello!
I want to make, that with Infernus could drive only admins. I tried everything, and its not working... Maybe I'm doing something wrong. Please help me.
This is my code:
I want to make, that with Infernus could drive only admins. I tried everything, and its not working... Maybe I'm doing something wrong. Please help me.
This is my code:
Код HTML:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
new vhid = GetPlayerVehicleID(playerid);
if(vhid == 411 && sInfo[playerid][admin] < 1)
{
SendClientMessage(playerid, -1, "This car is for ADMINS!");
RemovePlayerFromVehicle(playerid);
}
return 1;
}



I'm so stupid... Now its working, but not removing player from car. Thanks a lot!