23.10.2011, 18:28
Pessoal, estou com um Problema no /Say, Tipo Quando digita ''/Say Oi Tudo Bem?'' dai sai no Chat sу o ''Oi''...
Se alguйm puder me ajudar...
Se alguйm puder me ajudar...
pawn Код:
if(strcmp(cmd, "/say", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new tmp[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, 0xFFFFE0AA, "Uso: /say [texto]");
return 1;
}
else
{
if(IsPlayerConnected(playerid))
{
new nome[MAX_PLAYER_NAME], str[128];
GetPlayerName(playerid, nome, sizeof(nome));
format(str, sizeof(str), "* Admin %s: %s", nome, tmp);
SendClientMessageToAll(0x2587CEAA, str);
}
return 1;
}
}
}