Scoreboard Demo

by RaeKwon
This demo will make a scoreboard for you. Which can be used to calculate the 10 strongest players in your game.
ID:70333
 
Latest Update:
  • whenever you put a number for your level bigger than 99, it would be like 1+e0, Fixed!

    Instruction:
    Inside this demo you'll see the coding for a Scoreboard, this will give you instructions on how to use it.

    To start off, in Scoreboard.dm you'll see the following code:
/Rank_Entry/
var{Name;Key;Level;Date}
New(mob/person)
if(!person)return
Name=(person.name)
Key=(person.key)
Level=(person.level)
Date=(time2text(world.realtime))<dm>
Now notice the Level=(person.level) simply change everything with the var "level" to the var in your game.