hello
can anyone tell me how can i make that the script dont check Op's ?
here is the scirpt:
BotName = "CloneBot"
OpChatName = "CloneBot"
function Main()
frmHub:EnableFullData(1)
frmHub:RegBot(BotName)
end
function DataArrival(curUser,sdata)
local _,_, user1 = strfind(sdata,"$GetINFO%s+(%S+)%s+")
if user1 ~= curUser.sName then
user1 = GetItemByName(user1)
if user1 ~= nil then
if user1.sIP == curUser.sIP then
SendPmToOps(OpChatName, "Cloned user = "..curUser.sName.." logged in and Disconnected, User is a clone of = "..user1.sName)
curUser:SendData(" Double Log-In not allowed here.. already a user connected in this Nick: "..user1.sName)
curUser:SendData(" Your IP: "..user1.sIP)
curUser:SendData(" Disconnecting you now! and Timeban 15 Min.!")
curUser:Disconnect()
curUser:TimeBan(15)
end
end
end
end
Thank you
cheers
soory for my bad english :)
its workkkkk 8)
thank you :D
cheers
is it possible to make it like if an operator is connected to the hub but also wants to connect as an normal user that it will not disconnect him.?
hi
since it dont cheack ops , ops can login as normal users , it only cheacks vips/reg/ and normal users
which a vip cant login as a normal user when log in as a vip
yours
shad
ok but its not like that with masters or netfounders then?
Hi,
I want to put in my own IP's who's not gonna be checked.
Can someone do this for me, please?
Need leattle help !!!
Can someone change this script to send message
to me not to all operators in op chat...
It is a little anoying to other OPs...
Thanks
Change this line
SendPmToOps(OpChatName, "Cloned user = "..curUser.sName.." logged in and Disconnected, User is a clone of = "..user1.sName)
into
SendToNick("yournick", "Cloned user = "..curUser.sName.." logged in and Disconnected, User is a clone of = "..user1.sName)
and replace yournick in whatever the nick who will recieve this message
Sorry for my bad english :)