I would like if someone in a channel! Invite writes that the bot him in #chan1 #chan2 and #chan3 invitete.
!invite
eggdrop invitet user in the channels.
Have something times but I had lost Forum Search and Google search took me only to be piling script with extra things that I do not need.
set channels_to_inv "#chan1 #chan2 #chan3"
bin pub - !invite do_simple_invite
proc do_simple_invite {nick host hand chan text} {
foreach {c} [split $::channels_to_inv] {
putserv "INVITE $nick $c"
}
}
This will invite everyone that type !invite in any of your channels to invite them to all the channels listed in channels_to_inv. Not recomended but you asked for it.