i dont see the kick or banned messages why?
#2

do a delay between the Message and the Kick:

pawn Код:
forward KickPublic(playerid);
public KickPublic(playerid) { Kick(playerid); }
 
stock KickWithMessage(playerid, color, message[])
{
    SendClientMessage(playerid, color, message);
    SetTimerEx("KickPublic", 1000, 0, "d", playerid);   //Delay of 1 second before kicking the player so he recieves the message
}
 
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/kickme", true) == 0)
    {
        //Kicks the player who the executed this command
        KickWithMessage(playerid, 0xFF0000FF, "You have been kicked.");
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
i dont see the kick or banned messages why? - by xF4Life - 26.05.2013, 23:16
Re: i dont see the kick or banned messages why? - by S0n1COwnsYou - 26.05.2013, 23:52
Re: i dont see the kick or banned messages why? - by xF4Life - 27.05.2013, 00:01
Re: i dont see the kick or banned messages why? - by Deathlane - 27.05.2013, 00:33
Re: i dont see the kick or banned messages why? - by xF4Life - 27.05.2013, 01:07

Forum Jump:


Users browsing this thread: 1 Guest(s)