Originally Posted By: Mpot

Code:
if ($user($nick) == syscon) { msg $nick You can not ban a bot operator! }


EDIT: Could it be

Code:
(if $level($address($2,2)) == syscon) { msg $nick You can not ban a bot operator! }


Try a
Code:
if ($istok($remove($level(NICK/MASK),=),YOURLEVEL,44)) { stuff }
NICK/MASK depends on how you added users to your user list
change YOURLEVEL to the level you assigned to bot operators

I used "istok" as you can assign more than one level per entry of the users list; and I used "$remove(bla,=)" to get arround forced levels. It's not airtight (named levels could contain a = char)... Anyway, I just want to point in that direction.

Last edited by Horstl; 15/10/07 03:32 AM.