[FilterScript] Anti Ad filterscript
#1

Hello guys today i made a fast and easy Ad system like if some one puts an ip example /o Join today 127.0.0.1 it kicks them....so if you like press the rep butten also need a scripter? skype = dylan.shetler


Thanks! i hope you like this and enjoy.
Reply
#2

Nice copying a filterscript?

Code:
//Please do not remove the credit!  Or I will cry :( 
#include <a_samp>

new strR[255];

#define FILTERSCRIPT
#define VERSION "1.0"

public OnFilterScriptInit()
{
	print("<<-------------------------------->>");
	print("        Anti-advertisment          ");
	print("      Special Made By Dylan Green  ");
	print("         By: Dylan        ");
	print("-----------------------------------\n");
	return 1;
}

public OnPlayerText(playerid, text[])
{
	new is1=0;
 	new r=0;
 	while(strlen(text[is1]))
 	{
  	if('0'<=text[is1]<='9')
  	{
 	new is2=is1+1;
  	new p=0;
   	while(p==0)
  	{
   	if('0'<=text[is2]<='9'&&strlen(text[is2])) is2++;
 	else
  	{
   	strmid(strR[r],text,is1,is2,255);
   	if(strval(strR[r])<255) r++;
    is1=is2;
    p=1;
    }
    }
    }
    is1++;
 	}
 	if(r>=4)
 	{
  	new strMy[255];
   	new STRname[255];
   	GetPlayerName(playerid,STRname,255);
  	format(strMy, sizeof(strMy), " Suspicion advertising %s(%d): %s",STRname,playerid,text);
  	for(new j1=0; j1 < MAX_PLAYERS;j1++)
   	if(IsPlayerAdmin(j1)) SendClientMessage(j1, 0xFF0000FF, strMy);
  	for(new z=0;z<r;z++)
  	{
   	new pr2;
   	while((pr2=strfind(text,strR[z],true))!=-1) for(new i=pr2,j=pr2+strlen(strR[z]);i<j;i++) text[i]='*';
	Kick(playerid);
  	}
 	}
 	return 1;
}
That's exactly what InfinityCOD wrote on his one!!

Please do not remove the credit! Or I will cry
Reply
#3

Reply
#4

This really works? I will try it, looks like it's better that my anti-ad system
Reply
#5

Doesnt work.
Reply
#6

you can create anti advertisme but blocked /b chat or /ochat
Reply
#7

Nice, but don't use define V 1.
Not useful at all.
Reply
#8

Simple and works great!
Reply
#9

Nice fs
Reply
#10

so what happens if I write 192 . 168 . 0 . 1 (space between), or 192/168/0/1, etc....?

They can pass this thing anytime. It's ineffective.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)