im Looking for Anti-IP - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: im Looking for Anti-IP (
/showthread.php?tid=168156)
im Looking for Anti-IP -
extreme-rp - 15.08.2010
hey Guys i Looking for a Anti-IP For Only RP Server I Will Give You A Ex: /OOC Go to **.***.**.***:7777
And When The Player Wright That he Get Banned From Server , But i Want it on /OOC , /PM And IC Chat
Thanks
Re: im Looking for Anti-IP -
Retardedwolf - 15.08.2010
Junkbuster has one. Check it out.
Re: im Looking for Anti-IP -
BP13 - 15.08.2010
pawn Код:
public OnPlayerText(playerid, text[])
{
new dotcount;
for(new s, l = strlen(text); s < l; s++)
{
if (text[s] == ':' && dotcount == 3) return 0;
if (text[s] == '.' && dotcount < 3) dotcount++;
}
return 1;
}
Re: im Looking for Anti-IP -
cessil - 15.08.2010
I suggest use SendPlayerMessageToPlayer(playerid,playerid,"messa ge"); and then return 0;
so then they think they've sent it and they don't try doing a work around it
Re: im Looking for Anti-IP -
extreme-rp - 15.08.2010
ok Thanks Everyone