Hey

Is their any error messages on the mIRC status window when the .notice issues occurs? What are you trying to do when it happens? The .play command is only being used by the !showbans so as you can not use that command then the !showbans can just be removed.

I have copied and pasted the last code I posted into my bot's mIRC and everything seems to be working fine with no error messages and everything is working as it should.

Just to also confirm that you created a new yellow folder in mIRC folder called QuoteScript (case sensitive) and that the actual script is being place into a bots mIRC client and not yours.

I have reposted the latest version of the script and removed the !showbans to also make sure something didn't go wrong somewhere and I pasted or yourself copied.

Code:
on *:Text:*!banuser*:#: {
  if ($1 == !banuser) && ($nick == NICKNAME) {
    if ($2 == $null) { .notice $nick Command incomplete. Syntax: %c $+ !banuser <nick> | halt }
    if ($2 !== $null) {
      if ($2 == $me) { .notice $nick I will not add myself. | halt }
      if ($readini(QuoteScript\Banned.ini, $2, Level) !== $null) { .notice $nick $2 is already in the quotes ban list. | halt }
      else { 
        .writeini -n QuoteScript\Banned.ini $2 Level Banned
        .write QuoteScript\BanList.txt $2
        .notice $nick You have banned $2 from adding quotes
      }
    }
  }
}
on *:text:*!delban*:#: {
  if ($1 == !delban) && ($nick == NICKNAME) { 
    if ($2 == $null) { .notice $nick Command incomplete. Syntax: %c $+ delban <nick>. | halt }
    if ($2 !== $null) {
      if ($2 == $me) { .notice $nick I'm not listed on that list :). | halt }
      if ($readini(QuoteScript\Banned.ini, $2,Level) == $null) { .notice $nick $2 doesn't appear to be on the ban list. | halt }
      else {
        .remini QuoteScript\Banned.ini $2
        .write -dl,$2 QuoteScript\BanList.txt
        .notice $nick $2 has been removed from my quotes ban list.

      }
    }
  }
}
on *:TEXT:!addquote*:#:{ 
  if ($readini(QuoteScript\Banned.ini, $nick, Level) !== $null)  { .notice $nick Sorry you can not add a quote as you have been banned. }
  else {
  .write QuoteScript\QuotesReview.txt $nick : $2- } { msg $chan Your quote has been added for review }
}


Let me know how it goes

Thanks