YEP.126 – Extended Move Pack 1 – RPG Maker MV
Introduction
This plugin requires Move Route Core. Make sure this plugin is located under Move Route Core in the plugin list.
這個(gè)插件需要Move Route Core插件的支持,請(qǐng)置于Move Route Core下面
This plugin adds extra simplified move routes for your events with the main intention of creating specific behaviors in movement patterns. The patterns include the option to hug a side of the wall and move along that, moving a single direction until coming to a stop, relative opacity adjusting, and index shifting.
這個(gè)插件為移動(dòng)系統(tǒng)添加了額外的移動(dòng)路徑方式,包括貼著墻面行走,直行遇到障礙物轉(zhuǎn)彎,透明度調(diào)整,圖像調(diào)整等。
Instructions – Additional Simplified Movement Routes
If you want to make events move a certain way using the commands from this plugin, do the following:
如果你想使用這個(gè)插件來(lái)制作特定路線(xiàn),你可以按照下面的步驟
- Open the event you wish to move.
- Make a Movement Route command or Automatic Custom Route.
- Press “Script…”
- Type in any of the desired following commands:
- 打開(kāi)你想移動(dòng)的事件
- 選擇移動(dòng)命令或者自定義移動(dòng)
- 選擇 “Script…”
- 輸入下面的命令
<pre>
HUG LEFT WALL
HUG RIGHT WALL
AVOID HUG LEFT WALL
AVOID HUG RIGHT WALL
CRASH HUG LEFT WALL
CRASH HUG RIGHT WALL
The designated event will move alongside the wall to its left/right. If there is no wall to its left/right side, it will turn that direction and move that direction if possible.
事件將會(huì)沿著墻邊移動(dòng),如果沒(méi)有墻面他會(huì)轉(zhuǎn)個(gè)可以移動(dòng)的方向
‘Avoid Hug Left Wall’ and ‘Avoid Hug Right Wall’ will make the event not collide with the player character and the player’s followers.
Avoid命令是禁止事件碰撞玩家
‘Crash Hug Left Wall’ and ‘Crash Hug Right Wall’ will allow collision with the player and/or followers.
Crash命令是允許事件碰撞玩家
Example: Hug Left Wall
Hug Right Wall
Avoid Hug Left Wall
Avoid Hug Right Wall
Crash Hug Left Wall
Crash Hug Right Wall
</pre>
<pre>
INDEX: x
Sets the designated event’s current character graphic index to x without needing to change its character graphic. Replace x with integar values between 0 and 7.
改變事件圖像,索引值在0-7之間
Example: Index: 5
</pre>
<pre>
INDEX: +x
INDEX: -x
Adjusts the designated event’s current character graphic index by +x or -x without needing to change its character graphic as to move it a few stages. The index cannot go under 0 and cannot go over 7. Replace x with integar values between 0 and 7.
改變事件圖像,索引值在0-7之間
Example: Index: +1
Index: -2
</pre>
<pre>
MOVE UP UNTIL STOP
MOVE LEFT UNTIL STOP
MOVE RIGHT UNTIL STOP
MOVE DOWN UNTIL STOP
MOVE UPPER LEFT UNTIL STOP
MOVE UPPER RIGHT UNTIL STOP
MOVE LOWER LEFT UNTIL STOP
MOVE LOWER RIGHT UNTIL STOP
AVOID MOVE UP UNTIL STOP
AVOID MOVE LEFT UNTIL STOP
AVOID MOVE RIGHT UNTIL STOP
AVOID MOVE DOWN UNTIL STOP
AVOID MOVE UPPER LEFT UNTIL STOP
AVOID MOVE UPPER RIGHT UNTIL STOP
AVOID MOVE LOWER LEFT UNTIL STOP
AVOID MOVE LOWER RIGHT UNTIL STOP
CRASH MOVE UP UNTIL STOP
CRASH MOVE LEFT UNTIL STOP
CRASH MOVE RIGHT UNTIL STOP
CRASH MOVE DOWN UNTIL STOP
CRASH MOVE UPPER LEFT UNTIL STOP
CRASH MOVE UPPER RIGHT UNTIL STOP
CRASH MOVE LOWER LEFT UNTIL STOP
CRASH MOVE LOWER RIGHT UNTIL STOP
MOVE FORWARD UNTIL STOP
AVOID MOVE FORWARD UNTIL STOP
CRASH MOVE FORWARD UNTIL STOP
The designated event will keep moving the noted direction until it it cannot pass in that direction anymore. Once that happens, it will move onto the next movement command in the move route list.
事件將會(huì)直行直到遇到障礙物,然后在執(zhí)行下一段移動(dòng)命令
The ‘Avoid’ versions of this command will make the event not collide with the player character and the player’s followers.
Avoid命令是禁止事件碰撞玩家
The ‘Crash’ versions of this command will allow collision with the player and/or followers.
Crash命令是允許事件碰撞玩家
Example: Move Right Until Stop
Avoid Move Left Until Stop
Crash Move Forward Until Stop
</pre>
<pre>
OPACITY: +x
OPACITY: -x
Adjusts the designated event’s opacity value by +x or -x instead of a set value like the editor’s opacity command. The opacity value will be added upon or subtracted upon the current opacity value. Replace x with integar values.
改變圖像透明度
Example: Opacity: +50
Opacity: -30
</pre>
<pre>
OPACITY: +x%
OPACITY: -x%
Adjusts the designated event’s opacity value by +x% or -x% instead of a set value like the editor’s opacity command. The opacity value will be added upon or subtracted upon the current opacity value. Replace x with integar values.
改變圖像透明度
Example: Opacity: +10%
Opacity: -20%
</pre>
<pre>
OPACITY: x%
Sets the designated event’s opacity value to x% instead of a set value like the editor’s opacity command. The opacity value will be automatically adjusted to meet the demands of the sprite. Replace x with integar values.
設(shè)置頭像透明度
Example: Opacity: 50%
</pre>