How can i stop this spamming
#2

Ban them? You just send a message, you don't actually ban them.

Also, omit parachutes from checks as they can get them from aircraft:

if(weap > 0 && Weapon[i][weap] == false)

->

if(weap > 0 && weap != WEAPON_PARACHUTE && Weapon[i][weap] == false)

Also you should change

if(GetPlayerState(i) == 1 || GetPlayerState(i) == 2 || GetPlayerState(i) == 3) {

to

if(GetPlayerState(i) >= 1|| GetPlayerState(i) <= 3)
{

A. Move the bracket down to keep your code clean
B. Saved one check
Reply


Messages In This Thread
How can i stop this spamming - by Scripter12345 - 23.04.2012, 00:53
Re: How can i stop this spamming - by MP2 - 23.04.2012, 01:10
Re: How can i stop this spamming - by Redirect Left - 23.04.2012, 01:12
Re: How can i stop this spamming - by Scripter12345 - 23.04.2012, 01:13
Re: How can i stop this spamming - by Crazymax - 23.04.2012, 01:13
Re: How can i stop this spamming - by Kar - 23.04.2012, 01:14
Re: How can i stop this spamming - by MP2 - 23.04.2012, 01:14
Re: How can i stop this spamming - by Scripter12345 - 23.04.2012, 01:17
Re: How can i stop this spamming - by Kar - 23.04.2012, 01:18
Re: How can i stop this spamming - by MP2 - 23.04.2012, 01:24

Forum Jump:


Users browsing this thread: 1 Guest(s)