diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/news.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/news.txt b/npc/functions/news.txt index 6f08c25f9..29e91c1d8 100644 --- a/npc/functions/news.txt +++ b/npc/functions/news.txt @@ -481,11 +481,11 @@ function script EventHelp { function script Journalman { npctalk3 any( l("Halinarzo Church makes a party every Sunday! Only true believers are invited!"), - l("Beware the Terranite! Only @@ would be brave enough to challenge them!", $MOST_HEROIC$), + l("Beware the Terranite! Only @@ would be brave enough to challenge them!", ($MOST_HEROIC$ == "" ? "Andrei Sakar" : $MOST_HEROIC$)), l("Terrible manaquake hits the whole world, causing dramatic changes!"), - l("Green Wars project says that @@ trees were planted by adventurers on the world!", $TREE_PLANTED), + l("Green Wars project says that @@ trees were planted by adventurers on the world!", format_number($TREE_PLANTED)), l("The Team For A Better PvP says that @@ players were killed in fair matches!", format_number($PLAYERS_KILLED)), - l("The Alliance says that @@ monsters have been slain by players since 2019-05-24!", $MONSTERS_KILLED), + l("The Alliance says that @@ monsters have been slain by players since 2019-05-24!", format_number($MONSTERS_KILLED)), l("All hail @@ and Andrei Sakar, heroes of the world!", $MOST_HEROIC$)); mesn getarg(0); mesq l("Bonjour! I am @@, and I am from the Press! Read the latest news with me!", getarg(0)); |