hxp
2025-06-04 f4a514d5ac952110da846636ecbb9de951eaf3d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
 
header("Content-type: text/html; charset=utf-8");
 
function GetbillboardCh()
{
    $billboardCh = array(
        '0' => array('BBName' => \Lang\gettext('战力榜'), 'CmpValue' => \Lang\gettext('战力(亿)'), 'CmpValue2' => \Lang\gettext('战力')),
        '1' => array('BBName' => \Lang\gettext('龙魂榜'), 'CmpValue' => \Lang\gettext('战力(亿)'), 'CmpValue2' => \Lang\gettext('战力')),
        '2' => array('BBName' => \Lang\gettext('灵瑶榜'), 'CmpValue' => \Lang\gettext('战力(亿)'), 'CmpValue2' => \Lang\gettext('战力')),
        '4' => array('BBName' => \Lang\gettext('等级榜'), 'CmpValue' => \Lang\gettext('等级')),
        '5' => array('BBName' => \Lang\gettext('坐骑榜'), 'CmpValue' => \Lang\gettext('坐骑战斗力')),
        '6' => array('BBName' => \Lang\gettext('灵宠榜'), 'CmpValue' => \Lang\gettext('灵宠攻击')),
        '7' => array('BBName' => \Lang\gettext('符印塔榜'), 'CmpValue' => \Lang\gettext('通关层数')),
        '27' => array('BBName' => \Lang\gettext('天星塔榜'), 'CmpValue' => \Lang\gettext('塔层')),
        '8' => array('BBName' => \Lang\gettext('脱机榜'), 'CmpValue' => \Lang\gettext('离线效率/分(亿)'), 'CmpValue2' => \Lang\gettext('离线效率/分(亿以下)')),
        '9' => array('BBName' => \Lang\gettext('境界榜'), 'CmpValue' => \Lang\gettext('境界')),
        '19' => array('BBName' => \Lang\gettext('助战榜'), 'CmpValue' => \Lang\gettext('被召唤助战次数')),
        '24' => array('BBName' => \Lang\gettext('全民冲榜-灵根'), 'CmpValue' => \Lang\gettext('活动总灵根')),
        '12' => array('BBName' => \Lang\gettext('全民冲榜-坐骑'), 'CmpValue' => \Lang\gettext('活动总等级')),
        '25' => array('BBName' => \Lang\gettext('全民冲榜-升星'), 'CmpValue' => \Lang\gettext('活动总星数')),
        '22' => array('BBName' => \Lang\gettext('全民冲榜-灵宠'), 'CmpValue' => \Lang\gettext('活动总等级')),
        '13' => array('BBName' => \Lang\gettext('全民冲榜-宝石'), 'CmpValue' => \Lang\gettext('活动总等级')),
        '16' => array('BBName' => \Lang\gettext('全民冲榜-战力'), 'CmpValue' => \Lang\gettext('活动总战力')),
        '17' => array('BBName' => \Lang\gettext('仙界盛典榜'), 'CmpValue' => \Lang\gettext('活动总积分')),
        '28' => array('BBName' => \Lang\gettext('竞技场榜'), 'CmpValue' => \Lang\gettext('积分')),
        '29' => array('BBName' => \Lang\gettext('垃圾分类榜'), 'CmpValue' => \Lang\gettext('环保值')),
        '30' => array('BBName' => \Lang\gettext('魅力总榜'), 'CmpValue' => \Lang\gettext('魅力值')),
        '31' => array('BBName' => \Lang\gettext('魅力周榜'), 'CmpValue' => \Lang\gettext('魅力值')),
        '32' => array('BBName' => \Lang\gettext('魅力日榜'), 'CmpValue' => \Lang\gettext('魅力值')),
        '33' => array('BBName' => \Lang\gettext('boss凭证'), 'CmpValue' => \Lang\gettext('提交数')),
        '35' => array('BBName' => \Lang\gettext('boss凭证上一期'), 'CmpValue' => \Lang\gettext('提交数')),
        '36' => array(
            'BBName' => \Lang\gettext('boss凭证仙盟'), 'CmpValue' => \Lang\gettext('提交数'), 'Name1' => \Lang\gettext('仙盟名'),
            'ID2' => \Lang\gettext('盟主ID'), 'Name2' => \Lang\gettext('盟主'), 'Value1' => \Lang\gettext('盟战力亿'),
            'Value2' => \Lang\gettext('盟战力'), 'Value3' => \Lang\gettext('盟徽章'), 'Value4' => \Lang\gettext('盟等级'),
            'Value5' => \Lang\gettext('盟服务器ID')
        ),
        '37' => array(
            'BBName' => \Lang\gettext('boss凭证仙盟 - 上一期'), 'CmpValue' => \Lang\gettext('提交数'), 'Name' => \Lang\gettext('仙盟名'),
            'ID2' => \Lang\gettext('盟主ID'), 'Name2' => \Lang\gettext('盟主'), 'Value1' => \Lang\gettext('盟战力亿'),
            'Value2' => \Lang\gettext('盟战力'), 'Value3' => \Lang\gettext('盟徽章'), 'Value4' => \Lang\gettext('盟等级'),
            'Value5' => \Lang\gettext('盟服务器ID')
        ),
        '34' => array('BBName' => \Lang\gettext('异兽入侵'), 'CmpValue' => \Lang\gettext('伤害(亿)'), 'CmpValue2' => \Lang\gettext('伤害')),
        '38' => array('BBName' => \Lang\gettext('仙匣秘境'), 'CmpValue' => \Lang\gettext('积分')),
        '39' => array('BBName' => \Lang\gettext('古宝养成'), 'CmpValue' => \Lang\gettext('积分')),
        '40' => array('BBName' => \Lang\gettext('骑宠养成'), 'CmpValue' => \Lang\gettext('积分')),
    );
    return $billboardCh;
}