【汉化】YEP.2 – Message Core (YEP)

本人正在学习RPG MAKER软件,但英文太差,前面学习了简书上沧笙 翻译的YEPYEP系列插件基础教程beta,但没有找到YEP.2 – Message Core (YEP)的汉化翻译,也可能自己没有找到,所以找到Message Core (YEP) - Yanfly.moe Wiki原文,用软件做了翻译,便于自己学习。也同时分享给喜欢研究的人员。

【汉化】YEP.2 – Message Core (YEP)

From Yanfly.moe Wiki

Jump to navigation Jump to search 

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.

Contents

1 Download

2 System

3 Extension Plugins

4 Yanfly Engine Plugins

5 Introduction

6 Word Wrapping

7 Text Codes

8 Plugin Commands

Download

System

This is a plugin created for RPG Maker MV.

For help on how to install plugins, click here.

For help on how to update plugins, click here.

Got errors with your RPG Maker MV plugin? Click here.

这是为 RPG Maker MV 创建的插件。

有关如何安装插件的帮助,请单击此处。

有关如何更新插件的帮助,请单击此处。

您的 RPG Maker MV 插件出现错误?单击此处。

Total: 2 108 231Visitors
Masterarbeit Writer

Extension Plugins

The following plugins are Extension Plugins that require this plugin as its Parent Plugin.

Place the following plugins below this plugin located in the Plugin Manager if you plan on using them.

以下插件是需要此插件作为其父插件的扩展插件。

如果您计划使用以下插件,请将它们放置在插件管理器中的此插件下方。

Extended Message Pack 1

Extended Message Pack 2

Message Backlog

Message Eval Text

Message Macros

Message Speed Option

Yanfly Engine Plugins

This plugin is a part of the Yanfly Engine Plugins library.

该插件是 Yanfly 引擎插件库的一部分。

Introduction

While RPG Maker MV Ace certainly improved the message system a whole lot, it wouldn't hurt to add in a few more features, such as name windows,converting textcodes to write out the icons and/or names of items, weapons,armours, and* more in quicker fashion. This script also gives the developer the ability to adjust the size of the message window during the game, give it a separate font, and to give the player a text fast-forward feature.

虽然 RPG Maker MV Ace 确实大大改进了消息系统,但添加一些功能也无妨,例如名称窗口、转换文本代码以更快地写出物品、武器、盔甲等的图标和/或名称。此脚本还使开发人员能够在游戏过程中调整消息窗口的大小、为其提供单独的字体以及为玩家提供文本快进功能。

Word Wrapping

Word wrapping is now possible through the message system. You can enable and disable Word wrap using Plugin Commands. While using word wrap, if the word is to extend past the message window's area, it will automatically go to the following line. That said, word wrap will disable the editor's line breaks and will require you to use the ones provided by the plugin:

现在可以通过消息系统进行自动换行。您可以使用插件命令启用和禁用自动换行。使用自动换行时,如果单词超出消息窗口的区域,它将自动转到下一行。也就是说,自动换行将禁用编辑器的换行符,并要求您使用插件提供的换行符:

<br> or <line break> is text code to apply a line break. Use this before or after a part in which you wish to start a new line.

<br> 或 <line break> 是应用换行符的文本代码。在您希望开始新行的部分之前或之后使用它。

Keep in mind word wrapping is mostly for message windows. However, in other places that you'd like to see word wrapping, such as item descriptions,insert <WordWrap> at the beginning of the text to enable it.

请记住,自动换行主要用于消息窗口。但是,在您希望看到自动换行的其他地方,例如项目描述,请在文本开头插入 <WordWrap> 以启用此功能。

Text Codes

Text Codes are used in the Show Text event command. They are used to display things that text normally can't produce on its own, such as colors, get the name of a specific actor, change icons, and more.

By using certain text codes in your messages, you can have the game replace them with the following:

文本代码用于显示文本事件命令。它们用于显示文本通常无法自行生成的内容,例如颜色、获取特定演员的姓名、更改图标等。

