Hi, i came across this script, and was wondering, maybe if yall could take a look at it. here it is.

on *:NICK: {
inc -u10 $+(%,nickflood,.,$address)
var %chan = #channel,#channel
if (!$($+(%,nickflood,.,w,.,$address),2)) {
if ($($+(%,nickflood,.,$address),2) >= 3) {
set $+(%,nickflood,.,w,.,$address) 1
msg %chan $newnick Excessive Nick Change will NOT be Tolerated! This is your First & Last Warning.
}
}
else {
if ($newnick ison %chan) && ($me isop %chan) {
kick %chan $newnick Excessive Nick Change!
unset $+(%,nickflood,.,w,.,$address)
}
}
}

on *:START: .unset %nickflood*

it works and everything, but it picks up on every room im in, when i just need it to work in only 2 of the rooms, any ideas?
Thanks In Advance