diff options
-rw-r--r-- | npc/functions/scoreboards.txt | 2 | ||||
-rw-r--r-- | npc/functions/util.txt | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index efa1c1398..b692d8eed 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -158,7 +158,7 @@ function script HallOfSponsor { function script HallOf2018 { mes ""; mes l(".:: FIRST PLAYER TO COMPLETE YETI KING QUEST ::."); - mes l("Aisen"); + mes $YETIKING_WINNER$; mes ""; mes l(".:: NOTABLE NAMES ON HURNSCALD LIBERATION DAY ::."); mes l("DragonStar, Aisen"); diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 1fa01d375..c12a883bf 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -234,6 +234,13 @@ function script reputation { if (getq(HurnscaldQuest_TeaParty) >= 2) .@nr=.@nr+1; + /* + // Yeti King Quest (+1 rep) + // Please note that if you challenge it again and lose, it'll reset + if (getq(HurnscaldQuest_Celestia) == 6) + .@nr=.@nr+1; + */ + // Farmers Quest (+1 rep) if (getq(HurnscaldQuest_Farmers) >= 5) .@nr=.@nr+1; |