Yes you have if it was that easy.

I save bonus points for every user (150 different users in ini fie) with:

alias -l addPoints {
if ($1 !isnum) { echo 2 -st $1 is nie 'n nommer nie. Moet nommer wees. | halt }
var %topic $+($chan,.,$nick)
var %points $calc($readini(Docs\Point.ini,%topic,Points) + $1)
writeini -n Docs\Point.ini %topic Points %points
return %points
}

Resulting in this :

[#skinnerbek.Indigo]
Points=295

Where the user is Indigo for this specific user out of 150 on record

Then I need to delete the record say for user Indigo. I have tried using variation of the save alias to delete

on 1:text:!delpunt *:#:{
if ($nick isop $chan) {
var %topic $+($chan.$nick)
/remini -n Docs\Point.ini %topic
;remini -n Docs\Point.ini $+($chan.$nick)
;/remini -n Docs\Point.ini ($chan,.,$2)
}

It is above my experise to figure it out.

That why I said the only way for me to do it is manually

Thanks anyway for the explanations