通过在消息中使用某些文本代码,您可以让游戏用以下内容替换它们:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Text Code   Function

  \V[n]       由第 n 个变量的值替换。

  \N[n]       替换为第 n 位演员的名字。

  \P[n]       替换为第n名队员的名字。

  \G          由货币单位取代。

  \C[n]       用第 n 种颜色绘制后续文本。

  \I[n]       绘制第 n 个图标。

  \{          将文本大小增加一级。

  \}          将文本大小减小一级。

  \\          用反斜杠字符替换。

  \$          打开金币窗口。

  \.          等待 1/4 秒。

  \|          等待 1 秒。

  \!          等待按钮输入。

  \>          一次显示同一行上的剩余文本。

  \<          取消一次性显示所有文字的效果。

  \^          显示文本后不要等待输入。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Wait:       Effect:

   \w[x]     - 等待 x 帧(60 帧 = 1 秒)。仅限消息窗口。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 NameWindow: Effect:

   \n<x>     - 创建一个带有 x 字符串的名称框。左侧。 *Note

   \nc<x>    - 创建一个带有 x 字符串的名称框。居中。 *Note

   \nr<x>    - 创建一个带有 x 字符串的名称框。右侧。 *Note

             *Note: 仅适用于消息窗口。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Line Break  Effect:

   <br>      - 如果使用自动换行模式,这将导致换行。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Position:   Effect:

   \px[x]    - 将文本的 x 位置设置为 x。

   \py[x]    - 将文本的 y 位置设置为 y。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Outline:    Effect:

  \oc[x]    - 将轮廓颜色设置为 x。

  \ow[x]    - 将轮廓宽度设置为 x。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Font:       Effect:

   \fr       - 重置所有字体更改。

   \fs[x]    - 将字体大小更改为 x。

   \fn<x>    - 将字体名称更改为 x。

   \fb       - 切换字体粗细。

   \fi       - 切换字体斜体。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Actor:      Effect:

   \af[x]    - 展示演员 x 的脸。 *Note

   \ac[x]    - 写出演员的职业名称。

   \an[x]    - 写出演员的昵称。

             *Note: Works for message window only.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Party:      Effect:

   \pf[x]    - 显示队员 x 的面孔。 *Note

   \pc[x]    - 写出队员x的职业名称。

   \pn[x]    - 写出队员 x 的昵称。

             *Note: 仅适用于消息窗口。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Names:      Effect:

   \nc[x]    - 写出职业x的名称。

   \ni[x]    - 写出物品 x 的名称。

   \nw[x]    - 写出武器 x 的名称。

   \na[x]    - 写出护甲 x 的名字。

   \ns[x]    - 写出技能 x 的名称。

   \nt[x]    - 写出状态 x 的名称。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 Icon Names: Effect:

   \ii[x]    - 写出物品 x 的名称(包括图标)。

   \iw[x]    - 写出武器 x 的名称,包括图标。

   \ia[x]    - 写出护甲 x 的名称,包括图标。

   \is[x]    - 写出技能 x 的名称,包括图标。

   \it[x]    - 写出状态 x 的名称,包括图标。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

And those are the text codes added with this script. Keep in mind that some of these text codes only work for the Message Window. Otherwise, they'll work for help descriptions, actor biographies, and others.

这些是使用此脚本添加的文本代码。请记住,其中一些文本代码仅适用于消息窗口。否则,它们将适用于帮助描述、演员传记等。

Plugin Commands

Plugin Commands are event commands that are used to call upon functions added by a plugin that aren't inherently a part of RPG Maker MV.

插件命令是用于调用插件添加的函数的事件命令,这些函数本身不是 RPG Maker MV 的一部分。

Here is a list of Plugin Command(s) that you may use:

The following are some plugin commands you can use through the Event Editor to change various aspects about the Message system.

以下是您可以使用的插件命令列表:

以下是您可以通过事件编辑器使用的一些插件命令,用于更改消息系统的各个方面。

