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.
Old posts that have not been replied to for several years.
-
Pitchat
- Op
- Posts: 122
- Joined: Tue Feb 18, 2003 11:24 pm
- Location: Hebertville Quebec Canada
-
Contact:
Post
by Pitchat »
Hi everybody !
hope that the summer has been good to you has much as it did to me !
i`v been away from computer , tcl and so since 2 months and now i`m back but i forgot simple things lol
how can i make a simple script that send a notice when sombody leave a channel i.e. un simple onpart script , i searh the tcl archive but didnt find
thanks a lot
Pitchat
-
Darkj
- Halfop
- Posts: 86
- Joined: Sun Jul 06, 2003 9:58 pm
Post
by Darkj »
Code: Select all
bind part - "*" do_part
proc do_part {nick user hand chan arg} {
putserv "NOTICE $nick :You have left $chan"
return 0
}
Basic script, should get you started though.
-
Pitchat
- Op
- Posts: 122
- Joined: Tue Feb 18, 2003 11:24 pm
- Location: Hebertville Quebec Canada
-
Contact:
Post
by Pitchat »
duh !
the sun really take a toll on me ( laugh ) dont even able to do that simple thing
thanks for putting me back in the bath
Pitchat