17.02.2019, 20:46
Right now im using this code
If the player is not VIP he will not be able to enter hydra.
It doesn't seem to do anything though.
Code:
public OnPlayerEnterVehicle(playerid, vehicleid) { if(vehicleid == 520 && User[playerid][accountVIP] == 0)) { RemovePlayerFromVehicle(playerid); SendClientMessage(playerid, -1, "I'm sorry, but this car has been reserved for Admins only!"); } return 1; }
It doesn't seem to do anything though.