Guest User

Untitled

a guest
Jul 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.32 KB | None | 0 0
  1. alias c.check {
  2.   var %a = $nick($1,0)
  3.   var %b = 1
  4.   var %c = 0
  5.   var %d = 0
  6.   while (%b <= %a) {
  7.     if ($nick($1,%b) ison $2) {  inc %c }
  8.     if ($nick($1,%b) !ison $2) { inc %d }
  9.     inc %b
  10.   }
  11.   echo -a There are %c people from $1 that are also in $2
  12.   echo -a There are %d people that are in $2 and not in $1
  13. }
Add Comment
Please, Sign In to add comment