mIRC Home    About    Download    Register    News    Help

Print Thread
#205447 23/10/08 04:10 PM
Joined: Nov 2007
Posts: 117
T
Vogon poet
OP Offline
Vogon poet
T
Joined: Nov 2007
Posts: 117
; stats

on 1:join:#chaco-corrientes: {
if $me == VerDuGo { .stats }
}

alias stats {
//echo -a -> Oped: $nick($chan,0,o) / $round($calc($nick($chan,0,o) / $nick($chan,0) * 100),0) %
//echo -a -> Voice: $nick($chan,0,v) / $round($calc($nick($chan,0,v) / $nick($chan,v) * 100),v) %
}

i made this, i want when i enter into the channel, i want the stats , but my program shows every time when user joins,
any help to fix it

thnx

TheWarlock #205452 23/10/08 04:45 PM
Joined: Dec 2002
Posts: 2,031
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,031

Try one of these...

Code:

on me:*:JOIN:#chaco-corrientes: { 
  .stats
}


or

Code:

on *:JOIN:#chaco-corrientes: { 
  if ($nick == $me) { .stats }
}




Link Copied to Clipboard