This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

channel mode script

Old posts that have not been replied to for several years.
Locked
User avatar
pig
Voice
Posts: 4
Joined: Fri Jul 08, 2005 9:05 am
Location: London

channel mode script

Post by pig »

Hi guys

Dont know if there is one of these scripts out there, iv done abit of a search in the archives and not come across it, if there is something like this that you know of out there please advise.

What im looking for is a script that can set channel modes at specific times.

eg: at 00:00 it sets the channel to +R and at 06:00am it sets the channel to -R

Any help would be most appreciated.

Thanks.
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

well that's two-liner:

Code: Select all

bind time - "00 00 *" {putserv "mode #chan +R";#}
bind time - "00 06 *" {putserv "mode #chan -R";#}
User avatar
pig
Voice
Posts: 4
Joined: Fri Jul 08, 2005 9:05 am
Location: London

Post by pig »

Thanks alot demond works 100% :D
Locked