PtokaX forum

Archive => Archived 5.0 boards => Finished Scripts => Topic started by: -PT-B2S on 21 July, 2005, 15:34:15

Title: [SCRIPT] Redirect by profile
Post by: -PT-B2S on 21 July, 2005, 15:34:15
This script redirect only the profiles you want to an address at youe choice


--## Redirect all but OP's, master, moderator and founder ##--
--## Done by Hahn? (-PT-B2S) / Asked by gOOfus ##--
--## 21-07-2005 ##--
 
-----##### Editable part #####-----
 
iRedirectProfiles = { -- Profiles that will be redirected ( 1=yes / 0=no )
[-1] = 1, -- unreg
[0] = 0, -- master
[1] = 0, -- operator
[2] = 1, -- vip
[3] = 1, -- reg
[4] = 0, -- moderator
[5] = 0, -- founder
}
 
sBot = "name of the bot" -- (with " " )
iRedAddress = "address to redirect" -- (with " " )
iMsgToRed = "message to send to redirected users" -- (with " " )

-----##### End of Editable part #####-----
 
function NewUserConnected(oUser, Data)
if iRedirectProfiles[oUser.iProfile] == 1 then
oUser:SendData(sBot, " "..iMsgToRed.." .")
oUser:Redirect(iRedAddress)
end
end
 
 

Good luck. Report here any errors if it have.

Props