01.09.2009, 23:59
I'm not sure what you mean by the string bit since they are all strings. However this should be a fix.
We use %s as %d defines it as an integer value and not a string.
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
if (IsAnOwnedCar(vehicleid) && !ispassenger)
{
format(lvehicle, sizeof(lvehicle), "Owner : %s", CARSHOP[vehicleid][Owner]); // BUGGED
SendClientMessage(playerid,0xAFAFAFAA,lvehicle);
}
return 1;
}

