SA-MP Forums Archive
kick question - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: kick question (/showthread.php?tid=459556)



kick question - avivelkayam - 23.08.2013

hello i saw that in 0.3x you cant use some action before the function Kick
someone can tell me why the scripters did it? i didnt understand why its helpfull

thanks all


Re: kick question - aLTeR - 23.08.2013

Create timer, that calls kick function later.


Re: kick question - Vanter - 23.08.2013

Yes. use this to kick a player
pawn Код:
//place this on top

//KickPlayer
forward KickPlayer(ID);
public KickPlayer(ID)
{
     Kick(ID);
     return 1;
}

//and this whereever you want to kick..
    SetTimerEx("KickPlayer",1000,false,"i",ID);
This will make it send all client messages and actions before kicking.


Re: kick question - avivelkayam - 23.08.2013

ok ty but my question is not how to do it
my question was why the samp team did it?
i dont see any reason why the team did it.. someone can tell me the reason?


Re: kick question - DrLozer - 23.08.2013

Quote:
Originally Posted by avivelkayam
Посмотреть сообщение
ok ty but my question is not how to do it
my question was why the samp team did it?
i dont see any reason why the team did it.. someone can tell me the reason?
Why don't you pm them in stead of making thread.


Re: kick question - avivelkayam - 23.08.2013

Quote:
Originally Posted by DrLozer
Посмотреть сообщение
Why don't you pm them in stead of making thread.
who are you?
anyway can you answer my question?


Re: kick question - RajatPawar - 24.08.2013

http://forum.sa-mp.com/showpost.php?...61&postcount=4


Re: kick question - avivelkayam - 24.08.2013

Quote:
Originally Posted by Rajat_Pawar
Посмотреть сообщение
thanks man
+REP