SA-MP Forums Archive
error 030 - 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 030 (/showthread.php?tid=503691)



error 030 - CallumIsDaBeast - 30.03.2014

Error:
Quote:

C:\Users\Gamer\Desktop\Millenium RP\gamemodes\Millenium.pwn(1849) : error 030: compound statement not closed at the end of file (started at line 1840)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.

Code:
Quote:

CMD:mole(playerid, params[])
{
new string[128], text;
if(PlayerInfo[playerid][pAdmin] < 3)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Syntax: /mole [MESSAGE]");
SendClientMessageToAll(COLOR_YELLOW,"Server:");
format(string, sizeof(string), "", text);
SendClientMessageToAll(COLOR_YELLOW, string);
return 1;
}




Re: error 030 - ScripteRMKD - 30.03.2014

pawn Код:
CMD:mole(playerid, params[])
{
     new string[128], text;
     if(PlayerInfo[playerid][pAdmin] < 3)
     {
        SendClientMessage(playerid, COLOR_LIGHTBLUE,"Syntax: /mole [MESSAGE]");
        SendClientMessageToAll(COLOR_YELLOW,"Server:");
        format(string, sizeof(string), "", text);
        SendClientMessageToAll(COLOR_YELLOW, string);
        return 1;
     }
}