This is what I have that's failing:
Code: Select all
proc statistics::monitor {nickname hostname handle channel arguments} {
set nick1 "kuneho"
set nick2 "kuliglig"
set nick3 "kamel"
set nick4 "Angelica"
if {($nickname == $nick1) || ($nickname == $nick2) || ($nickname == $nick3) || ($nickname == $nick4)} { return 0 }
How can I fix that line so that it checks for the nicks I've set and breaks out so the bots aren't tracked?