Waiting List
There are no players on the waiting list yet. Only Windows users can play this game. If you have an emulator, you can join the waiting list to be informed when a new server is ready to play.
[Login to join waiting list]
| This demo will make a scoreboard for you. Which can be used to calculate the 10 strongest players in your game. |
Version 2 ·
Date Added: 2/17/03
If you wish to download this demo for your Linux/Mac installation, enter the following on your command line:
DreamDownload byond://RaeKwon.ScoreboardDemo##version=2
Emulator users, in the BYOND pager go to File | Open Location and enter this URL:
byond://RaeKwon.ScoreboardDemo##version=2
|
| |
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.
|
Login to post a comment.