I tried that. =/
I set my guy to have 50 billion exp (40 billion more than level 75 required).
I then hid the character using the disable top ten command.
then i forced a cleanup on the system.
he was hidden when i first entered the realm, but maybe 20 minutes later he was visible again.
is it possible that going to the trainer and leveling him up is what triggered him to be placed back on the top list? I only leveled him to 50, far out of reach of the level 16 level cap so I never got any EXP.
Unable to hide users from the topten
Re: Unable to hide users from the topten
Max exp = 8,589,934,590 which is FFFF FFFF + FFFF FFFF. You may even need to hex edit the user database and fill the spot with Fs manually. Memory is a little foggy on the subject.
Edit: I can't recall if they are unsigned longs or signed. If they are signed then the max is actually 4294967294 (7FFF FFFF 7FFF FFFF).
There are two fields-- the first is how many billions of exp the user has, and the second is how much exp minus the billions. So a value of 0000 0001 0000 0001 would be 1,000,000,001.
So other possible maxes are FFFF FFFF 3B9A C9FF which would be 4.2 billion + 999,999,999 = 5,294,967,294 or in the case of signed ints, 7FFF FFFF 3B9A C9FF which would be 3,147,483,646.
One of those has to be right
See: http://nmr.mudinfo.net/docs/hex_maps/index.html
Edit: I can't recall if they are unsigned longs or signed. If they are signed then the max is actually 4294967294 (7FFF FFFF 7FFF FFFF).
There are two fields-- the first is how many billions of exp the user has, and the second is how much exp minus the billions. So a value of 0000 0001 0000 0001 would be 1,000,000,001.
So other possible maxes are FFFF FFFF 3B9A C9FF which would be 4.2 billion + 999,999,999 = 5,294,967,294 or in the case of signed ints, 7FFF FFFF 3B9A C9FF which would be 3,147,483,646.
One of those has to be right

See: http://nmr.mudinfo.net/docs/hex_maps/index.html