Hi,
Im running TxTGreet 1.0 by darles.
When users request to see their greets, the bot replies in 'notice' instead of in the main channel where I want it to display. Can anyone do a slight tweak on this? Thanks in advance
Script section follows:
}
proc mygreet {nick uhost hand chan arg} {
global patch yourgreet
if {[file exist /$patch/$nick.txt]} {
set file6 [open /$patch/$nick.txt r]
gets $file6 text
close $file6
putserv "NOTICE $nick :$yourgreet: \[$nick\] $text"
}