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.

little tcl

Old posts that have not been replied to for several years.
Locked
R
RaDoM
Voice
Posts: 17
Joined: Mon Mar 10, 2003 2:32 pm
Location: uNd3rGr0uNd C1Ty

little tcl

Post by RaDoM »

hi,

how can i do for my eggdrop when it join to chan say a text?

thx
.:: RaDoM ::.

The future is nearby!
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Code: Select all

bind join * * my:join

proc my:join {nick uhost handle channel} {
  if {$nick != "$::botnick"} {
    return
  }
  putserv "PRIVMSG $channel :Your text here!"
}
Once the game is over, the king and the pawn go back in the same box.
Locked