diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-20 10:54:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-20 10:54:04 -0300 |
commit | f2dbf9026d600ea96f35c5e761715136f27b37d5 (patch) | |
tree | 953a1b63cf696e6deb3f0b3b04c046b967fe5f4e /npc | |
parent | a9ded7afa8e9c1ab9394de8597b8186afebbcb5d (diff) | |
download | serverdata-f2dbf9026d600ea96f35c5e761715136f27b37d5.tar.gz serverdata-f2dbf9026d600ea96f35c5e761715136f27b37d5.tar.bz2 serverdata-f2dbf9026d600ea96f35c5e761715136f27b37d5.tar.xz serverdata-f2dbf9026d600ea96f35c5e761715136f27b37d5.zip |
Add Hall of Guild Level on Hero Statue and Hall of Job Level on Strength Statue
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0-1/statues.txt | 3 | ||||
-rw-r--r-- | npc/012-1/statue.txt | 1 | ||||
-rw-r--r-- | npc/functions/scoreboards.txt | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/npc/003-0-1/statues.txt b/npc/003-0-1/statues.txt index c6db093e5..1f6fec071 100644 --- a/npc/003-0-1/statues.txt +++ b/npc/003-0-1/statues.txt @@ -25,6 +25,8 @@ OnInit: .rate_limit=gettimetick(2); HallOfLevel(); + next; + HallOfJob(); close; OnInit: @@ -58,6 +60,7 @@ L_Fame: mesq l("All hail the ones who proven their worth before the whole Alliance!"); HallOfFame(); + HallOfGuild(); close; OnInit: diff --git a/npc/012-1/statue.txt b/npc/012-1/statue.txt index 3053b31bb..e60ec7d3c 100644 --- a/npc/012-1/statue.txt +++ b/npc/012-1/statue.txt @@ -20,6 +20,7 @@ L_Fame: mesq l("All hail the ones who proven their worth before the whole Alliance!"); HallOfFame(); + HallOfGuild(); close; OnInit: diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index 8e94f09ed..afa5aab2a 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -44,7 +44,7 @@ OnInit: function script HallOfGuild { mes ""; - mes l("##BHall Of Guild Level: TOP15##b"); + mes l("##BHall Of Guild Level: TOP5##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]+")"); |