[Include] k_functions.inc
#4

Код:
stock KickAll(playerid)
{
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		Kick(playerid);
	}
	return 1;
}
That is not going to do the job. Change it to something like this:

Код:
stock KickAll()
{
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		Kick(i);
	}
	return 1;
}
Reply


Messages In This Thread
k_functions.inc - by K0P - 07.02.2016, 12:08
Re: k_functions.inc - by SyS - 07.02.2016, 12:13
Re: k_functions.inc - by K0P - 07.02.2016, 12:18
Re: k_functions.inc - by JasperM - 08.02.2016, 19:44
Re: k_functions.inc - by AbyssMorgan - 08.02.2016, 19:59
Re: k_functions.inc - by Vince - 08.02.2016, 20:05
Re: k_functions.inc - by -CaRRoT - 09.02.2016, 03:03
Re: k_functions.inc - by Crayder - 09.02.2016, 03:13
Re: k_functions.inc - by K0P - 09.02.2016, 09:29
Re: k_functions.inc - by Roozevelt - 09.02.2016, 11:24

Forum Jump:


Users browsing this thread: 1 Guest(s)