24.07.2012, 20:24
Eae galerinha bem hj eu estava alterando um comando de strcmp para zcmd.. mais ocorreu uns erros...
Os erros ocorrem nas linhas que tem escrito cmdtext, a duvida й seguinte pelo o que devo substituir o cmdtext ?
PHP код:
CMD:f(playerid)
{
if(C[2] == 0 || cmdtext[2] == 32)
{
if(cmdtext[2] != 32 || (cmdtext[3] == 0 && cmdtext[2] == 32)) return SendClientMessage(playerid, COLOR_BRANCO, "Digite: /f [texto]");
new Float:Coord[3];
new NickName[25];
GetPlayerPos(playerid, Coord[0], Coord[1], Coord[2]);
GetPlayerName(playerid, NickName, 25);
format(cmdtext, 128, "{CD00CD}%s fala: %s", NickName, cmdtext[3]);
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
if(!IsPlayerInRangeOfPoint(x, 10.0, Coord[0], Coord[1], Coord[2])) continue;
SendClientMessage(x, 0xFFFFFFAA, cmdtext);
}
return 1;
}
}