97 lines
1.9 KiB
Markdown
97 lines
1.9 KiB
Markdown
---
|
|
title: 字体设计
|
|
description:
|
|
published: true
|
|
date: 2025-05-29T16:19:08.676Z
|
|
tags:
|
|
editor: markdown
|
|
dateCreated: 2025-05-29T16:19:08.676Z
|
|
---
|
|
|
|
# MCUNC 策划案-游戏内消息设计方案
|
|
|
|
> By 云洛语秋
|
|
>
|
|
> Version: 1.0.0
|
|
>
|
|
> 2025-05-30
|
|
{.is-info}
|
|
|
|
## 文档所使用的变量
|
|
|
|
变量格式:`%变量名%`
|
|
|
|
`player_name`(`pn`):消息发送者游戏名
|
|
|
|
`player_prefix`(`pp`):消息发送者前缀
|
|
|
|
`plugin_name`:消息发送插件“模块名”
|
|
|
|
`reciever_name`:消息接收者游戏名
|
|
|
|
`message_range`(`mr`):消息范围
|
|
|
|
`content`(`c`):消息内容
|
|
|
|
## 消息发送者前缀(`player_prefix`)
|
|
|
|
|称号名称|颜色值|
|
|
|:--:|:--:|
|
|
|<font color=#e056fd>`腐竹`</font>|#e056fd|
|
|
|<font color=#e056fd>`副腐竹`</font>|#e056fd|
|
|
|<font color=#ffeaa7>`常驻管理`</font>|#ffeaa7|
|
|
|<font color=#ffeaa7>`顶级赞助商`</font>|#ffeaa7|
|
|
|<font color=#fab1a0>`普通管理`</font>|#fab1a0|
|
|
|<font color=#fab1a0>`普通赞助商`</font>|#fab1a0|
|
|
|<font color=#a4b0be>`玩家`</font>|#a4b0be|
|
|
|
|
## 消息范围(`message_range`)
|
|
|
|
|范围名称|颜色值|
|
|
|:--:|:--:|
|
|
|<font color=#7d5284>`全服`</font>|#7d5284|
|
|
|<font color=#108b96>`本服`</font>|#108b96|
|
|
|<font color=#9ebc19>`房间`</font>|#9ebc19|
|
|
|<font color=#c67915>`私聊`</font>|#c67915|
|
|
|<font color=#c12c1f>`系统`</font>|#c12c1f|
|
|
|
|
## 消息格式
|
|
|
|
### 1. 全服消息
|
|
|
|
```
|
|
┌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┐
|
|
| %mr% | [%pp%] 「%pn%」 >>>
|
|
%c%
|
|
└╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┘
|
|
```
|
|
|
|
### 2. 当前服务器消息
|
|
|
|
```
|
|
| %mr% | [%pp%] 「%pn%」 >> %c%
|
|
```
|
|
|
|
### 3. 当前房间消息
|
|
|
|
```
|
|
| %mr% | 「%pn%」 > %c%
|
|
```
|
|
|
|
### 4. 私聊消息
|
|
|
|
```
|
|
| %mr% | 「%pn%」>「%reciever_name%」 >>> %c%
|
|
```
|
|
|
|
### 5. 系统消息
|
|
|
|
```
|
|
| %mr% | [%plugin_name%] %c%
|
|
```
|
|
|
|
### 6. Raw
|
|
|
|
```
|
|
%c%
|
|
``` |