<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[狗二胡的个人博客]]></title> 
<atom:link href="https://gerhu.pueh.cn/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[狗二胡的个人博客]]></description>
<link>https://gerhu.pueh.cn/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>
<item>
    <title>使用1panel快速搭建blessing-skin-server皮肤站搭</title>
    <link>https://gerhu.pueh.cn/?post=19</link>
    <description><![CDATA[<h1>使用1panel快速搭建blessing-skin-server皮肤站搭</h1>
<p>使用1panel快速搭建自己的Minecraft皮肤站并实现外置登录</p>
<ul>
<li>自己搭建的服务器，关闭正版验证，没了用户验证，不显示皮肤，小伙伴还频繁换“马甲”，甚至有陌生人闯入？开启正版验证，小伙伴又没买国际版账号？试试外置登录吧！</li>
</ul>
<h3><strong>皮肤站</strong></h3>
<p>本文使用<a href="https://github.com/bs-community/blessing-skin-server">blessing-skin-server</a>作为皮肤站，这个其实是LittleSkin的开源社区版本。实现效果：</p>
<h3>用户角色管理</h3>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/6edd1763563656.png" alt="用户角色管理" /></p>
<h3>用户皮肤管理</h3>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/8ab11763563665.png" alt="用户皮肤管理" /></p>
<p>‍</p>
<h2><strong>部署网站</strong></h2>
<p><strong>使用面板:1panel</strong><br />
因为宝塔的教程有很多但是没有1panel的所以我做了一个</p>
<h4>第一步</h4>
<p>我们需要一个PHP的运行环境，这边教程使用的是8.1.33版本</p>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/d5351763563673.png" alt="image" /></p>
<h4>第二步</h4>
<p>创建PHP并添加拓展<br />
需要的拓展如表，不一定全部都要，如果你懂的可以删掉一些<br />
如果你是新手就全部加上把影响不大</p>
<table>
<thead>
<tr>
<th>Core</th>
</tr>
</thead>
<tbody>
<tr>
<td>date</td>
</tr>
<tr>
<td>libxml</td>
</tr>
<tr>
<td>openssl</td>
</tr>
<tr>
<td>pcre</td>
</tr>
<tr>
<td>sqlite3</td>
</tr>
<tr>
<td>zlib</td>
</tr>
<tr>
<td>bcmath</td>
</tr>
<tr>
<td>ctype</td>
</tr>
<tr>
<td>curl</td>
</tr>
<tr>
<td>dom</td>
</tr>
<tr>
<td>filter</td>
</tr>
<tr>
<td>ftp</td>
</tr>
<tr>
<td>gd</td>
</tr>
<tr>
<td>gettext</td>
</tr>
<tr>
<td>hash</td>
</tr>
<tr>
<td>iconv</td>
</tr>
<tr>
<td>intl</td>
</tr>
<tr>
<td>json</td>
</tr>
<tr>
<td>mbstring</td>
</tr>
<tr>
<td>SPL</td>
</tr>
<tr>
<td>session</td>
</tr>
<tr>
<td>pcntl</td>
</tr>
<tr>
<td>standard</td>
</tr>
<tr>
<td>mysqlnd</td>
</tr>
<tr>
<td>PDO</td>
</tr>
<tr>
<td>pdo_mysql</td>
</tr>
<tr>
<td>pdo_sqlite</td>
</tr>
<tr>
<td>Phar</td>
</tr>
<tr>
<td>posix</td>
</tr>
<tr>
<td>Reflection</td>
</tr>
<tr>
<td>mysqli</td>
</tr>
<tr>
<td>shmop</td>
</tr>
<tr>
<td>SimpleXML</td>
</tr>
<tr>
<td>soap</td>
</tr>
<tr>
<td>sockets</td>
</tr>
<tr>
<td>sodium</td>
</tr>
<tr>
<td>sysvsem</td>
</tr>
<tr>
<td>tokenizer</td>
</tr>
<tr>
<td>xml</td>
</tr>
<tr>
<td>xmlreader</td>
</tr>
<tr>
<td>xmlwriter</td>
</tr>
<tr>
<td>zip</td>
</tr>
<tr>
<td>fileinfo</td>
</tr>
</tbody>
</table>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/a4621763563687.png" alt="image" /></p>
<p>安装拓展需要一定时间请耐心等待</p>
<h4>第三步</h4>
<p>之后，到网站选项卡内，添加网站：</p>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/2c581763563696.png" alt="image" /></p>
<p>然后，如果你是新版本的1Panel者需要绑定数据库，老版本如果没有者不需要<br />
​<img src="https://gerhu.pueh.cn/content/uploadfile/202511/13f51763563703.png" alt="image" /></p>
<h4>第四步</h4>
<p>在网站配置中添加伪静态</p>
<blockquote>
<p>location / {<br />
try_files $uri/ /index.php?$query_string;<br />
}</p>
</blockquote>
<p><img src="https://gerhu.pueh.cn/content/uploadfile/202511/26d31763563711.png" alt="image" /></p>
<h4>第五步</h4>
<p>然后就是下载<a href="https://github.com/bs-community/blessing-skin-server">blessing-skin-server</a>包了<br />
github的下载速度可能过慢，所以我提供了一个直链下载地址:<br />
<a href="https://pan.pueh.cn/f/lAf8/blessing-skin-server-6.0.2.zip">点我下载</a><br />
然后解压到根目录即可<br />
这样就算搭建完成了，使用你的皮肤站域名访问即可</p>
<p>‍</p>]]></description>
    <pubDate>Wed, 19 Nov 2025 22:45:11 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=19</guid>
