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.

chanset ???

Old posts that have not been replied to for several years.
Locked
N
Newbies

chanset ???

Post by Newbies »

Hi there

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 
   }
}
i'll get the error: Tcl error [dvb_join]: invalid command name "chanset"
N
Newbies

Post by Newbies »

Nevermind
allready got it :D

channel set #channel1 -autoop
Locked