function heading differs from prototype - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: function heading differs from prototype (
/showthread.php?tid=586597)
function heading differs from prototype -
thaKing - 23.08.2015
Error:
PHP код:
dwrp_mode.pwn(393) : error 025: function heading differs from prototype
Callback:
PHP код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassanger)// LINE 393
{
if (License_Car[vehicleid]) {
SetVehicleParamsForPlayer(vehicleid, playerid, 0, 1);
}
return 1;
}
Re: function heading differs from prototype -
JeaSon - 23.08.2015
its
PHP код:
OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
not ispassanger
Re: function heading differs from prototype -
thaKing - 23.08.2015
Quote:
Originally Posted by JeaSon
its
PHP код:
OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
not ispassanger
|
Oh, thanks.