22.09.2014, 11:31
Please ! Help Me To Remove Sobiet From My Server There Is Not Only Sobiet Many Hacking Systems Are Using In My Server Please Tell ME How Could I Revome Or Any FS which CAn remove This
Thanks
Thanks
CMD:******(playerid, params[])
{
new playerb, string[128], weapons[13][2];
if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, "You are not an authorized to use this command.");
// if(!aDuty[playerid]) return SendClientMessage(playerid, COLOR_GREY, "You are not on admin duty.");
if(!strcmp(params, "all", true))
{
format(string, sizeof(string), "{FF0000}[Admin]{FF6347} %s has checked everybody online for ****** hacks.", NORPN(playerid));
SendClientMessageToAll(COLOR_LIGHTRED, string);
foreach(Player, p)
{
for(new i=0; i<13; i++)
{
GetPlayerWeaponData(p, i, weapons[i][0], weapons[i][1]);
if(weapons[i][0] != PlayerInfo[p][pWeapon][i] && weapons[i][0] != PlayerInfo[playerb][pWeapon][i] && weapons[i][1] != 0)
{
format(string, sizeof(string), "{FF0000}[Admin Warn]{FF6347} %s is hacking a %s. (Global ****** check by %s)", NORPN(p), RWN(weapons[i][0]), NORPN(playerid));
SendAdminMessage(COLOR_DARKRED, 1, string);
}
}
}
return 1;
}
if(sscanf(params, "u", playerb)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /****** [playerid/all]");
if(!IsPlayerLoggedIn(playerb)) return SendClientMessage(playerid, COLOR_GREY, "Invalid player id.");
format(string, sizeof(string), "{FF0000}[Admin Warn]{FF6347} %s has checked %s for ****** hacks.", NORPN(playerid), NORPN(playerb));
SendAdminMessage(COLOR_DARKRED, 1, string);
for(new i=0; i<13; i++)
{
GetPlayerWeaponData(playerb, i, weapons[i][0], weapons[i][1]);
if(weapons[i][0] != PlayerInfo[playerb][pWeapon][i])
{
format(string, sizeof(string), "{FF0000}[Admin Warn]{FF6347} %s is hacking a %s. (Specific ****** check by %s)", NORPN(playerb), RWN(weapons[i][0]), NORPN(playerid));
SendAdminMessage(COLOR_DARKRED, 1, string);
}
}
return 1;
}