If you want the guesses, you can loop through them similar to what I did with nicks.
alias guesses {
var %count = $ini(legendary.ini,0)
while (%count) {
echo -a $ini(legendary.ini,%count)
dec %count
}
}
Use:
/guesses
Just as a note, in both nicks and guesses aliases, I am displaying them in reverse order so the most recent nick/guess is first. You can change the loop order to the other direction if needed.