mIRC Home    About    Download    Register    News    Help

Print Thread
#4143 31/12/02 02:58 AM
Joined: Dec 2002
Posts: 76
A
Babel fish
OP Offline
Babel fish
A
Joined: Dec 2002
Posts: 76
Code:
 menu nicklist {
  $iif(x isincs $usermode,Gline): {
    if ($snick(#,0) == 1) {
      .hadd -sm gline $snicks 1
      whois $$1
    }
  }
}
raw 616:*: {
  if ($hget(gline,$snick($active,1)) == 1) {
    .hfree -sw gline
    gline *$ $+ $5 86400 :Gline 
  }
}

How do i use F key like F12 to Gline ?

#4144 31/12/02 03:24 AM
Joined: Dec 2002
Posts: 144
D
Vogon poet
Offline
Vogon poet
D
Joined: Dec 2002
Posts: 144
Code:
alias f12 {
  if (x !isin $usermode) { return }
  if ($snick($active,0) == 1) {
    .hadd -sm gline $snick($active,1)
    whois $snick($active,1)
  }
}

If raw 616 is a line from the /whois output then something along these lines I believe...


"Any sufficiently advanced technology is indistinguishable from magic." - Arthur C. Clarke
#4145 31/12/02 03:44 AM
Joined: Dec 2002
Posts: 76
A
Babel fish
OP Offline
Babel fish
A
Joined: Dec 2002
Posts: 76
sorry, cant work

#4146 31/12/02 03:53 AM
Joined: Dec 2002
Posts: 144
D
Vogon poet
Offline
Vogon poet
D
Joined: Dec 2002
Posts: 144
You would still have had to select a nickname from the nicklist of course.


"Any sufficiently advanced technology is indistinguishable from magic." - Arthur C. Clarke

Link Copied to Clipboard