Finished the score board snippet. Going to upload it, and next I'll be working on the hardcore mode.
... I think one could mimic the way CheesyMud did the 10 lives by using a combination of the kill counter snippet and permdeath snippet.
Edit: Wish I could update what file I uploaded and get rid of the old one. I forgot a step: adding the prototype in act.h. Open it up, and add...
Code:
ACMD(do_title);
ACMD(do_visible);
+ACMD(do_fallen);
Sorry for the mistake there! And caught another bug as well... it was recording even when mobs were beaten. That'd fill that file up quickly. Here's a quick fix.
Code:
+ if (!IS_NPC(ch))
scorelog(ch, killer);
make_corpse(ch);
extract_char(ch);