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.

Simple questions regarding channels and showing users with..

General support and discussion of Eggdrop bots.
Post Reply
d
destroyer
Voice
Posts: 2
Joined: Fri Aug 08, 2008 8:02 am

Simple questions regarding channels and showing users with..

Post by destroyer »

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)

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?

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?

Thanks in advance
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Re: Simple questions regarding channels and showing users wi

Post by nml375 »

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"
}
NML_375
d
destroyer
Voice
Posts: 2
Joined: Fri Aug 08, 2008 8:02 am

Post by destroyer »

Thank you!
Post Reply