diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/michel.txt | 18 | ||||
-rw-r--r-- | npc/functions/scoreboards.txt | 8 |
2 files changed, 9 insertions, 17 deletions
diff --git a/npc/003-1/michel.txt b/npc/003-1/michel.txt index 240197a4e..056bc8253 100644 --- a/npc/003-1/michel.txt +++ b/npc/003-1/michel.txt @@ -17,24 +17,8 @@ next; HallOfGMLog(); - // Only Admins are allowed to change the HoF Scoreboard + // Only Admins are allowed to change the Referral Scoreboard if (!is_admin()) goto L_Main; - - next; - mes "##BGM Information##b"; - mes "We are currently relying in Karma to generate this Hall Of Fame."; - mes ""; - mes "##B Manual Edition ##b"; - mes "To reliably change Karma values, you must use @set Karma."; - mes "But watch out: This command overrides karma!"; - mes "Therefore, it is advised to DON'T change this by hand."; - mes ""; - mes "##B Scripting Edition ##b"; - mes "Is known to work. This hall of fame will need a few minutes to update itself."; - mes ""; - mes "##B Technical Notes ##b"; - mes "In future we may start Fame field directly (but it is not displayed on client, thus, we decided to use Karma)."; - //set Karma, Karma + 5; if (is_admin()) goto L_GMOnce; close; diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index c467ffb38..3e2b65b74 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -5,6 +5,8 @@ // Leaderboards + GM Command Log function script HallOfFame { + // Moved to event statues + return; mes ""; .@nb = query_sql("select name, karma from `char` WHERE `guild_id`!=1 ORDER BY karma DESC LIMIT 10", .@name$, .@value); mes l("##BHall Of Fame: TOP10##b"); @@ -157,6 +159,12 @@ function script HallOf2018 { mes ""; mes l(".:: FIRST PLAYER TO COMPLETE YETI KING QUEST ::."); mes l("Aisen"); + mes ""; + mes l(".:: NOTABLE NAMES ON HURNSCALD LIBERATION DAY ::."); + mes l("DragonStar, Aisen"); + mes ""; + mes l(".:: NOTABLE NAMES ON NIVALIS LIBERATION DAY ::."); + mes l("Jesusalva"); next; mes l(".:: Easter 2018 ::."); mes l("In honor of DragonStar, winner of Easter 2018."); |