Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
update FAQ page
Browse files Browse the repository at this point in the history
  • Loading branch information
XXY233 committed Jul 6, 2024
1 parent 1059a31 commit 0193144
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 11 deletions.
21 changes: 10 additions & 11 deletions guide/start/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ keywords: [常见问题, 疑难解答, FAQ,进不去服务器]
sidebar_position: 2
---

import CodeBlock from "@theme/CodeBlock";
import ResolveDomain from "../../src/components/ResolveDomain";

## 服务器会换档吗?

我们承诺永不换档,不过,Flag 也有回收的一天,但我们会尽力让它多飘扬一会的。
Expand All @@ -19,11 +22,7 @@ sidebar_position: 2
2. 检查后如果输入正确,[清理 DNS 缓存](https://jingyan.baidu.com/article/59a015e34fcd70f7948865a9.html) 后使用原先的地址进入;
3. 如果上一步没有用,尝试将 DNS 服务器设置为 [114DNS](https://www.114dns.com/faq.html#win7)[清理 DNS 缓存](https://jingyan.baidu.com/article/59a015e34fcd70f7948865a9.html) 后使用原先的地址进入;

如果正在使用手机进行游戏,无法清理 DNS 缓存,或者以上操作都没有用。请使用我们的 IP 地址加入服务器:

```
43.248.187.57:29239
```
如果正在使用手机进行游戏,无法清理 DNS 缓存,或者以上操作都没有用,或者说如果你想在服务器内使用语音聊天Mod,请使用我们的 IP 地址加入服务器(实时解析):<ResolveDomain />:29239

:::

Expand All @@ -38,12 +37,12 @@ sidebar_position: 2

你可以在服务器或 QQ 群中分享其他服务器,但请注意,不允许进行商业服务器引流。以下是允许和禁止的分享示例:

- ✔️ 这是我最近玩的服务器,我觉得比较好玩:xxx.xxx.com
- ✔️ 我开了一个机械动力服务器:xxx.natfrp.com:36231
- ✔️ 哥们服务器刚刚开了 java:lwjworld.rr.nu:54044
- ❌️ xxxx RPG 想不想体验一把独一无二的生存之旅,本服有天启进化和农夫乐事及若干辅助 mod
有健全的天赋系统二百多种天赋 本服天启进化模组作者一同游玩可享受超前的模组版本及游戏体验
- ❌️ xxxxx 神奇宝贝是一个期望为所有宝可梦 MC 玩家创造高舒适养老的服务器,优质的服务和前列的技术给你舒适的体验,管理员认真负责。
✔️ 这是我最近玩的服务器,我觉得比较好玩:xxx.xxx.com
✔️ 我开了一个机械动力服务器:xxx.natfrp.com:36231
✔️ 哥们服务器刚刚开了 java:lwjworld.rr.nu:54044
❌️ xxxx RPG 想不想体验一把独一无二的生存之旅,本服有天启进化和农夫乐事及若干辅助 mod
有健全的天赋系统二百多种天赋 本服天启进化模组作者一同游玩可享受超前的模组版本及游戏体验
❌️ xxxxx 神奇宝贝是一个期望为所有宝可梦 MC 玩家创造高舒适养老的服务器,优质的服务和前列的技术给你舒适的体验,管理员认真负责。

## 怎么没人理我?

Expand Down
29 changes: 29 additions & 0 deletions src/components/ResolveDomain/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React, { useState, useEffect } from "react";

const ResolveDomain: React.FC = () => {
const [ip, setIp] = useState<string>("正在查询IP地址...");

useEffect(() => {
const fetchIp = async () => {
try {
const response = await fetch(
"https://dns.alidns.com/resolve?name=be.toiletmc.net.&type=1"
);
const data = await response.json();
if (data.Answer && data.Answer.length > 0) {
setIp(data.Answer[0].data);
} else {
setIp("IP地址查询失败");
}
} catch (error) {
setIp("查询IP地址时发生错误");
}
};

fetchIp();
}, []);

return <>{ip}</>;
};

export default ResolveDomain;

0 comments on commit 0193144

Please sign in to comment.