</item>
<item>
    <title>修复打印机共享终极解决方案，报错:0x000006ba、0x0000709、0x000011b</title>
    <link>https://gerhu.pueh.cn/?post=18</link>
    <description><![CDATA[<h2>前言</h2>
<p>在确保共享直连打印机的电脑正常共享完成打印机的情况下，并且2台或多台电脑的内网ip能够相互访问的情况下使用打印机共享，多台电脑共用一台打印机，遇到的报错解决方案。</p>
<h2>0x000006ba报错解决方案</h2>
<p><a href="https://gerhu.pueh.cn/content/uploadfile/202505/82fa1748402575.png"><img src="https://gerhu.pueh.cn/content/uploadfile/202505/82fa1748402575.png" alt="0x000006ba报错" /></a></p>
<h3>Windows 10解决方案</h3>
<p>问题导致原因：winndows 系统自动更新导致的问题，所以我们需要先尝试修复系统更新造成的打印机无法共享</p>
<p>使用以下软件，快速修改</p>
<h4><a href="https://pan.pueh.cn/f/RRCQ/%E7%B3%BB%E7%BB%9F%E6%9B%B4%E6%96%B0%E6%97%A0%E6%B3%95%E5%85%B1%E4%BA%AB%E8%A7%A3%E5%86%B3.exe">点我下载快速下载系统更新导致的共享问题软件</a></h4>
<p>打开软件后点击修复当前系统，一般就可以解决</p>
<p>第二步，为了防止问题再次出现，我们需要关闭win自动更新功能</p>
<p>使用一下软件，快速关闭系统更新</p>
<h4><a href="https://pan.pueh.cn/f/j3U9/%E5%85%B3%E9%97%AD%E7%B3%BB%E7%BB%9F%E8%87%AA%E5%8A%A8%E6%9B%B4%E6%96%B0Windows%20Update%20Blocker%20v1.8.zip">点我下载关闭win系统自动更新</a></h4>
<p>解压使用，打开软件后右边图标为红代表关闭成功</p>]]></description>
    <pubDate>Wed, 28 May 2025 11:00:38 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=18</guid>
</item>
<item>
    <title>我的世界聊天颜色或颜色代码</title>
    <link>https://gerhu.pueh.cn/?post=17</link>
    <description><![CDATA[<p>我的世界颜色代码分别为：&amp;4=大红 、&amp;c=浅红、 &amp;6=土黄、 &amp;e=金黄、 &amp;2=绿、 &amp;a=浅绿 、&amp;b=蓝绿、&amp;3=天蓝、 &amp;1=深蓝、 &amp;9=蓝紫、 &amp;d=粉红、 &amp;5=品红、 &amp;f=白、 &amp;7=灰、 &amp;8=深灰、 &amp;0=黑</p>]]></description>
    <pubDate>Thu, 08 May 2025 18:02:27 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=17</guid>
</item>
<item>
    <title>PUEH我的世界公益交流群微信群</title>
    <link>https://gerhu.pueh.cn/?post=16</link>
    <description><![CDATA[<p><img src="https://gerhu.pueh.cn/content/uploadfile/202505/ee1b1746585437.png" alt="PUEH我的世界公益交流群微信群" title="PUEH我的世界公益交流群微信群" />&quot;)</p>
<p>PUEH我的世界公益交流群微信群</p>]]></description>
    <pubDate>Tue, 06 May 2025 17:07:32 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=16</guid>
</item>
<item>
    <title>面板开服指令一套</title>
    <link>https://gerhu.pueh.cn/?post=4</link>
    <description><![CDATA[<hr />
<h2>title: 面板开服指令一套<br />
date: 2024-11-14T23:42:06Z<br />
lastmod: 2025-05-06T10:41:14Z</h2>
<h1>面板开服指令一套</h1>
<pre><code class="language-安装面板">sudo su -c "wget -qO- https://script.mcsmanager.com/setup_cn.sh | bash"</code></pre>
<pre><code class="language-下载java">wget https://cdn.azul.com/zulu/bin/zulu21.42.19-ca-jdk21.0.7-linux_x64.tar.gz</code></pre>
<pre><code class="language-安装java">tar -zxvf zulu21.42.19-ca-jdk21.0.7-linux_x64.tar.gz</code></pre>
<p>完成</p>
<p><a href="https://cdn.azul.com/zulu/bin/zulu21.36.17-ca-jdk21.0.4-linux_x64.tar.gz">https://cdn.azul.com/zulu/bin/zulu21.36.17-ca-jdk21.0.4-linux_x64.tar.gz</a></p>
<p><a href="https://www.oracle.com/java/technologies/javase/javase8u211-later-archive-downloads.html#license-lightbox">https://www.oracle.com/java/technologies/javase/javase8u211-later-archive-downloads.html#license-lightbox</a></p>
<p><a href="https://www.oracle.com/webapps/redirect/signon?nexturl=https://download.oracle.com/otn/java/jdk/8u411-b09/43d62d619be4e416215729597d70b8ac/jdk-8u411-linux-x64.tar.gz">https://www.oracle.com/webapps/redirect/signon?nexturl=https://download.oracle.com/otn/java/jdk/8u411-b09/43d62d619be4e416215729597d70b8ac/jdk-8u411-linux-x64.tar.gz</a></p>
<p>‍</p>]]></description>
    <pubDate>Tue, 06 May 2025 10:41:35 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=4</guid>
