diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-13 23:27:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-13 23:27:02 -0300 |
commit | 0a23561df81541e4e5e5a20b30506d1a6bbdc736 (patch) | |
tree | 7c66ca24d34a240e9391803bcd9d32cbb462968a /npc/functions | |
parent | 834ba6a64a8d15ac9f6145bdaf1293e7f99bd3ca (diff) | |
download | serverdata-0a23561df81541e4e5e5a20b30506d1a6bbdc736.tar.gz serverdata-0a23561df81541e4e5e5a20b30506d1a6bbdc736.tar.bz2 serverdata-0a23561df81541e4e5e5a20b30506d1a6bbdc736.tar.xz serverdata-0a23561df81541e4e5e5a20b30506d1a6bbdc736.zip |
Ugly 4144 code
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/scoreboards.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index 860f4a700..18cf75507 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -451,13 +451,13 @@ function script rand_sponsor { function script HallOfGame { mes l("World hero: %s", $MOST_HEROIC$); if ($GAME_STORYLINE >= 4) { - mes l("The [@@3600|lighting@@] hero: %s", $LIGHT_HOLDER$); - mes l("The [@@3604|fortress@@] hero: %s", $AEGIS_HOLDER$); - mes l("The [@@3602|accurate@@] hero: %s", $TYRAN_HOLDER$); - mes l("The [@@3603|sorcerer@@] hero: %s", $RUNES_HOLDER$); - mes l("The [@@3601|frontier@@] hero: %s", $DEMUR_HOLDER$); + mes l("The %s hero: %s", "[@@3600|lighting@@]", $LIGHT_HOLDER$); + mes l("The %s hero: %s", "[@@3604|fortress@@]", $AEGIS_HOLDER$); + mes l("The %s hero: %s", "[@@3602|accurate@@]", $TYRAN_HOLDER$); + mes l("The %s hero: %s", "[@@3603|sorcerer@@]", $RUNES_HOLDER$); + mes l("The %s hero: %s", "[@@3601|frontier@@]", $DEMUR_HOLDER$); if ($SHADY_HOLDER$ != "") - mes l("The @@3605|anti-hero@@: %s", $SHADY_HOLDER$); + mes l("The %s hero: %s", "[@@3605|anti@@]", $SHADY_HOLDER$); mes ""; } else { mes l("The absolute hero: %s", l("Andrei Sakar")); |