PtokaX forum

Archive => Archived 4.0 boards => Request for Lua 4 scripts => Topic started by: MetalPriest on 27 April, 2004, 09:47:25

Title: Need a RIIA Blocker or something !!!
Post by: MetalPriest on 27 April, 2004, 09:47:25
Can someone write a bot who block DC hub scanners from RIAA etc...

I pray for it ...PLEASE

MetalPriest
Title:
Post by: Pedro on 27 April, 2004, 10:26:24
Have you tried to use the search facility on the forum there are a few scripts out there that already does what you want.

You could use Snowmans Mean Machine which already has Peerguardian written into it.

But if you want a standalone and you are the hub host you could download Peerguardian Pr14 (http://methlabs.org) do not download the update Pr14-2 as there is a bug in it and will max  your CPU


Have fun
Title:
Post by: DEEP-GOA on 27 April, 2004, 14:07:56
actually we work with protowall (http://bluetack.co.uk/pw.html)  & blocklist manager (http://bluetack.co.uk/blm.html)
cyaaa
Title:
Post by: MetalPriest on 27 April, 2004, 17:50:23
Thanks DEEP-GOA...

I try this stuff now..
Title:
Post by: Pedro on 27 April, 2004, 21:11:24
yep, protowall is good aswell
as per usual I expressed my personal favourite..
Title:
Post by: dvxjunkie on 16 May, 2004, 05:46:26
-- this will keep mediaforce bots out and report thier info to main

forbiddenWords = {"1.0.25"}
botName = "PeerProtector"
function Main()
frmHub:RegBot(botname)
end
function NewUserConnected(curUser)
for key,checkWord in forbiddenWords do
if strfind(curUser.iVersion, checkWord, 1, 1) then
SendToAll (curUser.sName.." a Mediaforce user or possibly someone using the same special client was prevented from entering the hub. ip was "..curUser.sIP)

curUser:Ban()
end
end
end