15.07.2014, 20:30
Exemplo:
Se der esse erro й porque o comando ainda estб usando strtok.
pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, l_red, "Use: /anuncio texto");
format(string, sizeof string, "%s", tmp);
SendClientMessageToAll(-1, string);
return 1;
}
pawn Код:
CMD:anuncio(playerid, params[])
{
new string[129], msg[129];
if(sscanf(params, "s[128]", msg));
{
SendClientMessage(playerid, -1, "Use: /anuncio texto");
return 1;
}
format(string, sizeof string, "%s", msg);
SendClientMessageToAll(-1, string);
return 1;
}