Ok, it at least messages me with the You Dont have Levels message. So, tht means I have a problem with me users file.
BUT, it even does it when I have the default user level at 6. Wierd!

Code:
on :TEXT:!request MoPBoT *:#: {
if ($ulevel == 6){ join $3 }
else { msg $nick You don't have the user levels to do that! }

on *:text:!mopop *:#: {
  if ($ulevel == 4) { mode $1 +o $2 }
  else { msg $nick You don't have the user levels to do that! }
}

on *:text:!mopdeop *:#: {
  if ($ulevel == 4) { mode $1 -o $2 }
  else { msg $nick You don't have the user levels to do that! }
}

on *:text:!moptopic *:#: {
  if ($ulevel == 4) { topic $1 $2 }
  else { msg $nick You don't have the user levels to do that! }
}

on *:text:!mopvoice *:#: {
  if ($ulevel == 4) { mode $1 +v $2 }
  else { msg $nick You don't have the user levels to do that! }
}


ALL of those functions have the same result. That stupid User Levels query.

Last edited by masterofpuppets; 06/04/04 11:44 PM.