Thats a cool way of doing it. I do it the noob way I guess.

Use $ini to find out how many items are in the section, how many sections in the file. Etc. Then just use a while loop to run through each one.


Code:
var %xx = $ini(file.ini,section,0)
while (%xx) { msg $chan $readini(file.ini,section,$ini(file.ini,section,%xx)) }
dec %xx
}