heh, jsut one final pesy question:

Code:
on *:TEXT:!winamp:#: { /dde mplug announce }
on *:TEXT:!idle *:#: { 
  if ($2 == on) idlemsg on /wa
  if ($2 == off) idlemsg off
}

alias idlemsg {
  if ($1 == on) { .timeridlemsg 0 1800 $$2- }
  if ($1 == off) { .timeridlemsg off }


how do I announce that the idle is on when !idle on is typed and announce that the idle is off when !idle off is typed, instead of it repeating every 30 minutes? Do I add
Code:
on *:TEXT:!idle on:#: { /msg $chan Idle Enabled }
; then
on *:TEXT:!idle off:#: { /msg $chan Idle Disabled }

; this code is added after the other code


mIRC Newb. smile