diff --git a/auth.md b/auth.md deleted file mode 100644 index d020162..0000000 --- a/auth.md +++ /dev/null @@ -1,41 +0,0 @@ -# 玩家认证 - -服务器采用混合验证模式。你可以使用我们的[皮肤站](https://auth.hfbz.net)或正版账号进入服务器。 - -## 正版账号 - -使用正版账号,你无需其他配置,在你的启动器中使用正版账号就行了。 - -## 外置登录 (Yggdrasil) - -对于没有正版账号的玩家,**直接使用离线模式是无法进入服务器的**,只能用我们的皮肤站。 - -外置登录可以为玩家提供统一的非 Mojang 游戏外登录体验,并支持显示上传至皮肤站的皮肤。 - -### 注册账号 - -打开[皮肤站](https://auth.hfbz.net),你会看到如下页面: - -![1-skin-signup](./assets/1-skin-signup.png) - -接下来,填入你的邮箱,设置密码,完成注册。 - -### 登录配置 - -在皮肤站登录后,你会看到如下页面: - -![2-skin-info](./assets/2-skin-info.png) - -复制`https://auth.hfbz.net/api/yggdrasil`,然后打开你的启动器,接下来以`PCL2`为例进行配置。 - -打开启动器,选择你需要的版本(本服使用1.21.1),到这个页面,然后`版本设置-设置` - -![3-launcher](./assets/3-launcher.png) - -接着,往下翻,找到`服务器`一栏,像这样填写: - -![4-launcher-config](./assets/4-launcher-config.png) - -注册链接就是写皮肤站的网址,填写完成,然后返回首页登录皮肤站账号,填写邮箱及密码即可。 - -`HMCL`以及其他启动器流程大致相同,如有疑问欢迎进群讨论。 diff --git a/getting-started.md b/getting-started.md index 5d58acf..0f61a11 100644 --- a/getting-started.md +++ b/getting-started.md @@ -1 +1,44 @@ # 快速开始 + + +## 玩家认证 + +服务器采用混合验证模式。你可以使用我们的[皮肤站](https://auth.hfbz.net)或正版账号进入服务器。 + +### 正版账号 + +使用正版账号,你无需其他配置,在你的启动器中使用正版账号就行了。 + +### 外置登录 (Yggdrasil) + +对于没有正版账号的玩家,**直接使用离线模式是无法进入服务器的**,只能用我们的皮肤站。 + +外置登录可以为玩家提供统一的非 Mojang 游戏外登录体验,并支持显示上传至皮肤站的皮肤。 + +#### 注册账号 + +打开[皮肤站](https://auth.hfbz.net),你会看到如下页面: + +![1-skin-signup](./assets/1-skin-signup.png) + +接下来,填入你的邮箱,设置密码,完成注册。 + +#### 登录配置 + +在皮肤站登录后,你会看到如下页面: + +![2-skin-info](./assets/2-skin-info.png) + +复制`https://auth.hfbz.net/api/yggdrasil`,然后打开你的启动器,接下来以`PCL2`为例进行配置。 + +打开启动器,选择你需要的版本(本服使用1.21.1),到这个页面,然后`版本设置-设置` + +![3-launcher](./assets/3-launcher.png) + +接着,往下翻,找到`服务器`一栏,像这样填写: + +![4-launcher-config](./assets/4-launcher-config.png) + +注册链接就是写皮肤站的网址,填写完成,然后返回首页登录皮肤站账号,填写邮箱及密码即可。 + +`HMCL`以及其他启动器流程大致相同,如有疑问欢迎进群讨论。 \ No newline at end of file diff --git a/install.md b/install.md deleted file mode 100644 index a37c51d..0000000 --- a/install.md +++ /dev/null @@ -1,11 +0,0 @@ -# 安装整合包 - -## 前置要求 - -- 安装`JDK 1.21` - -## 下载与解压 - -从群内下载。 - -## \ No newline at end of file diff --git a/introduction.md b/introduction.md index 5d721d4..307d1df 100644 --- a/introduction.md +++ b/introduction.md @@ -4,4 +4,5 @@ - 主服务器(Main) - 建筑服务器(Build) +- 小游戏服务器(Minigames) - 存档服务器(Archive) diff --git a/markdown-examples.md b/markdown-examples.md deleted file mode 100644 index f9258a5..0000000 --- a/markdown-examples.md +++ /dev/null @@ -1,85 +0,0 @@ -# Markdown Extension Examples - -This page demonstrates some of the built-in markdown extensions provided by VitePress. - -## Syntax Highlighting - -VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting: - -**Input** - -````md -```js{4} -export default { - data () { - return { - msg: 'Highlighted!' - } - } -} -``` -```` - -**Output** - -```js{4} -export default { - data () { - return { - msg: 'Highlighted!' - } - } -} -``` - -## Custom Containers - -**Input** - -```md -::: info -This is an info box. -::: - -::: tip -This is a tip. -::: - -::: warning -This is a warning. -::: - -::: danger -This is a dangerous warning. -::: - -::: details -This is a details block. -::: -``` - -**Output** - -::: info -This is an info box. -::: - -::: tip -This is a tip. -::: - -::: warning -This is a warning. -::: - -::: danger -This is a dangerous warning. -::: - -::: details -This is a details block. -::: - -## More - -Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown).