Can someone write a bot who block DC hub scanners from RIAA etc...
I pray for it ...PLEASE
MetalPriest
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
actually we work with protowall (http://bluetack.co.uk/pw.html) & blocklist manager (http://bluetack.co.uk/blm.html)
cyaaa
Thanks DEEP-GOA...
I try this stuff now..
yep, protowall is good aswell
as per usual I expressed my personal favourite..
-- 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