PtokaX forum

Archive => Archived 5.0 boards => Finished Scripts => Topic started by: davnis on 21 March, 2005, 22:41:54

Title: ...any scripts that block proxy users ?
Post by: davnis on 21 March, 2005, 22:41:54
Hy there

Can you tell me if exists any script that block users that come from proxy.

thank you
davnis
Title:
Post by: Pothead on 21 March, 2005, 23:50:13
Block Socks5 connections (i think).  There are a few scripts which do this, or you can modify BlackWing's Anti-MLDC script every easily. :)
Title:
Post by: davnis on 22 March, 2005, 00:20:14
easy :( .. but not for me ... this is why I ask for one. I can't do it myself and I don't know if was yet released for lua 5

thank you
davnis
Title: sure
Post by: UwV on 22 March, 2005, 00:49:19
had this one in my "old" ptokaxfolder and "converted" it for ya-- Mode Check : By NightLitch
-- Fixed the nil error
-- Checking if MyInfo is correct, becouse it can be missed in some Build Versions...
-- 2lua5 by uv (4chars) ;0)

BotName = "NoShoesNoService"

function NewUserConnected(curUser)
if curUser.sMyInfoString then
s,e,Mode = string.find(curUser.sMyInfoString,"M:(%u*),")
if Mode == nil then
curUser:SendData(BotName,"You are hidding your TAG..  Buuuh.. ")
curUser:Disconnect()
elseif  Mode == "S" then  
curUser:SendData(BotName,"Your Client Mode ( "..Mode.." ) is not Allowed here,\r\n\t Please change to A(ctive) or P(assive). \r\n\r\n Find your shoes .. no   S(ocks) in here  ;0)\r\n")
curUser:Disconnect()
end
else
curUser:SendData(BotName,"Your MyInfoString is messed up or lost...  \r\n\t Tie them shoes neatly .. please? ;0)")
curUser:Disconnect()
end
end
Title:
Post by: davnis on 22 March, 2005, 01:14:37
UwV, i love you !

}}}}}}}}}}}}}}}{{{{{{{{{{{{{

thank you a lot !
davnis