[HELP]How to fix this error - 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: [HELP]How to fix this error (
/showthread.php?tid=358652)
[HELP]How to fix this error -
luis_mendoza - 11.07.2012
How can i fix this error
G_ObjectsRot.inc(91) : error 004: function "OnObjectRotated" is not implemented
I just put this include,cause I need that include for my script.But this happens to me first time.How to fix that ?
.
Re: [HELP]How to fix this error -
clarencecuzz - 11.07.2012
Just add
pawn Код:
public OnObjectRotated(ADD WHATEVER IS REQUIRED HERE) //public OnObjectRotated(objectid)
{
return 1;
}
Change 'ADD WHATEVER IS REQUIRED HERE' to whatever you need to make it fit and match the definition.
Re: [HELP]How to fix this error -
Abhi - 11.07.2012
that include has the problem :S try getting a new version of the include or you need to fix the include like a script
Re: [HELP]How to fix this error -
luis_mendoza - 11.07.2012
Ty for help.It works.