Hacker Killing Himself/Fake Kill
#1

hi, can i got anti kill for s0biet ?

the hacker used s0biet hack fake kill and i just created new fs after onplayerdeath they got coins.

Reply
#2

if (playerid==killerid) kick(playerid) or ban.

Under Onplayerdeath
Reply
#3

nice, how to detect player using sobiet Fake Kill Hack ? killing anoter player
Reply
#4

I would get the FuckCleo.inc

Then
pawn Код:
public OnPlayerCleoDetected(playerid, cleoid)
{
    switch(cleoid)
    {
        case CLEO_FAKEKILL:
        {
            new string[128]; format(string, sizeof(string), "%s Has Been Banned by Lorenc_'s FUCKCLEO.inc for Fake kill", (playername stock);
            SendClientMessageToAll( 0xFF0000FF, string);
            SendClientMessage(playerid,  0xFF0000FF, "You have been banned for Fake Kill");
     
        }
Reply
#5

Quote:
Originally Posted by dannyk0ed
Посмотреть сообщение
I would get the FuckCleo.inc

Then
pawn Код:
public OnPlayerCleoDetected(playerid, cleoid)
{
    switch(cleoid)
    {
        case CLEO_FAKEKILL:
        {
            new string[128]; format(string, sizeof(string), "%s Has Been Banned by Lorenc_'s FUCKCLEO.inc for Fake kill", (playername stock);
            SendClientMessageToAll( 0xFF0000FF, string);
            SendClientMessage(playerid,  0xFF0000FF, "You have been banned for Fake Kill");
     
        }
fuckcleo.inc was deleted.
Reply
#6

I guess you should make a new variable, name it whatever you want, for example I'd name it SuicideAttempts.
so
pawn Код:
new SuicideAttempts[MAX_PLAYERS];
public OnPlayerDeath(playerid, killerid, reason)
{
    if(killerid == playerid)
    {
        SuicideAttempts[playerid]++;
    }
    return 1;
}
//then under the onplayerupdate callback check if he has 3 suicide attempts at hand ( if(suicideattempts[playerid] >= 3) ), If it is, kick/ban him. hopefull this will help
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)