This is what I have so far, it is storing the scores and adding, but I get retrive, Ive tried everything I can find in tutorials,
on 1:text:*:#usa: {
if $1 !isnum { halt }
{
elseif ($1 == %rand) {
msg #usa $nick guessed right, the random number was4 %rand
/hinc -m points $nick
/hsave -o points points.hsh
set %rand $rand(0,100)
}
{
elseif ($1 < %rand) msg #usa Guess higher $nick
{
elseif ($1 > %rand) msg #usa Guess lower $nick
}
}
}
}
I have stat and exit parts to load and save
----------
Im trying hash tables, just for the reason I want to learn them fianlly.