26.03.2012, 15:26
Boas
Necessitava um comando /unban para seguinte codigo:
Alguem podera ajudar por favor?
Sistema CRP_Scriptfiles
Necessitava um comando /unban para seguinte codigo:
Alguem podera ajudar por favor?
Sistema CRP_Scriptfiles
pawn Код:
if(strcmp(cmd, "/ban", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_LIGHTYELLOW2, "[Comando:] /ban [playerid/ParteDoNome] [Razгo]");
return 1;
}
giveplayerid = ReturnUser(tmp);
if (PlayerInfo[playerid][pAdmin] >= 10)
{
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[128];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_LIGHTYELLOW2, "[Comandos:] /ban [playerid/ParteDoNome] [Razгo]");
return 1;
}
BanPlayerAccount(giveplayerid,GetPlayerNameEx(playerid),(result));
BanPlayer(giveplayerid,GetPlayerNameEx(playerid),(result));
Kick(giveplayerid);
return 1;
}
}
}
else
{
SendClientMessage(playerid, COLOR_LIGHTYELLOW2, "[AVISO:] Invalido ID.");
}
}
return 1;
}