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.

Search found 2 matches

by Gozar
Thu Jun 30, 2005 3:58 pm
Forum: Archive
Topic: Match start of nick
Replies: 2
Views: 1517

Thangs. It works flawless.
by Gozar
Thu Jun 30, 2005 1:27 pm
Forum: Archive
Topic: Match start of nick
Replies: 2
Views: 1517

Match start of nick

Hello. I'm trying to make a script that sends a messege to a user if the start of the nick contains ex. [ABC] when they join the channel

Code: Select all

bind join - "\[ABC\]*" greet

proc greet { nick chan} {
  puthelp "PRIVMSG $chan :Hello $nick. Nice To see you"
  return 0
}