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:
ok, this is what I've come up with:
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!