Advertisement
wollux

Top 10 channel stats

Jul 18th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.56 KB | None | 0 0
  1. on *:TEXT:*:#:{
  2.   writeini words.ini $chan $nick $calc($readini(words.ini,$chan,$nick) + $0)
  3.   if ($1 == .top10) {
  4.     var %i 1
  5.     while (%i <= $ini(words.ini,$chan,0)) {
  6.       var %w $+(%w,:,$readini(words.ini,$chan,$ini(words.ini,$chan,%i)),-,$ini(words.ini,$chan,%i))
  7.       inc %i
  8.     }
  9.     var %w $sorttok(%w,58,nr)
  10.     var %i 1
  11.     while (%i <= 10) {
  12.       var %q $gettok(%w,%i,58)
  13.       var %win %win $+(%i,.) $gettok(%q,2,45) ( $+  $bytes($gettok(%q,1,45),b) $+ )
  14.       inc %i
  15.     }
  16.     msg $chan Top ten talkers for $chan
  17.     msg $chan %win
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement