I wanna make a script
How can i make my bot do: .chanset #room -autoop
i tryed the following, but this doesnt work
Code: Select all
proc dvb_join { nick uhost hand chan} {
global botnick
if {$nick == $botnick} {
putserv "MODE $chan +o $botnick"
chanset $chan -autoop
}
}