</item>
<item>
    <title>1分钟快速安装自建邮箱服务器</title>
    <link>https://gerhu.pueh.cn/?post=15</link>
    <description><![CDATA[<p>环境要求</p>
<p>确保你的服务器可以使用25端口加上全新的系统环境</p>
<p>有docker即可</p>
<pre><code>docker run --restart=always -itd -v /etc/localtime:/etc/localtime --name=poste -v /opt/docker/poste:/data -p 25:25 -p 110:110 -p 143:143 -p 587:587 -p 993:993 -p 995:995 -p 4190:4190 -p 443:443 -p 80:80 -h "你的域名" -e "DISABLE_CLAMAV=TRUE" -e "DISABLE_RSPAMD=TRUE" analogic/poste.io</code></pre>
<p>请注意 ⚠️&quot;你的域名&quot;上面命令中的你的域名字段需要替换成你自己的域名才行<br />
运行以上命令安装后</p>
<p>完成域名解析工作</p>
<table>
<thead>
<tr>
<th>主机记录</th>
<th>记录类型</th>
<th>记录值</th>
</tr>
</thead>
<tbody>
<tr>
<td>@</td>
<td>TXT</td>
<td>v=spf1 ip你的服务器ip ~all</td>
</tr>
<tr>
<td>@</td>
<td>TXT</td>
<td>v=spf1 mx -all</td>
</tr>
<tr>
<td>mail</td>
<td>TXT</td>
<td>v=spf1 mx -all</td>
</tr>
<tr>
<td>MX</td>
<td>TXT</td>
<td>你的邮箱域名比如mail.pueh.cn</td>
<td>10</td>
</tr>
<tr>
<td>mail</td>
<td>A</td>
<td>服务器ip</td>
</tr>
</tbody>
</table>
<p>完成解析后，你的部署任务就完成了</p>
<p>快速打开浏览器访问你的邮箱域名进入浏览器后台进行操作修改创建即可</p>]]></description>
    <pubDate>Thu, 24 Apr 2025 18:35:44 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=15</guid>
</item>
<item>
    <title>二胡从2018年至今，买了多少家厂商的云服务器</title>
    <link>https://gerhu.pueh.cn/?post=12</link>
    <description><![CDATA[<h1>二胡从2018年至今，买了多少家厂商的云服务器</h1>
<p>仅仅买过不代表实际花了多少钱</p>
<p>1.<a href="https://cloud.lolipa.cc/">洛雨云计算 | 智能创造无限可能</a></p>
<p>2.风林水起 [气死人的云]</p>
<p>3.<a href="https://www.szhdy.com/">狐蒂云计算平台</a></p>
<p>4.<a href="https://www.rainyun.com/home">雨云 - 新一代云服务提供商</a></p>
<p>5.创世云联 [以跑路，因诈骗]</p>
<p>6.铭瑄数据 [以跑路现在好像又复活了]</p>
<p>7.小黑云 [好像跟铭瑄数据和创明数据是一起的]</p>
<p>7.易云 [以跑路]</p>
<p>8.<a href="https://www.qiaoxh.com/cart">活动通知_所有产品 - 乔星欢</a></p>
<p>9.速星云</p>
<p>10.<a href="https://v2.simpcloud.cn/introduction/index.html">简幻云平台</a></p>
<p>11.<a href="https://www.ransuyun.com/">燃速云 - 高防服务器-企业服务器-服务器托管-一手货源</a></p>
<p>12.闪电云 [QQ:3352118375]</p>
<p>13.<a href="https://yun.66jw.cn/login">登录 | 绝闻云</a></p>
<p>14.<a href="https://www.jinghanyun.com/">京瀚云 - 云服务器、智防CDN、高防服务器、香港服务器、海外服务器、企业级云计算服务提供商</a></p>
<p>15.<a href="https://mingkj.com/login">登录 | 炎火云</a></p>
<p>16.滑稽仙境 [这是一个发卡网，以前买过vps，现在已经跑路]</p>
<p>17.泷奉云-企业云计算服务商 [句小道消息已经跑路，多良心的一家海外云厂商啊]</p>
<p>18.<a href="https://www.aliyun.com/">阿里云</a> [大厂，因icp备案所以要买]</p>
<p>19.<a href="https://cloud.tencent.com/">腾讯云 产业智变·云启未来 - 腾讯</a> [大厂，数据库]</p>
<p>20.<a href="https://www.huaweicloud.com/intl/zh-cn/">共建智能世界云底座-华为云</a> [大厂，买过但忘记原因了]</p>
<p>21.<a href="https://docs.jdcloud.com/cn/">产品文档-帮助文档与支持中心-京东云</a> [大厂，忘记原因]</p>
<p>22.<a href="https://qiezic.com/cart?fid=4&amp;gid=73">所有产品_美国高防-配置一_亿信互联 全球高防服务器</a></p>
<p>23.白昼云 [网站找不到了]</p>
<p>24.<a href="https://www.007idc.cn/">零零七IDC_专业云计算服务提供商_高效稳定的服务器租用与托管服务</a></p>
<p>25.<a href="https://www.zovps.com/">云服务器_云主机_云计算服务器_弹性云服务器_慈云数据</a></p>
<p>26.<a href="https://www.wuyuidc.com/index.html">物语云计算</a></p>
<p>27.<a href="https://www.rhymc.com/index.php">门户首页 - 旋律工艺云计算 - 我的世界服务器出租租用|Minecraft服务器出租租用|我的世界联机|Minecraft联机|我的世界面板服</a></p>
<p>28.<a href="https://www.asiayun.com/">亚洲云</a></p>
<p>29.<a href="https://www.west.cn/">西部数码</a></p>
<p>30.<a href="https://www.kvmla.pro/index.php">kvmla</a>[海外服务器厂商]</p>
<p>31.<a href="http://www.hostyun.com/">hostyun</a>[日本服务器厂商]</p>
<p>其实还有很多我忘了，或者是通过qq购买的</p>
<p>‍</p>]]></description>
    <pubDate>Wed, 19 Feb 2025 21:15:18 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=12</guid>
