Quote:
Originally Posted by ♣ ⓐⓢⓢ
these are standart forwards, should be in a_samp.inc
Quote:
Originally Posted by a_samp.inc
forward OnVehicleMod(playerid, vehicleid, componentid);
forward OnVehiclePaintjob(playerid, vehicleid, paintjobid);
forward OnVehicleRespray(playerid, vehicleid, color1, color2);
|
and how the three errors say, the heading is different from the protoype (forward)
pawn Код:
public OnVehicleMod(playerid, vehicleid, componentid) { SaveComponent(vehicleid, componentid); }
public OnVehiclePaintjob(playerid, vehicleid, paintjobid) { SavePaintjob(vehicleid, paintjobid); }
public OnVehicleRespray(playerid, vehicleid, color1, color2) { SaveColors(vehicleid, color1, color2); }
|
Yes they are, make sure u have #include <a_samp> otherwise, i don't know.. they are correct, also, please post the EXACT lines of errors, it might be the SaveComponent.
EDIT: it's working on mine .. (without the SaveCompnent stuff, are they the lines that are errors?)