Skip to content

Commit 6ec7c78

Browse files
committed
feat: add initial documentation for TimeManager plugin with features, installation, and usage instructions
1 parent b4298ca commit 6ec7c78

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
---
2+
title: TimeManager
3+
createTime: 2025/07/22 17:58:20
4+
permalink: /amusing/TimeManager/
5+
---
6+
<CardGrid>
7+
<LinkCard title="💾 下载地址" href="https://github.com/LunaDeerMC/TimeManager/releases/latest"></LinkCard>
8+
<LinkCard title="📁 源码地址" href="https://github.com/LunaDeerMC/TimeManager"></LinkCard>
9+
</CardGrid>
10+
11+
12+
[![Minecraft](https://img.shields.io/badge/minecraft-1.21-green.svg)](https://www.minecraft.net/)
13+
[![Java](https://img.shields.io/badge/java-21-orange.svg)](https://www.oracle.com/java/)
14+
[![Folia](https://img.shields.io/badge/folia-supported-brightgreen.svg)](https://papermc.io/software/folia)
15+
16+
一个允许玩家自由修改自己客户端时间而不影响服务器实际时间的插件。
17+
18+
用来拍照或许很有用!
19+
20+
## 特性
21+
22+
- 🕐 **个人时间管理** - 每个玩家可以独立设置自己的时间
23+
- 🔒 **时间冻结** - 冻结或解冻个人时间
24+
- 🌐 **Folia支持** - 完全兼容Folia服务器
25+
26+
## 安装
27+
28+
1. 下载最新版本的TimeManager插件
29+
2.`.jar`文件放入服务器的`plugins`文件夹
30+
3. 重启服务器
31+
4. 编辑`plugins/TimeManager/config.yml`进行配置(可选)
32+
33+
## 使用方法
34+
35+
### 基本命令
36+
37+
主命令:`/ptime`
38+
39+
```
40+
/ptime set <time> - 设置个人时间
41+
/ptime reset - 重置个人时间为服务器时间
42+
/ptime freeze - 冻结个人时间
43+
/ptime unfreeze - 解冻个人时间
44+
/ptime info - 查看当前个人时间状态
45+
/ptime help - 显示帮助信息
46+
```
47+
48+
### 时间格式
49+
50+
时间可以用以下格式指定:
51+
52+
- 数字(游戏刻):`6000`
53+
- 时间名称:`day`, `night`, `noon`, `midnight`
54+
55+
### 使用示例
56+
57+
```bash
58+
# 设置时间为白天
59+
/ptime set day
60+
61+
# 设置时间为6000游戏刻
62+
/ptime set 6000
63+
64+
# 冻结当前时间
65+
/ptime freeze
66+
67+
# 重置为服务器时间
68+
/ptime reset
69+
```
70+
71+
## 权限
72+
73+
| 权限节点 | 描述 | 默认值 |
74+
|----------------|-----------------------|--------|
75+
| `ptime.set` | 允许使用set命令 | `true` |
76+
| `ptime.freeze` | 允许使用freeze/unfreeze命令 | `true` |
77+
78+
## 技术特性
79+
80+
- **API版本**: 1.21
81+
- **Java版本**: 21
82+
- **服务器兼容**: Paper, Spigot, Folia
83+
- **数据包操作**: 使用客户端时间同步包,不影响服务器性能

0 commit comments

Comments
 (0)