</item>
<item>
    <title>zpnc使用教程</title>
    <link>https://gerhu.pueh.cn/?post=13</link>
    <description><![CDATA[<h1>zpnc使用教程</h1>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#main">主要</a></h2>
<blockquote>
<p>显示插件的帮助。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#create">创造</a></h2>
<blockquote>
<p>创建 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs create &lt;id&gt; &lt;type&gt; &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是 NPC 类型。<a href="https://github.com/gonalez/znpc-servers/wiki/Others#npc-types">此处</a>列出了所有 NPC 类型。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是 NPC 上方的文本。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs create 1 PLAYER jeff</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#delete">删除</a></h2>
<blockquote>
<p>删除 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs delete &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs delete 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#list">列表</a></h2>
<blockquote>
<p>列出所有 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs list</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#move">移动</a></h2>
<blockquote>
<p>将 NPC 移动到您的位置。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs move &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs move 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#teleport">传送</a></h2>
<blockquote>
<p>传送到NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs teleport &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs teleport 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#type">类型</a></h2>
<blockquote>
<p>更改 NPC 的类型。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs type &lt;id&gt; &lt;type&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是 NPC 类型。<a href="https://github.com/gonalez/znpc-servers/wiki/Others#npc-types">此处</a>列出了所有 NPC 类型。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs type 1 VILLAGER</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#lines">线</a></h2>
<blockquote>
<p>更改 NPC 上方的文本。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs lines &lt;id&gt; &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将显示在 NPC 上方的文本。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs lines 1 line-1 line-2</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#skin">皮肤</a></h2>
<blockquote>
<p>更改 NPC 的皮肤。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#using-username">使用用户名</a></h3>
<ul>
<li>​ <strong>​<code>/znpcs skin &lt;id&gt; &lt;username&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;username&gt;</code>​</strong> ​ 是皮肤将设置为 NPC 的玩家的用户名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs skin 1 Notch</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#using-url">使用 URL</a></h3>
<ul>
<li>​ <strong>​<code>/znpcs skin &lt;id&gt; &lt;url&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;url&gt;</code>​</strong> ​ 是皮肤图像的链接（应以 或 结尾）。<code>.png.jpg</code>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs skin 1 http://novask.in/5126623161.png</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#height">高度</a></h2>
<blockquote>
<p>更改 NPC 上方全息影像的高度。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs height &lt;id&gt; &lt;height&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;height&gt;</code>​</strong> ​ 是全息影像设置为的高度（默认值为 1）。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs height 1 0.75</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs height 1 1.5</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#action">行动</a></h2>
<blockquote>
<p>在 NPC 中设置动作（命令/消息）。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#cmd">CMD的</a></h3>
<ul>
<li>该命令以单击 NPC 的玩家身份运行。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CMD &lt;command&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;command&gt;</code>​</strong> ​ 是将要执行的命令。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CMD menu</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#console">安慰</a></h3>
<ul>
<li>该命令作为控制台运行。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CONSOLE &lt;command&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;command&gt;</code>​</strong> ​ 是将要执行的命令。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CONSOLE eco give %player_name% 10</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#chat">聊天</a></h3>
<ul>
<li>以点击NPC的玩家身份发送消息。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CHAT &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将要发送的消息。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CHAT sample text</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#message">消息</a></h3>
<ul>
<li>向点击NPC的玩家发送消息。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add MESSAGE &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将要发送的消息。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add MESSAGE Welcome</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#server">服务器</a></h3>
<ul>
<li>将点击NPC的玩家发送到另一个服务器。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add SERVER &lt;server&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;server&gt;</code>​</strong> ​ 是服务器的名称（在蹦极线配置中）。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 你需要一个蹦极代理来使用它</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add SERVER smp</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#list-actions">列表操作</a></h2>
<blockquote>
<p>列出在 NPC 中设置的操作。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; list</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; list</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#remove-action">删除操作</a></h2>
<blockquote>
<p>从 NPC 中删除操作。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; remove &lt;actionId&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;actionId&gt;</code>​</strong> ​ 是操作 ID。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 您可以使用<a href="https://github.com/gonalez/znpc-servers/wiki/commands#list-actions">“列出操作”</a>命令查找操作 ID。</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; remove 0</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#action-cooldown">动作冷却时间</a></h2>
<blockquote>
<p>为 NPC 中的动作设置冷却时间。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; cooldown &lt;actionId&gt; &lt;delay&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;actionId&gt;</code>​</strong> ​ 是操作 ID。</li>
<li>​ <strong>​<code>&lt;delay&gt;</code>​</strong> ​ 是以秒为单位的冷却延迟。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 冷却时间是指再次使用该动作之间的延迟。</p>
<p>5 秒的冷却时间意味着该动作可以每 5 秒运行一次</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; cooldown 0 5</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#toggle">切换</a></h2>
<blockquote>
<p>切换 NPC 的不同设置。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#look">看</a></h3>
<ul>
<li>切换 NPC 是否看向附近的玩家。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; look</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 look</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#holo">全息</a></h3>
<ul>
<li>切换 NPC 上方的全息影像。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; holo</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 holo</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#mirror">镜子</a></h3>
<ul>
<li>切换 NPC 的自身皮肤视图。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; mirror</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 mirror</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#glow">发亮</a></h3>
<ul>
<li>切换 npc 是否具有发光效果。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; glow &lt;color&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;颜色&gt;</code>​</strong> ​是发光效果的颜色。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 glow RED</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs toggle 1 glow BLUE</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#equip">装备</a></h2>
<blockquote>
<p>为NPC装备物品/盔甲。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs equip &lt;id&gt; &lt;slot&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;插槽&gt;</code>​</strong> ​是装备物品的插槽。</li>
<li>它们是 ,,,, 和 .<code>HANDOFFHANDHELMETCHESTPLATELEGGINGSBOOTS</code>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 将要装备的物品握在手中</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs equip 1 HELMET</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#customize">自定义</a></h2>
<blockquote>
<p>自定义 NPC 的设置。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs customize &lt;id&gt; &lt;type&gt; &lt;value&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是自定义的类型。所有自定义方法<a href="https://github.com/gonalez/znpc-servers/wiki/Others#all-znpcs-customize-methods">都在这里</a>。</li>
<li>​ <strong>​<code>&lt;value&gt;</code>​</strong> ​ 是相应自定义类型的值。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 不同的 NPC 类型有不同的自定义类型。</p>
</blockquote>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#path">路径</a></h2>
<blockquote>
<p>使 NPC 在路径上移动。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#create-path">创建路径</a></h3>
<ul>
<li>进入路径创建模式。</li>
<li>​ <strong>​<code>/znpcs path create &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是路径名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path create test1</code>​</strong>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 运行此命令后，移动到您希望 npc 移动的位置。 然后运行如下所示的 exit 命令。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#exit-path">退出路径</a></h3>
<ul>
<li>退出路径创建模式。</li>
<li>​ <strong>​<code>/znpcs path exit</code>​</strong>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path exit</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#set-path">设置路径</a></h3>
<ul>
<li>为 NPC 设置路径。</li>
<li>​ <strong>​<code>/znpcs path set &lt;id&gt; &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是路径名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path set 1 test1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#conversation">谈话</a></h2>
<blockquote>
<p>设置对话。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#create-conversation">创建对话</a></h3>
<ul>
<li>创建对话。</li>
<li>​ <strong>​<code>/znpcs conversation create &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation create test1</code>​</strong>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 运行此命令后，请使用以下命令。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#open-gui">打开 GUI</a></h3>
<ul>
<li>打开对话的编辑器 GUI。</li>
<li>​ <strong>​<code>/znpcs conversation gui</code>​</strong>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation gui</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#remove-conversation">移除对话</a></h3>
<ul>
<li>删除对话。</li>
<li>​ <strong>​<code>/znpcs conversation remove &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation remove test1</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#set-conversation">设置对话</a></h3>
<ul>
<li>为 NPC 设置对流。</li>
<li>​ <strong>​<code>/znpcs conversation set &lt;id&gt; &lt;name&gt; &lt;type&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是会话类型。</li>
<li>
<p>可用的对话类型包括：</p>
<ul>
<li>​<code>CLICK</code>​：在玩家点击NPC时执行。</li>
<li>​<code>RADIUS</code>​：当玩家在距离 NPC 的设定半径内时执行。<strong>例：</strong></li>
</ul>
</li>
<li>​ <strong>​<code>/znpcs conversation set 1 test1 CLICK</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs conversation set 1 test1 RADIUS</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#main">主要</a></h2>
<blockquote>
<p>显示插件的帮助。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#create">创造</a></h2>
<blockquote>
<p>创建 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs create &lt;id&gt; &lt;type&gt; &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是 NPC 类型。<a href="https://github.com/gonalez/znpc-servers/wiki/Others#npc-types">此处</a>列出了所有 NPC 类型。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是 NPC 上方的文本。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs create 1 PLAYER jeff</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#delete">删除</a></h2>
<blockquote>
<p>删除 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs delete &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs delete 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#list">列表</a></h2>
<blockquote>
<p>列出所有 NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs list</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#move">移动</a></h2>
<blockquote>
<p>将 NPC 移动到您的位置。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs move &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs move 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#teleport">传送</a></h2>
<blockquote>
<p>传送到NPC。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs teleport &lt;id&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs teleport 1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#type">类型</a></h2>
<blockquote>
<p>更改 NPC 的类型。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs type &lt;id&gt; &lt;type&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是 NPC 类型。<a href="https://github.com/gonalez/znpc-servers/wiki/Others#npc-types">此处</a>列出了所有 NPC 类型。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs type 1 VILLAGER</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#lines">线</a></h2>
<blockquote>
<p>更改 NPC 上方的文本。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs lines &lt;id&gt; &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将显示在 NPC 上方的文本。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs lines 1 line-1 line-2</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#skin">皮肤</a></h2>
<blockquote>
<p>更改 NPC 的皮肤。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#using-username">使用用户名</a></h3>
<ul>
<li>​ <strong>​<code>/znpcs skin &lt;id&gt; &lt;username&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;username&gt;</code>​</strong> ​ 是皮肤将设置为 NPC 的玩家的用户名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs skin 1 Notch</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#using-url">使用 URL</a></h3>
<ul>
<li>​ <strong>​<code>/znpcs skin &lt;id&gt; &lt;url&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;url&gt;</code>​</strong> ​ 是皮肤图像的链接（应以 或 结尾）。<code>.png.jpg</code>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs skin 1 http://novask.in/5126623161.png</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#height">高度</a></h2>
<blockquote>
<p>更改 NPC 上方全息影像的高度。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs height &lt;id&gt; &lt;height&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;height&gt;</code>​</strong> ​ 是全息影像设置为的高度（默认值为 1）。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs height 1 0.75</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs height 1 1.5</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#action">行动</a></h2>
<blockquote>
<p>在 NPC 中设置动作（命令/消息）。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#cmd">CMD的</a></h3>
<ul>
<li>该命令以单击 NPC 的玩家身份运行。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CMD &lt;command&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;command&gt;</code>​</strong> ​ 是将要执行的命令。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CMD menu</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#console">安慰</a></h3>
<ul>
<li>该命令作为控制台运行。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CONSOLE &lt;command&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;command&gt;</code>​</strong> ​ 是将要执行的命令。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CONSOLE eco give %player_name% 10</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#chat">聊天</a></h3>
<ul>
<li>以点击NPC的玩家身份发送消息。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CHAT &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将要发送的消息。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add CHAT sample text</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#message">消息</a></h3>
<ul>
<li>向点击NPC的玩家发送消息。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add MESSAGE &lt;text&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;text&gt;</code>​</strong> ​ 是将要发送的消息。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add MESSAGE Welcome</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#server">服务器</a></h3>
<ul>
<li>将点击NPC的玩家发送到另一个服务器。</li>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add SERVER &lt;server&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;server&gt;</code>​</strong> ​ 是服务器的名称（在蹦极线配置中）。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 你需要一个蹦极代理来使用它</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; add SERVER smp</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#list-actions">列表操作</a></h2>
<blockquote>
<p>列出在 NPC 中设置的操作。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; list</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; list</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#remove-action">删除操作</a></h2>
<blockquote>
<p>从 NPC 中删除操作。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; remove &lt;actionId&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;actionId&gt;</code>​</strong> ​ 是操作 ID。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 您可以使用<a href="https://github.com/gonalez/znpc-servers/wiki/commands#list-actions">“列出操作”</a>命令查找操作 ID。</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; remove 0</code>​</strong>​</li>
</ul>
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#action-cooldown">动作冷却时间</a></h2>
<blockquote>
<p>为 NPC 中的动作设置冷却时间。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; cooldown &lt;actionId&gt; &lt;delay&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;actionId&gt;</code>​</strong> ​ 是操作 ID。</li>
<li>​ <strong>​<code>&lt;delay&gt;</code>​</strong> ​ 是以秒为单位的冷却延迟。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 冷却时间是指再次使用该动作之间的延迟。</p>
<p>5 秒的冷却时间意味着该动作可以每 5 秒运行一次</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs action &lt;id&gt; cooldown 0 5</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#toggle">切换</a></h2>
<blockquote>
<p>切换 NPC 的不同设置。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#look">看</a></h3>
<ul>
<li>切换 NPC 是否看向附近的玩家。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; look</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 look</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#holo">全息</a></h3>
<ul>
<li>切换 NPC 上方的全息影像。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; holo</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 holo</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#mirror">镜子</a></h3>
<ul>
<li>切换 NPC 的自身皮肤视图。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; mirror</code>​</strong>​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 mirror</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#glow">发亮</a></h3>
<ul>
<li>切换 npc 是否具有发光效果。</li>
<li>​ <strong>​<code>/znpcs toggle &lt;id&gt; glow &lt;color&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;颜色&gt;</code>​</strong> ​是发光效果的颜色。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs toggle 1 glow RED</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs toggle 1 glow BLUE</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#equip">装备</a></h2>
<blockquote>
<p>为NPC装备物品/盔甲。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs equip &lt;id&gt; &lt;slot&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;插槽&gt;</code>​</strong> ​是装备物品的插槽。</li>
<li>它们是 ,,,, 和 .<code>HANDOFFHANDHELMETCHESTPLATELEGGINGSBOOTS</code>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 将要装备的物品握在手中</p>
</blockquote>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs equip 1 HELMET</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#customize">自定义</a></h2>
<blockquote>
<p>自定义 NPC 的设置。</p>
</blockquote>
<ul>
<li>​ <strong>​<code>/znpcs customize &lt;id&gt; &lt;type&gt; &lt;value&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是自定义的类型。所有自定义方法<a href="https://github.com/gonalez/znpc-servers/wiki/Others#all-znpcs-customize-methods">都在这里</a>。</li>
<li>​ <strong>​<code>&lt;value&gt;</code>​</strong> ​ 是相应自定义类型的值。</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 不同的 NPC 类型有不同的自定义类型。</p>
</blockquote>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#path">路径</a></h2>
<blockquote>
<p>使 NPC 在路径上移动。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#create-path">创建路径</a></h3>
<ul>
<li>进入路径创建模式。</li>
<li>​ <strong>​<code>/znpcs path create &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是路径名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path create test1</code>​</strong>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 运行此命令后，移动到您希望 npc 移动的位置。 然后运行如下所示的 exit 命令。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#exit-path">退出路径</a></h3>
<ul>
<li>退出路径创建模式。</li>
<li>​ <strong>​<code>/znpcs path exit</code>​</strong>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path exit</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#set-path">设置路径</a></h3>
<ul>
<li>为 NPC 设置路径。</li>
<li>​ <strong>​<code>/znpcs path set &lt;id&gt; &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是路径名。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs path set 1 test1</code>​</strong>​</li>
</ul>
<hr />
<h2><a href="https://github.com/gonalez/znpcs/wiki/Commands#conversation">谈话</a></h2>
<blockquote>
<p>设置对话。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#create-conversation">创建对话</a></h3>
<ul>
<li>创建对话。</li>
<li>​ <strong>​<code>/znpcs conversation create &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation create test1</code>​</strong>​</li>
</ul>
<blockquote>
<p><strong>注意：</strong> 运行此命令后，请使用以下命令。</p>
</blockquote>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#open-gui">打开 GUI</a></h3>
<ul>
<li>打开对话的编辑器 GUI。</li>
<li>​ <strong>​<code>/znpcs conversation gui</code>​</strong>​</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation gui</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#remove-conversation">移除对话</a></h3>
<ul>
<li>删除对话。</li>
<li>​ <strong>​<code>/znpcs conversation remove &lt;name&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
</ul>
<p><strong>例：</strong></p>
<ul>
<li>​ <strong>​<code>/znpcs conversation remove test1</code>​</strong>​</li>
</ul>
<h3><a href="https://github.com/gonalez/znpcs/wiki/Commands#set-conversation">设置对话</a></h3>
<ul>
<li>为 NPC 设置对流。</li>
<li>​ <strong>​<code>/znpcs conversation set &lt;id&gt; &lt;name&gt; &lt;type&gt;</code>​</strong> ​</li>
<li>​ <strong>​<code>&lt;id&gt;</code>​</strong> ​ 是 NPC ID。</li>
<li>​ <strong>​<code>&lt;name&gt;</code>​</strong> ​ 是对话名称。</li>
<li>​ <strong>​<code>&lt;type&gt;</code>​</strong> ​ 是会话类型。</li>
<li>
<p>可用的对话类型包括：</p>
<ul>
<li>​<code>CLICK</code>​：在玩家点击NPC时执行。</li>
<li>​<code>RADIUS</code>​：当玩家在距离 NPC 的设定半径内时执行。<strong>例：</strong></li>
</ul>
</li>
<li>​ <strong>​<code>/znpcs conversation set 1 test1 CLICK</code>​</strong>​</li>
<li>​ <strong>​<code>/znpcs conversation set 1 test1 RADIUS</code>​</strong>​</li>
</ul>
<p><a href="https://flowus.cn/f9eea9f8-1e9e-4c31-b08c-a02194a5bda7">znpc类型</a></p>
<p>‍</p>]]></description>
    <pubDate>Wed, 19 Feb 2025 12:36:35 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=13</guid>
