29.06.2009, 18:32
Hey guys,
I wanted to use the vehicle streamer and I added some functions.
I've got three errors now.
Can you help me please?
I wanted to use the vehicle streamer and I added some functions.
I've got three errors now.
pawn Код:
C:\Programme\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Simpsons.pwn(821) : error 025: function heading differs from prototype
C:\Programme\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Simpsons.pwn(827) : error 025: function heading differs from prototype
C:\Programme\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Simpsons.pwn(833) : error 025: function heading differs from prototype
pawn Код:
public OnVehicleMod(playerid,vehicleid,componentid)//821
{
tAxI_OnVehicleMod(vehicleid,componentid);
return 1;
}
public OnVehicleRespray(playerid, vehicleid, color1, color2)//827
{
tAxI_OnVehicleRespray(vehicleid,color1,color2);
return 1;
}
public OnVehiclePaintjob(playerid, vehicleid, paintjobid)//833
{
tAxI_OnVehiclePaintjob(vehicleid,paintjobid);
return 1;
}