diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-20 10:52:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-20 10:52:23 -0300 |
commit | a9ded7afa8e9c1ab9394de8597b8186afebbcb5d (patch) | |
tree | 7ae6ae77cc870fe91c052c08f2da965e1502fa07 | |
parent | ab377cc3989c8546d798b0b444f3fd7b888d86c6 (diff) | |
download | serverdata-a9ded7afa8e9c1ab9394de8597b8186afebbcb5d.tar.gz serverdata-a9ded7afa8e9c1ab9394de8597b8186afebbcb5d.tar.bz2 serverdata-a9ded7afa8e9c1ab9394de8597b8186afebbcb5d.tar.xz serverdata-a9ded7afa8e9c1ab9394de8597b8186afebbcb5d.zip |
Add the new halls on functions, but not displayed anywhere
-rw-r--r-- | npc/functions/scoreboards.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index ecfc8aeb1..8e94f09ed 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -42,6 +42,17 @@ OnInit: end; } +function script HallOfGuild { + mes ""; + mes l("##BHall Of Guild Level: TOP15##b"); + mes("1."+$@hoguild_name$[0]+" ("+$@hoguild_value[0]+")"); + mes("2."+$@hoguild_name$[1]+" ("+$@hoguild_value[1]+")"); + mes("3."+$@hoguild_name$[2]+" ("+$@hoguild_value[2]+")"); + mes("4."+$@hoguild_name$[3]+" ("+$@hoguild_value[3]+")"); + mes("5."+$@hoguild_name$[4]+" ("+$@hoguild_value[4]+")"); + return; +} + function script HallOfFame { // Moved to event statues return; @@ -105,6 +116,27 @@ function script HallOfLevel { return; } +function script HallOfJob { + mes ""; + mes l("##BHall Of Job Level: TOP15##b"); + mes("1."+$@hojlvl_name$[0]+" ("+$@hojlvl_value[0]+")"); + mes("2."+$@hojlvl_name$[1]+" ("+$@hojlvl_value[1]+")"); + mes("3."+$@hojlvl_name$[2]+" ("+$@hojlvl_value[2]+")"); + mes("4."+$@hojlvl_name$[3]+" ("+$@hojlvl_value[3]+")"); + mes("5."+$@hojlvl_name$[4]+" ("+$@hojlvl_value[4]+")"); + mes("6."+$@hojlvl_name$[5]+" ("+$@hojlvl_value[5]+")"); + mes("7."+$@hojlvl_name$[6]+" ("+$@hojlvl_value[6]+")"); + mes("8."+$@hojlvl_name$[7]+" ("+$@hojlvl_value[7]+")"); + mes("9."+$@hojlvl_name$[8]+" ("+$@hojlvl_value[8]+")"); + mes("10."+$@hojlvl_name$[9]+" ("+$@hojlvl_value[9]+")"); + mes("11."+$@hojlvl_name$[10]+" ("+$@hojlvl_value[10]+")"); + mes("12."+$@hojlvl_name$[11]+" ("+$@hojlvl_value[11]+")"); + mes("13."+$@hojlvl_name$[12]+" ("+$@hojlvl_value[12]+")"); + mes("14."+$@hojlvl_name$[13]+" ("+$@hojlvl_value[13]+")"); + mes("15."+$@hojlvl_name$[14]+" ("+$@hojlvl_value[14]+")"); + return; +} + function script HallOfCoins { mes ""; mes l("##BHall Of @@: TOP15##b", getitemlink(StrangeCoin)); |