mIRC Home    About    Download    Register    News    Help

Print Thread
#207945 08/01/09 12:26 AM
Joined: Oct 2005
Posts: 827
P
pouncer Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Oct 2005
Posts: 827
how can i make a dialog flash?

Last edited by pouncer; 08/01/09 12:31 AM.
pouncer #207946 08/01/09 12:39 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
One thing that occurs to me, is that maybe the IAL isn't up-to-date.

Try using
Code:
$address($snicks)
or, if you want to ensure that you don't accidentally get more than one nick try
Code:
$address($gettok($snicks,1,44))


RusselB #207948 08/01/09 01:07 AM
Joined: Oct 2005
Posts: 827
P
pouncer Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Oct 2005
Posts: 827
lol i edited it too slow i fixed that origonal problem and then changed the post, sorry!

Last edited by pouncer; 08/01/09 01:08 AM.
pouncer #207950 08/01/09 02:08 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
I don't know why you would want this, but you could do it with a timer and a /dialog command. Presuming I'm understanding what you want correctly.

Eg:
Code:
on *:dialog:dialog_name:init:*:{
  $+(.timer,$dname) 0 60 f_d %fd $dname
}
alias -l f_d {
  set %fd $iif($1,$false,$true)
  dialog $iif(%fd,-i,-e) $2
}



Link Copied to Clipboard