Plugin Comand

  MessageRows 6

  - Changes the Message Rows displayed to 6. If you are using continuous   Show Text events, this will continue displaying the following lines's texts until it hits the row limit. Anything after that is cut off until the next message starts to avoid accidental overlap.

  - 将显示的消息行更改为 6。如果您使用连续显示文本事件,这将继续显示以下行的文本,直到达到行限制。此后的所有内容都将被截断,直到下一条消息开始,以避免意外重叠。

  MessageWidth 400

  - Changes the Message Window Width to 400 pixels. This will cut off any words that are shown too far to the right so adjust accordingly!

- 将消息窗口宽度更改为 400 像素。这将截断任何显示在右侧太远的单词,因此请进行相应调整!

  EnableWordWrap

  - Enables wordwrapping. If a word extends past the window size, it will automatically move onto the next line. Keep in mind, you will need to use \br to perform line breaks.

  - 启用自动换行。如果单词超出窗口大小,它将自动移至下一行。请记住,您需要使用 \br 来执行换行。

  DisableWordWrap

  - This disables wordwrapping. Line breaks will be automatic at points where a new line is started in the editor.

  - 禁用自动换行。编辑器中新行开始的位置将自动换行。

  EnableFastForward

  - Enables Fast Forward key from working with messages.

  - 启用“快进”键来处理消息。

  DisableFastForward

  - Disables Fast Forward key from working with messages.

  - 禁用“快进”键来处理消息。

详细的desccc v3 Lorem ipsum dolor坐在amet,sed morbi hendrerit cras,tellus viverra在,augue amet est。 详细说明v3 Lorem ipsum dolor坐在amet,sed morbi hendrerit cras,tellus viverra in,augue amet est。 Bibendum aliquam natoque consectetuer luctus pulvinar sociosqu,quia augue nunc,dignissim justo orci in sed dui,nullam sit nunc nostra。 产褥期胎盘等。 Fusce id phasellus eros tempor augue。 Metus eu nullam duis tempor massa,马萨德sed volutpat dolor consectetur velit,aliquet sed quis neque,dolor ullamcorper velit elementum。 布兰妮特·乌德·伊迪克·里奥·科莫多·多洛·沃尔多姆·索代莱斯·索达莱斯·索代莱斯·尼科斯,《维纳蒂斯·锡西顿·本比登·奥伊斯莫德》。 Aenean arcu前庭,facilisi tincidunt ad proin,iaculis eget。 Praesent产妇,正常人,双性恋,智商整数,quisque整数。 Quisque pretium tincidunt fermentum ac tempus,nibh egestas ligula semper id。 著名的成名人物。 Nullam quis malesuada amet faucibus amet,diam amet ornare sociosqu pellentesque,sed et imperdiet imperdiet dapibusvestibulum,maecenas consectetuer s varius vitae velit,interdum ipsum。 Vitae整数augue neque quisque,libero volutpat,accumsan quam viverra volutpat ut ullamcorper ullamcorper,便利店中的调味品semper,adiceiscing donc sed eartertort。 在dignissim dolor中,leo lobortis consectetuer wisi molestie hendrerit,sem luctus luctus dictum ut,egetas被保存在eget中。 Sociis ac eu,quis repellendus类的结果,nec mollis,neque porttitor quam eget nec等。 履历表situsélicitudinamet posuere sed,dui morbi mattis pellentesque varius sapien。 Quibusdam pretium purus quis at et,ac accumsan。 Nec sed cupiditate bibendum at atque,Massa magna dolor ipsum amet phasellus eu。 Volutpat morbi commodo arcu mauris arcu,turpis morbi condimentum sodales amet leo,mi sodales,vitar tortor urna。 Luctus quisque nibh,sed facilisis pretium,donc leo arcu neque porttitor和nunc pretium ligula quia。 Convallis porta enim。 Lacus fusce,在前额叶藻的前额叶中,在非累积性的月季中,有叶的月季等。 Fusce proin id altricities Massa。 Malesuada eros non aenean adipiscing nulla,pellentesque et dis adipiscing ante aliquet,imperdiet arcu,nonummy fringilla quis sed。 Curabitur magna imperdiet nisl vivamus,etiam quis wisi ulticies pede,Blandit duis id digni
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值