This repository has been archived by the owner on Jan 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,56 +54,7 @@ rewrite ^/subdir/([^/]*).json$ /subdir/get.php?type=json&uname=$1 last; | |
客户端配置: | ||
------------ | ||
|
||
#### UniSkinMod 1.2 版及以上 | ||
|
||
在你 MC 客户端的`.minecraft/config/UniSkinMod.cfg` 中加入你的皮肤站根地址: | ||
|
||
举个栗子: | ||
|
||
``` | ||
# SkinMe Default | ||
Root: http://www.skinme.cc/uniskin | ||
# Your Server | ||
Root: http://example.com | ||
``` | ||
如果你把皮肤站安装到子目录的话,请一起带上你的子目录。如果你的皮肤站首选 API 为 CustomSkinLoader API 的话,你需要在 UniSkinMod 配置文件中填入类似于 `http://example.com/usm` 来支持 UniSkinMod。 | ||
|
||
#### UniSkinMod 1.2 版以下 | ||
|
||
同样是在 `.minecraft/config/UniSkinMod.cfg` 中配置你的皮肤站地址,但是稍有点不一样。旧版的 UniSkinMod 是不支持 Json API 的,而是使用了传统图片链接的方式(其实这样的话皮肤站爷好实现): | ||
|
||
举个栗子: | ||
|
||
``` | ||
Skin: http://skins.minecraft.net/MinecraftSkins/%s.png | ||
Cape: http://skins.minecraft.net/MinecraftCloaks/%s.png | ||
# Your Server | ||
Skin: http://example.com/skin/%s.png | ||
Cape: http://example.com/cape/%s.png | ||
``` | ||
|
||
这是通过 URL 重写(伪静态)实现的,所以皮肤站目录下没有 `skin` 和 `cape` 目录也不要惊讶哦。 | ||
|
||
#### CustomSkinLoader 13.1 版以下: | ||
|
||
在 `.minecraft/CustomSkinLoader/skinurls.txt` 中添加你的皮肤站地址: | ||
|
||
``` | ||
http://example.com/skin/*.png | ||
http://skins.minecraft.net/MinecraftSkins/*.png | ||
http://minecrack.fr.nf/mc/skinsminecrackd/*.png | ||
http://www.skinme.cc/MinecraftSkins/*.png | ||
``` | ||
|
||
注意你需要将你的皮肤站地址放在配置文件最上方以优先加载。 | ||
|
||
同理在 `.minecraft/CustomSkinLoader/capeurls.txt` 中加入: | ||
|
||
``` | ||
http://example.com/cape/*.png | ||
``` | ||
|
||
#### CustomSkinLoader 13.1 | ||
#### CustomSkinLoader 13.1 及以上 | ||
|
||
CustomSkinLoader 13.1 经过作者的完全重写,支持了 CSL API,并且使用了高端洋气的 JSON 配置文件。 | ||
|
||
|
@@ -156,6 +107,60 @@ CustomSkinLoader 13.1 经过作者的完全重写,支持了 CSL API,并且 | |
|
||
有什么不会填的,请查看 CSL 开发者的 MCBBS 发布贴。 | ||
|
||
#### CustomSkinLoader 13.1 版以下: | ||
|
||
在 `.minecraft/CustomSkinLoader/skinurls.txt` 中添加你的皮肤站地址: | ||
|
||
``` | ||
http://example.com/skin/*.png | ||
http://skins.minecraft.net/MinecraftSkins/*.png | ||
http://minecrack.fr.nf/mc/skinsminecrackd/*.png | ||
http://www.skinme.cc/MinecraftSkins/*.png | ||
``` | ||
|
||
注意你需要将你的皮肤站地址放在配置文件最上方以优先加载。 | ||
|
||
同理在 `.minecraft/CustomSkinLoader/capeurls.txt` 中加入: | ||
|
||
``` | ||
http://example.com/cape/*.png | ||
``` | ||
|
||
|
||
#### UniSkinMod 1.2 版及以上 | ||
|
||
在你 MC 客户端的`.minecraft/config/UniSkinMod.cfg` 中加入你的皮肤站根地址: | ||
|
||
举个栗子: | ||
|
||
``` | ||
# SkinMe Default | ||
Root: http://www.skinme.cc/uniskin | ||
# Your Server | ||
Root: http://example.com | ||
``` | ||
如果你把皮肤站安装到子目录的话,请一起带上你的子目录。如果你的皮肤站首选 API 为 CustomSkinLoader API 的话,你需要在 UniSkinMod 配置文件中填入类似于 `http://example.com/usm` 来支持 UniSkinMod。 | ||
|
||
#### UniSkinMod 1.2 版以下 | ||
|
||
同样是在 `.minecraft/config/UniSkinMod.cfg` 中配置你的皮肤站地址,但是稍有点不一样。旧版的 UniSkinMod 是不支持 Json API 的,而是使用了传统图片链接的方式(其实这样的话皮肤站爷好实现): | ||
|
||
举个栗子: | ||
|
||
``` | ||
Skin: http://skins.minecraft.net/MinecraftSkins/%s.png | ||
Cape: http://skins.minecraft.net/MinecraftCloaks/%s.png | ||
# Your Server | ||
Skin: http://example.com/skin/%s.png | ||
Cape: http://example.com/cape/%s.png | ||
``` | ||
|
||
这是通过 URL 重写(伪静态)实现的,所以皮肤站目录下没有 `skin` 和 `cape` 目录也不要惊讶哦。 | ||
|
||
如果一切都正常工作,你就可以在游戏中看到你的皮肤啦~ | ||
|
||
![screenshot2](https://img.prinzeugen.net/image.php?di=42U6) | ||
|
||
常见问题: | ||
------------ | ||
|
||
|
@@ -169,7 +174,7 @@ CustomSkinLoader 13.1 经过作者的完全重写,支持了 CSL API,并且 | |
|
||
点进去,选择 response 选项卡,就可以看到报错信息,自己排错(往下看),或者带着报错联系我(邮件、论坛私信) | ||
|
||
#### `example.com/skin/xxx.png ` 404? | ||
#### 访问 `example.com/skin/xxx.png ` 404? | ||
|
||
请确认你的伪静态(URL 重写)是否配置正确。 | ||
|
||
|
@@ -183,15 +188,12 @@ CustomSkinLoader 13.1 经过作者的完全重写,支持了 CSL API,并且 | |
|
||
如果还是不能显示皮肤,请阅读您所使用的皮肤 Mod 的 FAQ。 | ||
|
||
还是不行的话,请在启动器开启调试模式,并且查看所有关于 skin 的日志。一般来说看了就可以明白了,如果还是不明白请邮件 [联系我](mailto:[email protected])(带上你的日志)。 | ||
还是不行的话,请在启动器开启调试模式,并且查看所有关于 skin 的日志, CSL 的日志位于 `.minecraft/CustomSkinLoader/CustomSkinLoader.log`。 | ||
|
||
如果一切都正常工作,你就可以在游戏中看到你的皮肤啦~ | ||
|
||
![screenshot2](https://img.prinzeugen.net/image.php?di=EV1E) | ||
一般来说看了就可以明白了,如果还是不明白请邮件 [联系我](mailto:[email protected])(带上你的日志)。 | ||
|
||
版权: | ||
------------ | ||
Blessing Skin Server 程序是基于 GNU General Public License 开放源代码的自由软件,你可以遵照 GPL 协议来修改和重新发布这一程序。 | ||
|
||
程序原作者为 [@printempw](https://prinzeugen.net/),转载请注明。 | ||
|