Hello.
Sometimes when i use /friskcar, it prints out the plate correctly, but sometimes it does the half of the plate, and then randomly my name behind it.
This is my code:
Sometimes when i use /friskcar, it prints out the plate correctly, but sometimes it does the half of the plate, and then randomly my name behind it.
This is my code:
PHP Code:
COMMAND:friskcar(playerid, params[])
{
new car = GetPlayerNearestVehicle(playerid);
if(GetDistanceFromPlayerToVehicle(playerid, car) > 5.0)
return SendClientError(playerid, "There is no vehicle around you!");
SendClientMSG(playerid, COLOR_WHITE, "[%s]: Plate: (%s) Guns(%d) - Lead(%s/50,000) - Metal(%s/50,000}",GetVehicleName(car),cInfo[car][plate], comps[car][guns], number_format(vehicleLead[car]), number_format(vehicleMetal[car]));
if(CarBombActive[car]) SendClientMSG(playerid, COLOR_RED, " WARNING: Looks like this vehicle has a fused bomb!");
for(new i=0;i<13;i++)
{
if(VehicleWeapon[car][i]) SendClientMSG(playerid, COLOR_WHITE, " Weapon: %s (%d ammo) (Slot: %d)", aWeaponNames[VehicleWeapon[car][i]], VehicleAmmo[car][i], i);
}
format(iStr, sizeof(iStr), "is frisking the %s.", GetVehicleName(car));
Action(playerid, iStr);
return 1;
}