</item>
<item>
    <title>Linux常用命令</title>
    <link>https://gerhu.pueh.cn/?post=11</link>
    <description><![CDATA[<h1>Linux常用命令</h1>
<p>reboot 重启服务器</p>
<p>tar -zxvf test.tar.gz 解压安装软件</p>
<p>‍</p>]]></description>
    <pubDate>Thu, 06 Feb 2025 00:56:27 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=11</guid>
</item>
<item>
    <title>TCP网络加速脚本大全</title>
    <link>https://gerhu.pueh.cn/?post=10</link>
    <description><![CDATA[<h1>TCP网络加速脚本大全</h1>
<h3><strong>1、BBR/BBR Plus/BBR 魔改版/LotServer(锐速)一键加速脚本</strong></h3>
<p>BBR是Google出品的TCP拥塞控制算法，目前集成在最新的Linux内核中。在国外VPS服务器上安装BBR后，可以明显提高连接速度，降低丢包。BBR也对SS/SSR有明显的加速作用，看Youbube视频时更为明显。另外如果在国外VPS服务器上架设网站，BBR也可以加速网站的加载速度。</p>
<p>BBR魔改版是在原版BBR基础上的修改版本，通过参数的修改，使加速算法更为激进，比原版BBR有更为明显的加速效果。</p>
<p>适用平台：XEN / KVM虚拟的VPS服务器。</p>
<p>支持系统：CentOS 6+、Debian 8+、Ubuntu 14+</p>
<p><strong>一键安装脚本执行命令：</strong></p>
<pre><code class="language-undefined">wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" &amp;&amp; chmod +x tcp.sh &amp;&amp; ./tcp.sh</code></pre>
<p>​关于此一键脚本的具体详情，请参考本站已发布文章 <a href="https://iyideng.net/black-technology/accelerator/bbr-plus-lotserver-4-in-1-script-linux-netspeed.html">TCP加速 一键安装管理脚本 | BBR 原版/Plus/魔改/锐速(LotServer)4合1超级一键加速脚本</a> 和 <a href="https://iyideng.net/black-technology/accelerator/bbr-plus-lotserver-xanmod-zen-6-in-1-script-linux-netspeed.html">TCP加速 一键安装管理脚本升级版 | BBR 原版/Plus/LotServer(锐速)/xanmod/Zen/BBR2测试版6合1超级一键加速脚本</a>[]()​</p>
<h3>2、LotServer(锐速)破解版一键加速脚本</h3>
<p>锐速又名ServerSpeeder，是一款著名的TCP加速工具，常用于国外VPS服务器上，对于丢包严重的线路有明显改善作用。</p>
<p><strong>锐速的优点：</strong></p>
<ul>
<li>作为一款单边加速工具，锐速只需安装服务器端，无需安装客户端，使用方便。</li>
<li>对VPS服务器的TCP流量加速作用明显，可以实现几倍到几十倍的提速。</li>
<li>明显加快服务器上架设网站的访问速度。</li>
<li>明显加快Shadowsocks/ShadowsocksR的代理速度，观看Youtube效果明显。</li>
</ul>
<p><strong>锐速的不足：</strong></p>
<ul>
<li>由于锐速安装时涉及到系统内核，所以OpenVZ虚拟的系统不能安装锐速；部分系统内核下，可能会安装失败；目前不能与BBR共存，因为带有BBR的内核版本都很新，锐速并不支持。</li>
<li>会加快服务器流量的消耗，但在可接受范围。</li>
</ul>
<p>适用平台：KVM/XEN 虚拟，不支持OpenVZ虚拟。</p>
<p>适用系统：CentOS/Debian/Ubuntu。（部分内核可能会安装失败）</p>
<p><strong>一键安装脚本执行命令：</strong></p>
<pre><code class="language-undefined">wget -N –no-check-certificate https://github.com/91yun/serverspeeder/raw/master/serverspeeder.sh &amp;&amp; bash serverspeeder.sh</code></pre>
<p>如果执行以上命令安装失败，那么就需要更换内核后重新安装，其实你可以用上面的脚本安装LotServer(锐速)就可以了。</p>
<h3>3、KCPTUN一键加速脚本</h3>
<p>KCPTUN是一款服务器双边加速工具，可以将服务器的TCP流量，比如Shadowsokcs/Shadowsocksr的流量，转化为KCP协议的UDP流量发出。作为一款暴力发包工具，KCPTUN可以有效解决丢包问题，明显提升传输速度，是站长目前用过的效果最为突出的加速工具。</p>
<p>适用平台：OpenVZ、KVM、Xen等。</p>
<p>适用系统：CentOS、Debian、Ubuntu等Linux发行版。</p>
<p><strong>（1）KCPTUN的优点:</strong></p>
<ul>
<li>
<p>不挑服务器平台，OpenVZ、KVM、Xen等虚拟化架构都支持。</p>
</li>
<li>
<p>基本不挑系统，Linxu下的CentOS、Debian、Ubuntu等都可以安装。</p>
</li>
<li>
<p>加速效果明显，可以避开TCP流量的QOS限速，减少拥堵。</p>
</li>
<li>
<p>经站长测试，使用KCPTUN对SSR流量加速后，访问Google/Youtube等网站时，可以达到接近秒开的效果，这一点表现比BBR/锐速更好一些。</p>
<p><strong>（2）KCPTUN的缺点：</strong></p>
</li>
<li>
<p>需要KCPTUN服务器端和客户端配合使用。</p>
</li>
<li>
<p>参数配置项较多，可能需要多次尝试不同的参数搭配，从而获得最佳效果。下文会提供一些常用搭配。</p>
</li>
<li>
<p>由于是暴力发包，KCPTUN可能会耗费成倍的服务器流量，还会影响到服务器上的邻居。</p>
</li>
<li>
<p>只能加速单一端口的TCP流量，对其余端口的TCP流量无加速效果，所以常用于SS/SSR加速。</p>
<p><strong>（3）执行一键安装脚本命令</strong></p>
</li>
</ul>
<p>请依次执行以下3条命令：</p>
<pre><code class="language-undefined">wget --no-check-certificate https://github.com/kuoruan/shell-scripts/raw/master/kcptun/kcptun.sh
chmod +x ./kcptun.sh
./kcptun.sh</code></pre>
<p>​<img src="https://iyideng.net/wp-content/uploads/2020/04/BBR-Plus-%E8%84%9A%E6%9C%AC%E6%B5%8B%E9%80%9F%E6%95%88%E6%9E%9C.jpeg" alt="https://iyideng.net/wp-content/uploads/2020/04/BBR-Plus-%E8%84%9A%E6%9C%AC%E6%B5%8B%E9%80%9F%E6%95%88%E6%9E%9C.jpeg" />​</p>
<p>​<img src="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E8%84%9A%E6%9C%AC%E6%B5%8B%E9%80%9F%E6%95%88%E6%9E%9C.jpeg" alt="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E8%84%9A%E6%9C%AC%E6%B5%8B%E9%80%9F%E6%95%88%E6%9E%9C.jpeg" />​</p>
<p>​<img src="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E7%BD%91%E9%A1%B5%E6%89%93%E5%BC%80%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95%E6%95%88%E6%9E%9C.gif" alt="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E7%BD%91%E9%A1%B5%E6%89%93%E5%BC%80%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95%E6%95%88%E6%9E%9C.gif" />​</p>
<p>​<img src="https://iyideng.net/wp-content/uploads/2020/04/BBR-Plus-%E4%BB%8E%E5%9B%BD%E5%A4%96%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95.png" alt="https://iyideng.net/wp-content/uploads/2020/04/BBR-Plus-%E4%BB%8E%E5%9B%BD%E5%A4%96%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95.png" />​</p>
<p>​<img src="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E4%BB%8E%E5%9B%BD%E5%A4%96%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95.jpeg" alt="https://iyideng.net/wp-content/uploads/2020/04/TCPA-%E4%BB%8E%E5%9B%BD%E5%A4%96%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E9%80%9F%E5%BA%A6%E6%B5%8B%E8%AF%95.jpeg" />​</p>
<p>BBR Plus 下载124KB的小文件，耗时1.3s下载完成，均速95.7kB/S；BBR Plus 下载5.65M的中型文件，耗时6.0s下载完成，均速965KB/s。</p>
<p>TCPA 下载124KB的小文件，耗时0.6s下载完成，均速218kB/S；TCPA下载5.65M的中型文件，耗时4.0s下载完成，均速1.4MB/s。</p>
<p>对于使用CentOS服务器系统搭建网站的用户来说，TCPA 比 BBR Plus 的加速效果更好，对于大流量的服务来说，BBR Plus 比 TCPA 对宽带利用率更高，速度更好。新手不建议使用 <strong>KCPTUN</strong>，一般都是配合SS/SSR科学上网客户端来使用，因为 <strong>KCPTUN</strong> 需要客户端和服务器端配合才有较好的效果，不适于网站的TCP网络优化加速。如果建站的话，请使用 LotServer(锐速) 或 BBR 加速即可，如果你使用CentOS系统，那么首选腾讯 TCPA 加速网站。</p>]]></description>
    <pubDate>Thu, 06 Feb 2025 00:56:23 +0800</pubDate>
    <dc:creator>二胡</dc:creator>
    <guid>https://gerhu.pueh.cn/?post=10</guid>
</item></channel>
</rss>