destroyer wrote:Hey guys,
I was wondering: what (different/other) ways are there for botMASTERS to let a bot join a channel? (I know there's +chan)
Apart from the .+chan command, only through scripts that use the "channel add" tcl-command. No other native commands exists however.
destroyer wrote:How can I view all users who have access to the bot from within the party-line? Is there a specific command to do that?
".match * 0 99999" would list the first 100'000 users in your bot (change 0 and 99999 to appropriate boundaries as necessary). You could also use partial masks; ie ".match dest*" , or flags; ie ".match +o". See the built in help for the .match command for more info (.help match)
destroyer wrote:Last but not least, I wanted to ask if it's possible to let a bot put all channels (where he's on) together on a specific mode (+i, +k) and such?
Could do it script-wize.
Code: Select all
foreach chan [channels] {
pushmode $chan +ik "key"
}