I am writing a script that should, whenever a user halfops (changes mode to +h), the bot will output "CHARGIN UR LAZERS" to the channel.
Code: Select all
set m "+h"
bind mode - * userhop
proc userhop {nick uhost hand chan m victim} {
puthelp "PRIVMSG $chan :CHARGIN UR LAZERS"
}
Does anyone have any possible fixes or insights as to why this may be happening? Thanks in advance!