OK, i want members to be able to msg a bot and have the bot tell the member the chankey, well i have this so far and it works however i need it to NOT ALLOW people who's userlever does not equal either 1, 2 , or 3. ..What do i have to do to make that part work?


on *:TEXT:!chankey*:?:{
if (%userlevel == 1) {
.notice $nick The Current Channel Key is %chankey
}
elseif (%userlevel == 2) {
.notice $nick The Current Channel Key is %chankey
}
elseif (%userlevel == 3) {
.notice $nick The Current Channel Key is %chankey
}
elseif (%userlevel != 1,2,3) {
.notice $nick You Do Not have correct access to this command
}}