21.10.2012, 09:02
Hi, i want help about this code, i want the vehicle to be available to drive only for the OWNER OF VEHICLE and None else can Enter and Drive it as a Driver.however they can enter as a Passenger.
PHP код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
if(!ispassenger)
{
new id = GetVehicleID(vehicleid);
if(IsValidVehicle(id) && VehicleCreated[id] == VEHICLE_PLAYER)
{
new msg[128];
format(msg, sizeof(msg), "[ ! ] This vehicle belongs to %s", VehicleOwner[id]);
SendClientMessage(playerid, COLOR_GREY, msg);
}
}
return 1;
}