SA-MP Forums Archive
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: Error (/showthread.php?tid=605003)



Error - iCurse - 13.04.2016

PHP код:
\\PC-\Users\Internet Cafe\Desktop\SAVE HERE\MGRP\gamemodes\MGRP.pwn(312) : error 001expected token";"but found "-identifier-" 
PHP код:
CMD:shout(playeridparams[])
{
    new
        
str[128],
        
shout[128]
    ;
    
    if(
sscanf(params"s[100]"shout))
        return 
SendClientMessage(playerid, -1"USAGE: /(s)hout [message]")
        
    
format(strsizeof(str), "%s shouts: %s!"GetName(playerid), shout);  // LINE 312
    
ProxDetector(50.0playeridstr, -1);
    return 
1;




Re: Error - Godey - 13.04.2016

Learn to read the errors:
This error means that a ';' is missing
Код:
return SendClientMessage(playerid, -1, "USAGE: /(s)hout [message]"); // you missed the ';' here