ok what I want to do is to give the characters in my RPG session points. the points should be saved in a .ini file:
Code:
[XP]
PC1=10
PC2=12

ok, this is what I've come up with:
Code:
on *:text:!XP:#: {
  var %alreadyxp $readini(Stats.ini, XP, $2)
  set %XP = %alreadyxp + $3
  writeini Stats.ini XP $3 %XP
}

is it something with the $2 -identifier? I have tried to add a $+ -identifier. is it the $readini?

Help!