this seams to work a little better, and with some modification, this can be used to run multiple bots, should you have more than 1. (simply add $me to message someware)

Bot side
Code:
on *:text:*:?:{
  dde mIRC command "" /botmsg  $+ $color(normal) $+  $network $+ $chr(58) $+ $nick $+ $chr(58) $1-
  halt
}
on *:action:*:?:{
  dde mIRC command "" /botmsg  $+ $color(action) $+ $network $+ $chr(58) $+ $nick $+ $chr(58) $1-
  halt
} 

Main client side
Code:
alias botmsg {
  if !$window(@bot) { window -azk0 @Bot }
  echo -itlbfmr @Bot $1-
}

Last edited by sdamon; 10/10/06 08:09 AM.