--Clone Alert 1.0b --by Mutor The Ugly --PM Clone login to Opchat -- -- OpChatName = frmHub:GetOpChatName() --Use this line for inbuilt Px opchat --OpChatName = "opschat" --Use this line for a scripted opchat Bot = "[Sentry]" --Rename to you main Px bot PmOps = "1" --Should Ops be notified 1=yes 0=no function Main() frmHub:EnableFullData(1) end function DataArrival(curUser,sdata) local _,_, user1 = strfind(sdata,"$GetINFO%s+(%S+)%s+") if user1 ~= curUser.sName then Nick = GetItemByName(user1) if Nick ~= nil then if Nick.sIP == curUser.sIP then curUser:SendPM(Bot,"This hub does not allow the use of clones. Hit the bricks, ya leecher!") curUser:Disconnect() SendPmToNick(Nick.sName,Bot,"This hub does not allow the use of clones. Hit the bricks, ya leecher!") user1:Disconnect() -- if PMOps == "1" then -- SendPmToOps(OpChatName, "*** Cloned user = "..curUser.sName.." logged in, Nick is a clone of = "..Nick.sName) -- SendPmToOps(OpChatName, "***"..curUser.sName.." and "..Nick.sName.." have been disconnected") -- end end end end end