Skip to content

Commit

Permalink
4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alex3236 authored May 10, 2021
1 parent da15dfe commit 2de384b
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ pip install nbtlib
`!!day`:查看服务器开服天数。

### API
如果你不是开发者,则无需了解这部分内容。
如果你不是开发者,则无需了解这部分内容。
简单的例子:
```python
from daycount import getday
import daycount
def on_load(server, old):
server.logger.info(getday())
server.logger.info(daycount.getday())
server.logger.info(daycount.get_day_text())
```
`getday()` 将返回一个整数,代表服务器开服天数。
`getday()`:返回一个整数,代表服务器开服天数。
`get_day_text()`:返回此时使用 !!day 命令时输出的内容。

## 配置插件
### NBT 模式
Expand All @@ -41,6 +43,12 @@ nbt_file = -1
start_date = '2020-01-01'
```

### 自定义文字
自定义 `!!day` 命令输出的字符串。用 `$day` 代表开服天数。
```python
day_text = '这是服务器开服的第 $day 天'
```

## 已知问题
目前所有已知问题已修复。欢迎找茬~
~~NBT模式下,服务器开服第一次 auto-save 前调用会报错~~
Expand Down

0 comments on commit 2de384b

Please sign in to comment.