diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/scoreboards.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index c5607ba49..3fb087978 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -423,6 +423,17 @@ function script rand_sponsor { // HallOfGame() function script HallOfGame { mes l("World hero: %s", $MOST_HEROIC$); + if ($GAME_STORYLINE >= 4) { + mes l("The lighting hero: %s", $LIGHT_HOLDER$); + mes l("The fortress hero: %s", $AEGIS_HOLDER$); + mes l("The accurate hero: %s", $TYRAN_HOLDER$); + mes l("The sorcerer hero: %s", $RUNES_HOLDER$); + mes l("The frontier hero: %s", $DEMUR_HOLDER$); + mes ""; + } else { + mes l("The absolute hero: %s", l("Andrei Sakar")); + mes ""; + } mes l("Planted Trees: %s", fnum($TREE_PLANTED)); mes l("Players Killed in PvP: %s", fnum($PLAYERS_KILLED)); mes l("Monsters Killed in PvE: %s", fnum($MONSTERS_KILLED)); |