bind time -|- {00 00*} activatechannel
bind time -|- {00 10*} deactivatechannel
proc activatechannel {min h d m y} {
channel set #channel -inactive
}
proc deactivatechannel {min h d m y} {
channel set #channel +inactive
}
Could you verify that the binding has been triggered?
(type ".bind time" in dcc-chat as owner, should list both bindings. Please check the "hits"-column for each binding - Should read a number greater than 0).
Also, De Kus' code assumes that channel #channel has already been added to your bot. Make sure it is.. (of course, you'll have to change #channel to whatever the name of your channel is)