Originally Posted By: zapdos26
This is due to /me not being a TEXT event, but rather an ACTION event. You need two separate scripts. One for the TEXT events and one for ACTION events.
Code:
ON *:TEXT:*:#: {

  IF ($nick == flash0429) {

    var %color = $chr(35) $+ $base($rand(0, 16777215), 10, 16, 6)

    MSG $chan .color %color

  }
}

ON *:ACTION:*:#: {

  IF ($nick == flash0429) {

    var %color = $chr(35) $+ $base($rand(0, 16777215), 10, 16, 6)

    MSG $chan .color %color

  }
}




YOU ARE AMAZING Exactly what i needed Thank you Soo much