hi. im usig a ptokax 0330 build 15.25 with robocop 9b. i need a script that redirects users that are NOT REGGED to another address. the "registered users only" option is checked in the Advanced Options of the ptokax hub. can this script be done?
Hi,
Here you go...
--## SIMPLE NON-REGGED USERS BOT
--## Requested by lawler
--## Made by nErBoS
sBot = "SNRU-Bot"
sAddy = "redirect.mine.nu" -- HUB Addy to redirect the non regged
function NewUserConnected(user)
if (user.iProfile == -1) then
user:SendData(sBot, "Only for registered users."
user:SendData(sBot, "Redirecting..."
user:SendData("$ForceMove "..sAddy.."|")
end
end
Best regards, nErBoS
great! thx man :]
thankyou, the first script ever that i understand every single part of it :)