mIRC Home    About    Download    Register    News    Help

Print Thread
L
lambroger
lambroger
L
anyone having problems with their nick events failing to trigger in 6.1?

mine are, all of them and they all worked under 6.3

i've tried rewriting them all to no avail. no luck. they just don't trigger.

Joined: Aug 2003
Posts: 136
M
Vogon poet
Offline
Vogon poet
M
Joined: Aug 2003
Posts: 136
FIrst off it is 6.03 and could you show us your code you are using? Maybe it is simply a syntax error that you are over looking.

L
lambroger
lambroger
L
Code:
on 1:NICK: {
  if ( $chan == #eve-chaos ) {
    if ( $nick(#eve-chaos,$nick,oh) || $nick(#eve-chaos,$newnick,oh) ) return
    var %chaos_mgt.source = $+(chaos\,$chaos_mgt.create_filename($nick),.ini)
    var %chaos_mgt.destination = $+(chaos\,$chaos_mgt.create_filename($newnick),.ini)
    copy -o %chaos_mgt.source %chaos_mgt.destination
    chaos_mgt.restore $newnick %chaos_mgt.destination
  }
}
  

R
r0ck0
r0ck0
R
if ( $chan == #eve-chaos ) {

remove that part and see if it works

Code:
on *:NICK: {
  if (($nick(#eve-chaos,$nick,oh)) || ($nick(#eve-chaos,$newnick,oh))) return
  var %chaos_mgt.source = $+(chaos\,$chaos_mgt.create_filename($nick),.ini)
  var %chaos_mgt.destination = $+(chaos\,$chaos_mgt.create_filename($newnick),.ini)
  copy -o %chaos_mgt.source %chaos_mgt.destination
  chaos_mgt.restore $newnick %chaos_mgt.destination
}

Last edited by r0ck0; 24/09/03 06:04 PM.
L
lambroger
lambroger
L
thank you, it's working now.

you are da man.

P
pheonix
pheonix
P
you are da lamb.

R
r0ck0
r0ck0
R
mp smile

P
pheonix
pheonix
P
np = no problem
mp = my pleasure? *wild guess*

R
r0ck0
r0ck0
R
yep smile


Link Copied to Clipboard