Hey, so I'm still pretty new to irc but I tried throwing something together to add points to everyone in a specific channel userlist and it's only adding points to myself when I try it. I'm probably missing something super obvious :p

Code:
on *:TEXT:!bonusall:#testchannel: {
  var %n = $nick(#,0)
  var %i = 1
  var %nick = $nick(#,%i)
  %nick = $nick(#,%i)
  set %points $calc( $readini(Points.ini,n,$+(,#,.,%nick),Points) + 500 )
  /writeini -n Points.ini $+(,#,.,%nick) Points %points
  { msg $chan Everyone has been given 500 points! }
}