PtokaX forum

Archive => Archived 5.0 boards => Request for scripts => Topic started by: Jaakko on 15 March, 2005, 09:58:28

Title: Redirect passive users
Post by: Jaakko on 15 March, 2005, 09:58:28
So a script that would redirect passive users except OPs and VIPs would be nice.
Title:
Post by: Pothead on 15 March, 2005, 10:31:53
Robocop can do this.
Title:
Post by: PPK on 15 March, 2005, 10:40:23
This redirect all unregistered not active (passive and socks5) users...
function NewUserConnected(curUser)
    if curUser.iProfile == -1 and curUser.bActive == nil then
        curUser:Redirect(frmHub:GetRedirectAddress(), "<_@o'> Sorry passive users not allowed here.")
    end
end
Title:
Post by: Jaakko on 15 March, 2005, 10:43:00
Thanks PPK  8)