Arguments don't match definition - 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: Arguments don't match definition (
/showthread.php?tid=539841)
Arguments don't match definition -
Jigsaw123 - 30.09.2014
Код:
C:\Users\Bella\Desktop\Basic Bone County Roleplay\Server\gamemodes\Limitless.pwn(7941) : warning 202: number of arguments does not match definition
I get this warning on this line:
Код:
FadePlayerScreenToColor(playerid,COLOR_BLACK,6,200);
How can I fix it, anyone know?
Re: Arguments don't match definition -
Eth - 30.09.2014
FadePlayerScreenToColor(playerid, color, speed);
you are doing an extra one..
so it should be
pawn Код:
FadePlayerScreenToColor(playerid,COLOR_BLACK,6);