mIRC Home    About    Download    Register    News    Help

Print Thread
K
kevintheman
kevintheman
K
hey mirc should make the window flash when people join or leave the channel or quit irc. it flashes when messages are recieved or when queries are recieved but not when people join or leave a channel or quit irc. (sorry didnt have enough room on the topic)

Last edited by kevintheman; 30/10/03 01:05 AM.
Joined: Dec 2002
Posts: 2,958
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Dec 2002
Posts: 2,958
Well, perhaps it should have the option of it, ie: be able to turn it on and off. In the mean time it can be scripted. grin

K
kevintheman
kevintheman
K
yeah. thats true. how do i make the script for it?

Joined: Dec 2002
Posts: 2,958
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Dec 2002
Posts: 2,958
Code:
ON *:JOIN:#: {
  flash # Someone has joined!
}
THis only works if mIRC is not the active application though.

K
kevintheman
kevintheman
K
awsome thanks. do i do the same thing for quit but just replace join with quit?

Joined: Dec 2002
Posts: 2,958
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Dec 2002
Posts: 2,958
Yep.

K
kevintheman
kevintheman
K
awsome. thanks a lot for youe help grin

Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
If you get a "#: is an unknown command" message remove the :# from the on QUIT script.

Joined: Jan 2003
Posts: 1,057
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Jan 2003
Posts: 1,057
use a while loop to run through $comchan when using it with on QUIT

on QUIT is a network global event and not triggerd to single channels

K
kevintheman
kevintheman
K
whats the code for that since im new to making mirc scripts? thanks btw.:)

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
Code:
on ^*:QUIT: {
  var %c = 1
  while ($comchan($nick, %c)) {
    /echo $ifmatch * QUIT: $nick ( $+ $1- $+ )
    /inc %c
  }
  /haltdef
}

K
kevintheman
kevintheman
K
ok thanks

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
np


Link Copied to Clipboard