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 !
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://... "
}