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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
-
Moti
- Voice
- Posts: 15
- Joined: Fri Sep 20, 2013 12:36 pm
Post
by Moti »
Hello,
I look for a script to eggdrop that after X user kick from some channel the eggdrop will send him a private message with this info:
Hello $nick you kick out from $chan - for more info please visit http://...
Thank you !
-
willyw
- Revered One
- Posts: 1203
- Joined: Thu Jan 15, 2009 12:55 am
Post
by willyw »
Code: Select all
# Sep 20, 2013
# http://forum.egghelp.org/viewtopic.php?t=19514
# Reference: http://www.eggheads.org/support/egghtml/1.6.21/tcl-commands.html and find bind kick
bind kick - "* *" msg_on_kick
proc msg_on_kick {nick uhost handle chan target reason} {
putserv "privmsg $target :Hello $target you kick out from $chan - for more info please visit http://... "
}
You will need to edit the putserv line to have the bot deliver whatever message you want. I hope this helps.
-
Moti
- Voice
- Posts: 15
- Joined: Fri Sep 20, 2013 12:36 pm
Post
by Moti »
Oh man, I'm really really thank you! It's working great !