| View previous topic :: View next topic |
| Author |
Message |
HelloWorld Voice
Joined: 20 May 2008 Posts: 1
|
Posted: Tue May 20, 2008 6:54 am Post subject: Simple invite Script |
|
|
Hi @all
Iam searching for a simple Invite Script.
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.
Hope someone can help me
Sorry for my bad English
Thank you |
|
| Back to top |
|
 |
Papillon Owner

Joined: 15 Feb 2002 Posts: 724 Location: *.no
|
Posted: Tue May 20, 2008 7:09 am Post subject: |
|
|
It is hard to understand what it is you want, but I think it is something like this: | Code: | 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. _________________ Elen sila lúmenn' omentielvo |
|
| Back to top |
|
 |
|