欢迎来到Minecraft插件百科!
对百科编辑一脸懵逼?
帮助:快速入门
带您快速熟悉百科编辑!
因近日遭受攻击,百科现已限制编辑,有意编辑请加入插件百科企鹅群:223812289
查看“Bedwars”的源代码
←
Bedwars
跳转到导航
跳转到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于这些用户组的用户执行:
用户
、
自动确认用户
、
巡查者
您可以查看和复制此页面的源代码。
{{Bukkit Plugin Infobox |插件名=Bedwars |版本=v3.1.2 |前置插件=pointsAPI,任意一款村民保护插件(可选),任意一款爆炸保护插件(可选) |兼容服务端版本=CB1.7.9-1.9 |源地址=https://dev.bukkit.org/bukkit-plugins/bedwars/ }} == <big>特点</big> == - 自动恢复游戏地图 - 设置菜单 - 物品商店(村民或菜单模式) - 使用实体加入队伍(盔甲架) - 物品生成器 - 全自动 - 加入牌子 - 每个用户的语言(客户端语言) - 重生的床 - 简单的权限 - 自动更新 - 记分版 - 成就 - 最大9个队伍 - 使用PointsAPI发放奖励 - 支持蹦极端 - 还有很多很多! - 可供统计和成就使用的MySQL - [https://dev.bukkit.org/bukkit-plugins/bedwars/pages/website-stats/ 网页统计数据] === 网页统计数据设置 === ==== 如何安装? ==== 1.You need a webserver, which supports PHP and MySQL Copy and paste the code from below into the file: stats.php 2.Edit the settings and set your MySQL settings 3.Upload the page on your webserver ==== 代码 ==== [http://pastebin.com/GK9xRvqE Pastebin替代代码] {{Hide|标题=点击查看代码 |内容= <?PHP /* SETTINGS */ /*________________________________________________________________________________________________________________*/ $_db_host = "localhost"; /* MYSQL host */ $_db_username = "root"; /* MYSQL username */ $_db_password = "123"; /* MYSQL password */ $_db_database = "bw"; /* Mysql database */ $_db_table = "bw_stats"; /* Database table */ $sort = "wins"; /* Default sort (wins, games, kills, deaths, beds) */ /*________________________________________________________________________________________________________________*/ /* DO NOT EDIT */ if(@$_GET['order']){ $order = @$_GET['order']; }else{ $order = @$_GET['order'] = $sort; } if($order!="wins" && $order!="games" && $order!="kills" && $order!="deaths" && $order!="beds") $order=$sort; $_link = mysql_connect($_db_host, $_db_username, $_db_password); mysql_select_db($_db_database, $_link); $_sql = "SELECT * FROM `$_db_table` ORDER BY `$order` DESC"; $_resultat = mysql_query($_sql, $_link); ?> <html> <head> <link rel="stylesheet" href="https://bootswatch.com/readable/bootstrap.css" media="screen"> <link rel="stylesheet" href="https://bootswatch.com/assets/css/bootswatch.min.css"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <title>Bedwars Statistiken</title> </head> <body> <div class="container well" style="background: white;"> <table class="table table-striped"> <thead> <tr> <th>Player</th> <th><a href="?order=wins">Wins <?PHP if(@$_GET['order'] == 'wins'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th> <th><a href="?order=games">Played Games <?PHP if(@$_GET['order'] == 'games'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th> <th><a href="?order=kills">Kills <?PHP if(@$_GET['order'] == 'kills'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th> <th><a href="?order=deaths">Deaths <?PHP if(@$_GET['order'] == 'deaths'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th> <th>K/D</th> <th><a href="?order=beds">Beds <?PHP if(@$_GET['order'] == 'beds'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th> </tr> </thead> <tbody> <?PHP while ($row = @mysql_fetch_array( $_resultat, MYSQL_ASSOC)) {?> <tr> <td><img src="http://cravatar.eu/helmhead/<?php echo $row['PName']; ?>/35.png"> <?php echo $row['PName']; ?></td> <td><?php echo $row['Wins']; ?></td> <td><?php echo $row['Games']; ?></td> <td><?php echo $row['Kills']; ?></td> <td><?php echo $row['Deaths']; ?></td> <td><?php if($row['Deaths']==0) echo $row['Kills']; else echo round($row['Kills'] / $row['Deaths'],2); ?></td> <td><?php echo $row['Beds']; ?></td> </tr> <?PHP } ?> </tbody> </table> </div> </body> </head> }} == 配置 == {{Hide|标题=展开配置文件 |内容= # Version 2.3.0 # Prefix for every chat message prefix: Bedwars # Choose the shop type (villager, gui) shop: Villager # Set the max. game length in minutes game-length-minutes: 60 # Control the debug-mode (Print everything in the console) debug: false # Control the villager shop villager-shop: true # Control the team chat team-chat: true # Control the usage of BungeeCord bungeecord: false # Set the fallback-server for BungeeCord fallback: HUB # The server motd (only bungeecord) motd: '&a&lBedwars %name% &6%teams%&rx&6%teamsize% %state%&r' # The reward for PointsAPI reward: win: 200 bedbreak: 50 achievement: 100 # Your MySQL connection data to store data in a databse sql: enable: false host: localhost user: username pass: password database: server_DB port: 3306 }} == 权限 ==
本页使用的模板:
模板:ArticleCategory
(
查看源代码
)
模板:Bukkit Plugin Infobox
(
查看源代码
)
模板:Hide
(
查看源代码
)
模板:Info
(
查看源代码
)
模板:Plugin Infobox
(
查看源代码
)
模板:信息表
(
查看源代码
)
模板:信息表/列表
(
查看源代码
)
模板:待完善
(
查看源代码
)(受保护)
模板:待翻译
(
查看源代码
)
返回
Bedwars
。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
查看
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
编辑相关
百科公告
编辑帮助
互助客栈
贡献分数
测试沙盒
发布条目
插件分类
管理
安全
聊天
编程
经济
修正
娱乐
综合
信息
机械
角色
传送
网页
整地
创世
付费
其它
工具
链入页面
相关更改
特殊页面
页面信息
相关网站
MCMOD百科
Minecraft中文百科
Minecraft纪念论坛
Minecraft百度贴吧
虚无世界Wiki