|
C:\Users\luiz\Desktop\GM SAMP\gamemodes\GM.pwn(83) : error 029: invalid expression, assumed zero C:\Users\luiz\Desktop\GM SAMP\gamemodes\GM.pwn(83) : error 017: undefined symbol "cmd_anunciar" C:\Users\luiz\Desktop\GM SAMP\gamemodes\GM.pwn(83) : error 029: invalid expression, assumed zero C:\Users\luiz\Desktop\GM SAMP\gamemodes\GM.pwn(83) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors. |
|
{ CMD:anunciar(playerid, params[]) { new anuncio[128], formato[128]; if(sscanf(params, "s[128]", anuncio)) return SendClientMessage(playerid, vermelho, "Uso corrreto: /anunciar [TEXTO]"); format(formato, sizeof(formato), "Anuncio: %s", anuncio) SendClientMessageToAll(azul, formato); return 1; } return 0; } |
{
CMD:anunciar(playerid, params[])
{
new anuncio[128], formato[128];
if(sscanf(params, "s[128]", anuncio)) return SendClientMessage(playerid, vermelho, "Uso corrreto: /anunciar [TEXTO]");
format(formato, sizeof(formato), "Anuncio: %s", anuncio)
SendClientMessageToAll(azul, formato);
return 1;
}
return 0;
}