kick dosen work no reason
#4

You don't get the client messages? Just place this after includes:

pawn Код:
// Fix Kick without client message
new bool:BeingKicked[MAX_PLAYERS];
forward KickPub(playerid);
public KickPub(playerid)
{
    Kick(playerid);
    BeingKicked[playerid] = false;
    return 1;
}

stock _HOOKED_Kick(playerid)
{
    if(BeingKicked[playerid] == true)
        return 0;
    SetTimerEx("KickPub", 1000, false, "i", playerid);
    BeingKicked[playerid] = true;
    return 1;
}

#if defined _ALS_Kick
    #undef Kick
#else
    #define _ALS_Kick
#endif

#define Kick _HOOKED_Kick
Reply


Messages In This Thread
kick dosen work no reason - by Hazko - 15.08.2013, 23:52
Re: kick dosen work no reason - by AzTeCaS - 15.08.2013, 23:54
Re: kick dosen work no reason - by ScRipTeRi - 16.08.2013, 00:08
Re: kick dosen work no reason - by [KHK]Khalid - 16.08.2013, 02:48

Forum Jump:


Users browsing this thread: 2 Guest(s)