Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,23 @@ export default defineConfig({
label: "通用知识库",
collapsed: true,
items: [
{
label: "基础知识",
collapsed: true,
items: [
"general/basics/what-is-world",
"general/basics/what-is-lag",
"general/basics/what-is-log",
"general/basics/what-is-permission",
"general/basics/what-is-datapack",
"general/basics/what-is-plugin",
"general/basics/what-is-mod",
"general/basics/what-is-startup-script",
"general/basics/what-is-nbt",
"general/basics/what-is-namespace",
"general/basics/what-is-messy-code",
]
},
{
label: "安装 Java",
collapsed: true,
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-datapack.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是数据包?
topic: basics
template: splash
---

import { FileTree } from "@astrojs/starlight/components";
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-lag.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是卡顿?
topic: basics
template: splash
---

服务器中玩家可感知到的卡顿是多种多样的,其中主要包括服务器处理速度不足导致的 **MSPT** 偏高, **TPS** 偏低,
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-log.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是日志?
topic: basics
template: splash
---

**日志** 记录了服务器的运行信息,运行时产生的错误和警告,同时也是大佬们用来分析为什么功能不正常或不能用的必要途径。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-messy-code.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是乱码?
topic: basics
template: splash
---

有时候,你会发现你的文本文件中的中文都莫名其妙变成了一些奇奇怪怪的符号,看起来乱糟糟的,毫无逻辑可言。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-mod.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是模组?
topic: basics
template: splash
---

模组 (Mod) 是遵循 Forge、Fabric 或 LiteLoader 等 API 规范编写的 Java 程序。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-namespace.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是命名空间?
topic: basics
template: splash
---

## 概念
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-nbt.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是 NBT?
topic: basics
template: splash
---

## 概念
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-permission.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是权限?
topic: basics
template: splash
---

权限 - 在插件服务端中,确认玩家做某行为的能力是否被允许。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-plugin.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是插件?
topic: basics
template: splash
---

如果你玩过整合包你一定对 `Mod` (即模组) 这个概念相当了解,但如果你是第一次开服,你可能不知道什么是 `Plugin` (插件),本文章会详细为你介绍。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-startup-script.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是启动脚本?
topic: basics
template: splash
---

启动脚本主要部分就是设置 Java 参数设置。
Expand Down
1 change: 0 additions & 1 deletion src/content/docs/general/basics/what-is-world.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: 什么是世界?
topic: basics
template: splash
---

Minecraft 的几乎一切行为都是建立在 "世界" 上,而世界中的方块、实体等文件都存储在了根目录的对应文件夹下。
Expand Down
Loading