i am using this method to use triggers on my channel
set trigger1 "!whatever"
set text1 "whatver i want to say"
theres more codes in it like
bind pub $trigbind $trigger1 text-1
proc text-1 {n u h c a } {
global channelone
global channeltwo
global channelthree
global text1
if {$c == $channelone || $c == $channeltwo || $c == $channelthree} {
puthelp "PRIVMSG $c :$text1"
}
return 0
}
now what i want to do is when its trigger to play a sound i will host with my bot. want only for one specific trigger to play sound...
also if i wanted to add the person name of who did trigger name into wwhats displayed how would i do that