diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-15 16:47:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-15 16:47:29 -0300 |
commit | e2189e60088873d963d93df3f5204adcecd7cec7 (patch) | |
tree | 69c4de165bf4b43725f788d2f0cbb75f2e0cb35e /npc/functions | |
parent | 206f1d889cbc29e8df285e173402e0d20670a081 (diff) | |
download | serverdata-e2189e60088873d963d93df3f5204adcecd7cec7.tar.gz serverdata-e2189e60088873d963d93df3f5204adcecd7cec7.tar.bz2 serverdata-e2189e60088873d963d93df3f5204adcecd7cec7.tar.xz serverdata-e2189e60088873d963d93df3f5204adcecd7cec7.zip |
Better handling at some of Journalman spotlights
Diffstat (limited to 'npc/functions')
-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)); |