ok so I have this:

Code:
on *:TEXT:!winners:#:{ 
  /topusers 
}

alias topusers {
  btrunc temp 0
  var %i = 1
  while ($ini(fish.ini,%i)) {
    write temp $v1 - $readini(fish.ini,$v1,money)
    inc %i
  }
  filter -cteuff 2 45 temp temp
  .play -m $chan temp
}

and when run it looks like:

Code:
[02:20] <game1> player1 - 77
[02:20] <game1> player2 - 55


how do I change the code to count the users on the .ini and divide the jackpot evenly and have an output of:

NOTE: Jackpots 1000...so

Code:
[02:20] <game1> !give player1 500
[02:20] <game1> !give player2 500



So you know, this is for a game that gives points to users for fun

Last edited by HappyFappy; 28/01/15 07:49 AM.