03.07.2014, 01:57
PHP код:
CMD:report(playerid,params[])
{
new id,motivo[100];
if(!sscanf(params,"ds[100]",id,motivo))
{
if(id < 0 || id > GetMaxPlayers()) return false;
new str[256];//desculpe o exageiro hehehe
for(new i ; i < GetMaxPlayers(); i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
format(str,sizeof(str),"O id %d reportou o id %d por %s",playerid,id,motivo);
SendClientMessage(i,-1,str);
return 1;//se der algo errado remova o return .
}
}
}
return 1;
}
Desculpe ai se alguem achar que nгo й a melhor maneira de loop hehehe