what does this error mean? - 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: what does this error mean? (
/showthread.php?tid=365378)
what does this error mean? -
Armando B - 02.08.2012
Код:
C:\Documents and Settings\Owner\Desktop\Samp Stuff 2\my scripting\The Server\gamemodes\LS_DM.pwn(254) : warning 209: function "OnPlayerCommandText" should return a value
C:\Documents and Settings\Owner\Desktop\Samp Stuff 2\my scripting\The Server\gamemodes\LS_DM.pwn(256) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: what does this error mean? -
SDraw - 02.08.2012
Maybe, you has code like:
PHP код:
public OnPlayerCommandText(playerid,cmdtext[])
{
//commands
}
But you should have:
PHP код:
public OnPlayerCommandText(playerid,cmdtext[])
{
//commands
return 1;
}