• 欢迎来到Minecraft插件百科!
  • 对百科编辑一脸懵逼?帮助:快速入门带您快速熟悉百科编辑!
  • 因近日遭受攻击,百科现已限制编辑,有意编辑请加入插件百科企鹅群:223812289

检查单独更改

滥用过滤器导航主页 | 最近过滤器更改 | 检查过去的编辑 | 滥用日志
跳转至: 导航搜索

本页面允许您检查防滥用过滤器根据某次单独更改所生成的变量,并使用过滤器进行测试。

根据本次更改生成的变量

变量
编辑是否被标记为小编辑 (minor_edit)
用户账户名称 (user_name)
Mofec x
用户所在群组(包括隐藏群组) (user_groups)
* user
页面编号 (article_articleid)
627
页面名字空间 (article_namespace)
0
页面标题(不含名字空间) (article_text)
BungeeCord开发教程
完整页面标题 (article_prefixedtext)
BungeeCord开发教程
最后十位对该页面贡献的用户 (article_recent_contributors)
Mofec x Mcdarc
操作 (action)
edit
编辑摘要/原因 (summary)
旧的内容模型 (old_content_model)
wikitext
新的内容模型 (new_content_model)
wikitext
编辑前的旧页面,wiki代码格式 (old_wikitext)
{{待完善}} {{待更新|url=https://www.spigotmc.org/wiki/bungeecord-plugin-development/}} == 介绍 == BungeeCord是一个转发服务端. 你也可以把它理解为代理服务端. 鉴于国内似乎没有BungeeCord插件, 我觉得写一篇教程会好些. == 利用工具 == 官方提供了一个极其好用的工具网页. 它可以让你方便地生成一个新的, 配置好的'''BungeeCord'''插件项目. 该页面的地址 [http://utilities.shall.fail/bungeecord/pluginhelper/] 只要简单地输入''Plugin name'', ''Plugin package'', ''Plugin author'', ''Plugin version'' 他就会自动为你生成一个项目, 和一些基础的代码. 如果你是新手, 你大可以勾选''Include a listener for me, please.''. 这样他会为你生成一个玩家连接的监听器. ==创建你的第一个BungeeCord插件 (代理)== 恭喜你决定创建自己第一个BungeeCord插件啦! 这个教程会使你打好基础.<br> Java 编程的知识是需要的.([[Bukkit/插件开发教程#学习Java|我没有Java基础]]) ===设置你的项目=== 这个教程只包括IntelliJ IDEA(一款IDE),其他IDE的操作相似. 在[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文]处附有Eclipse的操作<br> 首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.你应该有与下图相似的界面:<br> ===创建主类=== ===要让它被载入=== ===编译=== ===对开发者的话=== ==事件处理API教程== ==常有的误区== ==创建基础的命令功能 (代理)== ==Bukkit 和 BungeeCord 插件消息通道== ==聊天组件 API== ==在服务器之间传送玩家 (代理)== ==使用BungeeCord配置文件系统== ==通过BungeeCord创建计分板== ==创建一个Bungee的插件 (不需要Maven)==
编辑后的新页面,wiki代码格式 (new_wikitext)
{{待完善}} {{待更新|url=https://www.spigotmc.org/wiki/bungeecord-plugin-development/}} == 介绍 == BungeeCord是一个转发服务端. 你也可以把它理解为代理服务端. 鉴于国内似乎没有BungeeCord插件, 我觉得写一篇教程会好些. == 利用工具 == 官方提供了一个极其好用的工具网页. 它可以让你方便地生成一个新的, 配置好的'''BungeeCord'''插件项目. 该页面的地址 [http://utilities.shall.fail/bungeecord/pluginhelper/] 只要简单地输入''Plugin name'', ''Plugin package'', ''Plugin author'', ''Plugin version'' 他就会自动为你生成一个项目, 和一些基础的代码. 如果你是新手, 你大可以勾选''Include a listener for me, please.''. 这样他会为你生成一个玩家连接的监听器. ==创建你的第一个BungeeCord插件 (代理)== 恭喜你决定创建自己第一个BungeeCord插件啦! 这个教程会使你打好基础.<br> Java 编程的知识是需要的.([[Bukkit/插件开发教程#学习Java|我没有Java基础]]) ===设置你的项目=== 这个教程只包括IntelliJ IDEA(一款IDE),其他IDE的操作相似. 在[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文]处附有Eclipse的操作<br> 首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.(图片暂时传不上去,或[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文])<br> 点击Next,里面会有一下几类文本框: *Name - 对应的是你的项目的名称 *Directory - 项目文件保存的路径 *GroupId - 输入你的包名 *AntifactId - 输入你插件的名称 现在,只修改Name.然后点击Finish按钮,你的IDE会跳转,并展示pom.xml文件.<br> 我们要在'''</project>前'''添加一些内容.<br> <source lang="xml"> <repositories> <repository> <id>bungeecord-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.16-R0.5-SNAPSHOT</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.16-R0.5-SNAPSHOT</version> <type>javadoc</type> <scope>provided</scope> </dependency> </dependencies> </source> ===创建主类=== ===要让它被载入=== ===编译=== ===对开发者的话=== ==事件处理API教程== ==常有的误区== ==创建基础的命令功能 (代理)== ==Bukkit 和 BungeeCord 插件消息通道== ==聊天组件 API== ==在服务器之间传送玩家 (代理)== ==使用BungeeCord配置文件系统== ==通过BungeeCord创建计分板== ==创建一个Bungee的插件 (不需要Maven)==
编辑产生的差异 (edit_diff)
@@ -26,5 +26,51 @@ 在[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文]处附有Eclipse的操作<br> -首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.你应该有与下图相似的界面:<br> +首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.(图片暂时传不上去,或[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文])<br> +点击Next,里面会有一下几类文本框: +*Name - 对应的是你的项目的名称 +*Directory - 项目文件保存的路径 +*GroupId - 输入你的包名 +*AntifactId - 输入你插件的名称 + +现在,只修改Name.然后点击Finish按钮,你的IDE会跳转,并展示pom.xml文件.<br> +我们要在'''</project>前'''添加一些内容.<br> +<source lang="xml"> + <repositories> + <repository> + <id>bungeecord-repo</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </repository> + </repositories> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.6.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>net.md-5</groupId> + <artifactId>bungeecord-api</artifactId> + <version>1.16-R0.5-SNAPSHOT</version> + <type>jar</type> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>net.md-5</groupId> + <artifactId>bungeecord-api</artifactId> + <version>1.16-R0.5-SNAPSHOT</version> + <type>javadoc</type> + <scope>provided</scope> + </dependency> + </dependencies> + +</source>
编辑增加的行 (added_lines)
首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.(图片暂时传不上去,或[https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc 原文])<br> 点击Next,里面会有一下几类文本框: *Name - 对应的是你的项目的名称 *Directory - 项目文件保存的路径 *GroupId - 输入你的包名 *AntifactId - 输入你插件的名称 现在,只修改Name.然后点击Finish按钮,你的IDE会跳转,并展示pom.xml文件.<br> 我们要在'''</project>前'''添加一些内容.<br> <source lang="xml"> <repositories> <repository> <id>bungeecord-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.16-R0.5-SNAPSHOT</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.16-R0.5-SNAPSHOT</version> <type>javadoc</type> <scope>provided</scope> </dependency> </dependencies> </source>
编辑后的新页面,已解析为HTML源码 (new_html)
<div class="mw-parser-output"><div class="infoBox" style="width:80%;border-left: 10px solid green;"><div class="infoBoxContent"> <div class="infoBoxIcon" style=""><img alt="Icon-info.png" src="/images/thumb/5/57/Icon-info.png/50px-Icon-info.png" width="50" height="50" srcset="/images/thumb/5/57/Icon-info.png/75px-Icon-info.png 1.5x, /images/thumb/5/57/Icon-info.png/100px-Icon-info.png 2x" /></div><div class="infoBoxText" style="color: green;"><b>本条目已有一定量的内容,但仍需完善</b> <p>欢迎参与<a class="external text" href="https://mineplugin.org/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit">本条目的完善工作</a>。 </p><p>你可以从以下几个方面入手 </p> <ul><li>参阅<a href="/Studio:%E6%A0%BC%E5%BC%8F%E5%8C%96%E6%89%8B%E5%86%8C" class="mw-redirect" title="Studio:格式化手册">格式化手册</a>,并对该页面进行相应格式排版工作;</li> <li>日常检查是否内容有更新版本并更新该页面;</li> <li>修复该页面中已出现/潜在的问题</li></ul> </div> </div></div> <div class="infoBox" style="width:80%;border-left: 10px solid yellow;"><div class="infoBoxContent"> <div class="infoBoxTitle" style="">本条目对应原文已经或正在更新。</div><div class="infoBoxIcon" style=""><img alt="Icon-info.png" src="/images/thumb/5/57/Icon-info.png/50px-Icon-info.png" width="50" height="50" srcset="/images/thumb/5/57/Icon-info.png/75px-Icon-info.png 1.5x, /images/thumb/5/57/Icon-info.png/100px-Icon-info.png 2x" /></div><div class="infoBoxText" style="">近期请前往<a class="external text" href="https://www.spigotmc.org/wiki/bungeecord-plugin-development/">这里</a>关注,查看新的版本并更新至本条目。</div> </div></div> <div id="toc" class="toc"><div class="toctitle" lang="zh-CN" dir="ltr"><h2>目录</h2></div> <ul> <li class="toclevel-1 tocsection-1"><a href="#.E4.BB.8B.E7.BB.8D"><span class="tocnumber">1</span> <span class="toctext">介绍</span></a></li> <li class="toclevel-1 tocsection-2"><a href="#.E5.88.A9.E7.94.A8.E5.B7.A5.E5.85.B7"><span class="tocnumber">2</span> <span class="toctext">利用工具</span></a></li> <li class="toclevel-1 tocsection-3"><a href="#.E5.88.9B.E5.BB.BA.E4.BD.A0.E7.9A.84.E7.AC.AC.E4.B8.80.E4.B8.AABungeeCord.E6.8F.92.E4.BB.B6_.28.E4.BB.A3.E7.90.86.29"><span class="tocnumber">3</span> <span class="toctext">创建你的第一个BungeeCord插件 (代理)</span></a> <ul> <li class="toclevel-2 tocsection-4"><a href="#.E8.AE.BE.E7.BD.AE.E4.BD.A0.E7.9A.84.E9.A1.B9.E7.9B.AE"><span class="tocnumber">3.1</span> <span class="toctext">设置你的项目</span></a></li> <li class="toclevel-2 tocsection-5"><a href="#.E5.88.9B.E5.BB.BA.E4.B8.BB.E7.B1.BB"><span class="tocnumber">3.2</span> <span class="toctext">创建主类</span></a></li> <li class="toclevel-2 tocsection-6"><a href="#.E8.A6.81.E8.AE.A9.E5.AE.83.E8.A2.AB.E8.BD.BD.E5.85.A5"><span class="tocnumber">3.3</span> <span class="toctext">要让它被载入</span></a></li> <li class="toclevel-2 tocsection-7"><a href="#.E7.BC.96.E8.AF.91"><span class="tocnumber">3.4</span> <span class="toctext">编译</span></a></li> <li class="toclevel-2 tocsection-8"><a href="#.E5.AF.B9.E5.BC.80.E5.8F.91.E8.80.85.E7.9A.84.E8.AF.9D"><span class="tocnumber">3.5</span> <span class="toctext">对开发者的话</span></a></li> </ul> </li> <li class="toclevel-1 tocsection-9"><a href="#.E4.BA.8B.E4.BB.B6.E5.A4.84.E7.90.86API.E6.95.99.E7.A8.8B"><span class="tocnumber">4</span> <span class="toctext">事件处理API教程</span></a></li> <li class="toclevel-1 tocsection-10"><a href="#.E5.B8.B8.E6.9C.89.E7.9A.84.E8.AF.AF.E5.8C.BA"><span class="tocnumber">5</span> <span class="toctext">常有的误区</span></a></li> <li class="toclevel-1 tocsection-11"><a href="#.E5.88.9B.E5.BB.BA.E5.9F.BA.E7.A1.80.E7.9A.84.E5.91.BD.E4.BB.A4.E5.8A.9F.E8.83.BD_.28.E4.BB.A3.E7.90.86.29"><span class="tocnumber">6</span> <span class="toctext">创建基础的命令功能 (代理)</span></a></li> <li class="toclevel-1 tocsection-12"><a href="#Bukkit_.E5.92.8C_BungeeCord_.E6.8F.92.E4.BB.B6.E6.B6.88.E6.81.AF.E9.80.9A.E9.81.93"><span class="tocnumber">7</span> <span class="toctext">Bukkit 和 BungeeCord 插件消息通道</span></a></li> <li class="toclevel-1 tocsection-13"><a href="#.E8.81.8A.E5.A4.A9.E7.BB.84.E4.BB.B6_API"><span class="tocnumber">8</span> <span class="toctext">聊天组件 API</span></a></li> <li class="toclevel-1 tocsection-14"><a href="#.E5.9C.A8.E6.9C.8D.E5.8A.A1.E5.99.A8.E4.B9.8B.E9.97.B4.E4.BC.A0.E9.80.81.E7.8E.A9.E5.AE.B6_.28.E4.BB.A3.E7.90.86.29"><span class="tocnumber">9</span> <span class="toctext">在服务器之间传送玩家 (代理)</span></a></li> <li class="toclevel-1 tocsection-15"><a href="#.E4.BD.BF.E7.94.A8BungeeCord.E9.85.8D.E7.BD.AE.E6.96.87.E4.BB.B6.E7.B3.BB.E7.BB.9F"><span class="tocnumber">10</span> <span class="toctext">使用BungeeCord配置文件系统</span></a></li> <li class="toclevel-1 tocsection-16"><a href="#.E9.80.9A.E8.BF.87BungeeCord.E5.88.9B.E5.BB.BA.E8.AE.A1.E5.88.86.E6.9D.BF"><span class="tocnumber">11</span> <span class="toctext">通过BungeeCord创建计分板</span></a></li> <li class="toclevel-1 tocsection-17"><a href="#.E5.88.9B.E5.BB.BA.E4.B8.80.E4.B8.AABungee.E7.9A.84.E6.8F.92.E4.BB.B6_.28.E4.B8.8D.E9.9C.80.E8.A6.81Maven.29"><span class="tocnumber">12</span> <span class="toctext">创建一个Bungee的插件 (不需要Maven)</span></a></li> </ul> </div> <h2><span id="介绍"></span><span class="mw-headline" id=".E4.BB.8B.E7.BB.8D">介绍</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=1" title="编辑小节:介绍">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <p>BungeeCord是一个转发服务端. 你也可以把它理解为代理服务端. 鉴于国内似乎没有BungeeCord插件, 我觉得写一篇教程会好些. </p> <h2><span id="利用工具"></span><span class="mw-headline" id=".E5.88.A9.E7.94.A8.E5.B7.A5.E5.85.B7">利用工具</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=2" title="编辑小节:利用工具">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <p>官方提供了一个极其好用的工具网页. 它可以让你方便地生成一个新的, 配置好的<b>BungeeCord</b>插件项目. </p><p>该页面的地址 <a class="external autonumber" href="http://utilities.shall.fail/bungeecord/pluginhelper/">[1]</a> </p><p>只要简单地输入<i>Plugin name</i>, <i>Plugin package</i>, <i>Plugin author</i>, <i>Plugin version</i> </p><p>他就会自动为你生成一个项目, 和一些基础的代码. </p><p>如果你是新手, 你大可以勾选<i>Include a listener for me, please.</i>. 这样他会为你生成一个玩家连接的监听器. </p> <h2><span id="创建你的第一个BungeeCord插件_(代理)"></span><span class="mw-headline" id=".E5.88.9B.E5.BB.BA.E4.BD.A0.E7.9A.84.E7.AC.AC.E4.B8.80.E4.B8.AABungeeCord.E6.8F.92.E4.BB.B6_.28.E4.BB.A3.E7.90.86.29">创建你的第一个BungeeCord插件 (代理)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=3" title="编辑小节:创建你的第一个BungeeCord插件 (代理)">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <p>恭喜你决定创建自己第一个BungeeCord插件啦! 这个教程会使你打好基础.<br /> Java 编程的知识是需要的.(<a href="/Bukkit/%E6%8F%92%E4%BB%B6%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B#.E5.AD.A6.E4.B9.A0Java" title="Bukkit/插件开发教程">我没有Java基础</a>) </p> <h3><span id="设置你的项目"></span><span class="mw-headline" id=".E8.AE.BE.E7.BD.AE.E4.BD.A0.E7.9A.84.E9.A1.B9.E7.9B.AE">设置你的项目</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=4" title="编辑小节:设置你的项目">编辑</a><span class="mw-editsection-bracket">]</span></span></h3> <p>这个教程只包括IntelliJ IDEA(一款IDE),其他IDE的操作相似. 在<a class="external text" href="https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc">原文</a>处附有Eclipse的操作<br /> </p><p>首先打开你的IDE,创建一个新的项目,在弹出的选项卡中选择Maven.(图片暂时传不上去,或<a class="external text" href="https://www.spigotmc.org/wiki/create-your-first-bungeecord-plugin-proxy-spigotmc">原文</a>)<br /> 点击Next,里面会有一下几类文本框: </p> <ul><li>Name - 对应的是你的项目的名称</li> <li>Directory - 项目文件保存的路径</li> <li>GroupId - 输入你的包名</li> <li>AntifactId - 输入你插件的名称</li></ul> <p>现在,只修改Name.然后点击Finish按钮,你的IDE会跳转,并展示pom.xml文件.<br /> 我们要在<b>&lt;/project&gt;前</b>添加一些内容.<br /> </p> <div class="mw-highlight mw-content-ltr" dir="ltr"><pre><span></span> <span class="nt">&lt;repositories&gt;</span> <span class="nt">&lt;repository&gt;</span> <span class="nt">&lt;id&gt;</span>bungeecord-repo<span class="nt">&lt;/id&gt;</span> <span class="nt">&lt;url&gt;</span>https://oss.sonatype.org/content/repositories/snapshots<span class="nt">&lt;/url&gt;</span> <span class="nt">&lt;/repository&gt;</span> <span class="nt">&lt;/repositories&gt;</span> <span class="nt">&lt;build&gt;</span> <span class="nt">&lt;plugins&gt;</span> <span class="nt">&lt;plugin&gt;</span> <span class="nt">&lt;groupId&gt;</span>org.apache.maven.plugins<span class="nt">&lt;/groupId&gt;</span> <span class="nt">&lt;artifactId&gt;</span>maven-compiler-plugin<span class="nt">&lt;/artifactId&gt;</span> <span class="nt">&lt;version&gt;</span>3.6.1<span class="nt">&lt;/version&gt;</span> <span class="nt">&lt;configuration&gt;</span> <span class="nt">&lt;source&gt;</span>1.8 </pre></div> <pre> &lt;target&gt;1.8&lt;/target&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;net.md-5&lt;/groupId&gt; &lt;artifactId&gt;bungeecord-api&lt;/artifactId&gt; &lt;version&gt;1.16-R0.5-SNAPSHOT&lt;/version&gt; &lt;type&gt;jar&lt;/type&gt; &lt;scope&gt;provided&lt;/scope&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;net.md-5&lt;/groupId&gt; &lt;artifactId&gt;bungeecord-api&lt;/artifactId&gt; &lt;version&gt;1.16-R0.5-SNAPSHOT&lt;/version&gt; &lt;type&gt;javadoc&lt;/type&gt; &lt;scope&gt;provided&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt; </pre> <p>&lt;/source&gt; </p><p><br /> </p> <h3><span id="创建主类"></span><span class="mw-headline" id=".E5.88.9B.E5.BB.BA.E4.B8.BB.E7.B1.BB">创建主类</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=5" title="编辑小节:创建主类">编辑</a><span class="mw-editsection-bracket">]</span></span></h3> <h3><span id="要让它被载入"></span><span class="mw-headline" id=".E8.A6.81.E8.AE.A9.E5.AE.83.E8.A2.AB.E8.BD.BD.E5.85.A5">要让它被载入</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=6" title="编辑小节:要让它被载入">编辑</a><span class="mw-editsection-bracket">]</span></span></h3> <h3><span id="编译"></span><span class="mw-headline" id=".E7.BC.96.E8.AF.91">编译</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=7" title="编辑小节:编译">编辑</a><span class="mw-editsection-bracket">]</span></span></h3> <h3><span id="对开发者的话"></span><span class="mw-headline" id=".E5.AF.B9.E5.BC.80.E5.8F.91.E8.80.85.E7.9A.84.E8.AF.9D">对开发者的话</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=8" title="编辑小节:对开发者的话">编辑</a><span class="mw-editsection-bracket">]</span></span></h3> <h2><span id="事件处理API教程"></span><span class="mw-headline" id=".E4.BA.8B.E4.BB.B6.E5.A4.84.E7.90.86API.E6.95.99.E7.A8.8B">事件处理API教程</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=9" title="编辑小节:事件处理API教程">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="常有的误区"></span><span class="mw-headline" id=".E5.B8.B8.E6.9C.89.E7.9A.84.E8.AF.AF.E5.8C.BA">常有的误区</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=10" title="编辑小节:常有的误区">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="创建基础的命令功能_(代理)"></span><span class="mw-headline" id=".E5.88.9B.E5.BB.BA.E5.9F.BA.E7.A1.80.E7.9A.84.E5.91.BD.E4.BB.A4.E5.8A.9F.E8.83.BD_.28.E4.BB.A3.E7.90.86.29">创建基础的命令功能 (代理)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=11" title="编辑小节:创建基础的命令功能 (代理)">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="Bukkit_和_BungeeCord_插件消息通道"></span><span class="mw-headline" id="Bukkit_.E5.92.8C_BungeeCord_.E6.8F.92.E4.BB.B6.E6.B6.88.E6.81.AF.E9.80.9A.E9.81.93">Bukkit 和 BungeeCord 插件消息通道</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=12" title="编辑小节:Bukkit 和 BungeeCord 插件消息通道">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="聊天组件_API"></span><span class="mw-headline" id=".E8.81.8A.E5.A4.A9.E7.BB.84.E4.BB.B6_API">聊天组件 API</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=13" title="编辑小节:聊天组件 API">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="在服务器之间传送玩家_(代理)"></span><span class="mw-headline" id=".E5.9C.A8.E6.9C.8D.E5.8A.A1.E5.99.A8.E4.B9.8B.E9.97.B4.E4.BC.A0.E9.80.81.E7.8E.A9.E5.AE.B6_.28.E4.BB.A3.E7.90.86.29">在服务器之间传送玩家 (代理)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=14" title="编辑小节:在服务器之间传送玩家 (代理)">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="使用BungeeCord配置文件系统"></span><span class="mw-headline" id=".E4.BD.BF.E7.94.A8BungeeCord.E9.85.8D.E7.BD.AE.E6.96.87.E4.BB.B6.E7.B3.BB.E7.BB.9F">使用BungeeCord配置文件系统</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=15" title="编辑小节:使用BungeeCord配置文件系统">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="通过BungeeCord创建计分板"></span><span class="mw-headline" id=".E9.80.9A.E8.BF.87BungeeCord.E5.88.9B.E5.BB.BA.E8.AE.A1.E5.88.86.E6.9D.BF">通过BungeeCord创建计分板</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=16" title="编辑小节:通过BungeeCord创建计分板">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <h2><span id="创建一个Bungee的插件_(不需要Maven)"></span><span class="mw-headline" id=".E5.88.9B.E5.BB.BA.E4.B8.80.E4.B8.AABungee.E7.9A.84.E6.8F.92.E4.BB.B6_.28.E4.B8.8D.E9.9C.80.E8.A6.81Maven.29">创建一个Bungee的插件 (不需要Maven)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=BungeeCord%E5%BC%80%E5%8F%91%E6%95%99%E7%A8%8B&amp;action=edit&amp;section=17" title="编辑小节:创建一个Bungee的插件 (不需要Maven)">编辑</a><span class="mw-editsection-bracket">]</span></span></h2> <!-- NewPP limit report Cached time: 20220312015156 Cache expiry: 86400 Dynamic content: false CPU time usage: 0.032 seconds Real time usage: 0.207 seconds Preprocessor visited node count: 151/1000000 Preprocessor generated node count: 711/1000000 Post‐expand include size: 2545/2097152 bytes Template argument size: 754/2097152 bytes Highest expansion depth: 5/40 Expensive parser function count: 0/100 Unstrip recursion depth: 0/20 Unstrip post‐expand size: 1176/5000000 bytes --> <!-- Transclusion expansion time report (%,ms,calls,template) 100.00% 7.049 1 -total 69.13% 4.873 1 模板:待完善 50.38% 3.551 2 模板:Info 29.42% 2.074 1 模板:待更新 --> </div>
更改的Unix时间戳 (timestamp)
1647049916