pawn Код:
if(strcmp(cmd,"/reportar",true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid,COR_AMARELO,"Use corretamente: /reportar");
return 1;
}
new outrofudido;
outrofudido = strval(tmp);
if(!IsPlayerConnected(outrofudido)) return SendClientMessage(playerid,COR_AMARELO,"Player Inativo.");
new willian[MAX_PLAYER_NAME];
GetPlayerName(playerid, willian, sizeof(willian));
{
SendClientMessage(playerid,COR_AMARELO,"Vocк enviou um report para os admins online.");
}
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
new string[128];
format(string, sizeof(string), "-> Report de: %s contra o id[%d] Motivo do report: %s ",nome,outrofudido,result); //sendo esta a linha do erro
for(new i;i<MAX_PLAYERS;i++)
{
if(pInfo[playerid][AdminLevel] >= 1)
{
SendClientMessage(i,-1,string);
return 1;
}
}
}
}
Peguei esse cуdigo de um post qeu eu vi quando andava a procurar jб tentei arrumar mas continua com o erro.