diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-17 12:56:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-17 12:56:52 -0300 |
commit | 303d06d103c20bf8f995d4e7280e1d5a7103b8cf (patch) | |
tree | baa19ad3bd3979af4895a2dfcaaeb29322adfe7b /npc/functions/scoreboards.txt | |
parent | 26e9fe79fcb27d10da89aa746c5fc329eabbd5b9 (diff) | |
download | serverdata-303d06d103c20bf8f995d4e7280e1d5a7103b8cf.tar.gz serverdata-303d06d103c20bf8f995d4e7280e1d5a7103b8cf.tar.bz2 serverdata-303d06d103c20bf8f995d4e7280e1d5a7103b8cf.tar.xz serverdata-303d06d103c20bf8f995d4e7280e1d5a7103b8cf.zip |
Hall of Game - Report the five legendary heroes when they appear
Diffstat (limited to 'npc/functions/scoreboards.txt')
-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)); |