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
| <?php
|
| header("Content-type: text/html; charset=utf-8");
|
| function GetbillboardCh()
| {
| $billboardCh = array(
| '150' => array('BBName' => \Lang\gettext('充值排行活动榜'), 'CmpValue' => \Lang\gettext('人民币')),
| '151' => array('BBName' => \Lang\gettext('跨服战场参与榜周'), 'CmpValue' => \Lang\gettext('周总参与次数')),
| '152' => array('BBName' => \Lang\gettext('跨服战场召集榜周'), 'CmpValue' => \Lang\gettext('周总召集次数')),
| '153' => array('BBName' => \Lang\gettext('跨服战场积分榜周'), 'CmpValue' => \Lang\gettext('周总积分')),
| '154' => array('BBName' => \Lang\gettext('跨服战场积分榜上周'), 'CmpValue' => \Lang\gettext('周总积分')),
| '155' => array('BBName' => \Lang\gettext('跨服妖魔Boss伤血榜'), 'CmpValue' => \Lang\gettext('伤害亿部分'), 'CmpValue2' => \Lang\gettext('伤害')),
| '156' => array('BBName' => \Lang\gettext('逐鹿万界单场榜'), 'CmpValue' => \Lang\gettext('积分'), 'Name1' => \Lang\gettext('仙盟')),
| '157' => array('BBName' => \Lang\gettext('逐鹿万界周总榜'), 'CmpValue' => \Lang\gettext('积分'), 'Name1' => \Lang\gettext('仙盟')),
| '158' => array('BBName' => \Lang\gettext('跨服boss凭证个人'), 'CmpValue' => \Lang\gettext('提交数')),
| '159' => array('BBName' => \Lang\gettext('跨服boss凭证个人 - 上一期'), 'CmpValue' => \Lang\gettext('提交数')),
| '160' => 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')
| ),
| '161' => 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')
| ),
| '162' => array('BBName' => \Lang\gettext('跨服仙匣秘境'), 'CmpValue' => \Lang\gettext('积分')),
| '163' => array('BBName' => \Lang\gettext('跨服古宝养成'), 'CmpValue' => \Lang\gettext('积分')),
| '164' => array('BBName' => \Lang\gettext('跨服骑宠养成'), 'CmpValue' => \Lang\gettext('积分')),
| '165' => array('BBName' => \Lang\gettext('跨服竞技场'), 'CmpValue' => \Lang\gettext('积分'), 'Value2' => \Lang\gettext('段位')),
| '166' => array('BBName' => \Lang\gettext('跨服炼器大会'), 'CmpValue' => \Lang\gettext('积分'), 'CmpValue2' => \Lang\gettext('最高等级')),
| '167' => array('BBName' => \Lang\gettext('仙盟攻城战仙盟积分'), 'CmpValue' => \Lang\gettext('积分'), 'CmpValue2' => \Lang\gettext('比较权值')),
| '168' => array('BBName' => \Lang\gettext('仙盟攻城战玩家伤害'), 'CmpValue' => \Lang\gettext('伤害亿部分'), 'CmpValue2' => \Lang\gettext('伤害'),),
| '169' => array(
| 'BBName' => \Lang\gettext('仙盟攻城战轮次伤害'), 'CmpValue' => \Lang\gettext('伤害亿部分'), 'CmpValue2' => \Lang\gettext('伤害'), 'CmpValue3' => \Lang\gettext('比较权值'),
| 'Name1' => \Lang\gettext('仙盟名'), 'ID2' => \Lang\gettext('盟主ID'), 'Name2' => \Lang\gettext('盟主'), 'Value5' => \Lang\gettext('盟服务器ID'),
| 'GroupValueMark' => \Lang\gettext('类型-分区ID-战场类型*100+分组编号')
| ),
| );
| return $billboardCh;
| }
|
|