06.01.2011, 01:58
Good grief.
if it is a function you have defined, find the forward, and make sure the parameters in the forward match the parameters in the function.
eg
...will give this kind of error ( to fix it change string to string[] in the public function )
if the function is a native function, find it in your includes, and make sure the parameter labels are the same similar to how I described above.
also: make sure you have not forwarded a function which is already forwarded in an include.
also: check the wiki to see if your script uses some of the functions that have been changed for 0.3c
https://sampwiki.blast.hk/wiki/Category:Added_in_0.3c
maybe also check this thread for functions that have been changed
https://sampforum.blast.hk/showthread.php?tid=194031
good luck
if it is a function you have defined, find the forward, and make sure the parameters in the forward match the parameters in the function.
eg
pawn Код:
forward ThisMyFunction(playerid, string[]);
...
public ThisMyFunction(playerid, string)
{
...
}
if the function is a native function, find it in your includes, and make sure the parameter labels are the same similar to how I described above.
also: make sure you have not forwarded a function which is already forwarded in an include.
also: check the wiki to see if your script uses some of the functions that have been changed for 0.3c
https://sampwiki.blast.hk/wiki/Category:Added_in_0.3c
maybe also check this thread for functions that have been changed
https://sampforum.blast.hk/showthread.php?tid=194031
good luck