ok i have this
Code:
On 187:TEXT:$($me $+ *):*: {
  if ($2 == level) { 
    write -c botlist2.txt
    var %i = 1 | %level = $3-
    while ($ulist(*,%level,%i)) {
      msg # .::.::.::.::.::.::.::.::.::Users on Level $3 are::.::.::.::.::.::.::.::.::.
      msg # $v1 
      inc %i
      halt
    }
  }
}

it displays level specified when i type MyBotNick level <level> it displays names of the ppl that are on level specified, but instead of doing that it displays @MyBotNick with that @ infront of MyBotNick instead

like this:
<MyNick> MyBotNick level 777
<MyBotNick> .::.::.::.::.::.::.::.::.::Users on Level 777 are::.::.::.::.::.::.::.::.::.
<MyBotNick> @MyBotNick


what's wrong with it?