Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Latest commit

 

History

History
47 lines (34 loc) · 2.82 KB

NOTES.md

File metadata and controls

47 lines (34 loc) · 2.82 KB

Cornelica Notes

This file contains notes in regards to what is in the text files for the script of the game. Both in-game text and actions for the game to perform (such as character movement) are in the same files; we don't want to touch any lines involving actions as that could break the game engine logic.

Here's what we've been able to tell so far from the symbols that begin each line:

Symbol Meaning
@ Denotes an action for the game engine. These are to be left alone. Further notes below.
[ ] Lines starting with these brackets are displayed in dialog in the game, starting with the character name in brackets, followed by spoken text.
/CL This appears to be a "Create Line" for text on the screen within a message box. The boxes are denoted with @mes_win
;; Simple comments in the script.

Game Engine Logic

The majority of the @ commands within the game are to be left alone to keep sanity within the game logic of the engine.

  • @bs - Not sure on specific meaning, but an example line: @bs f=旅人A@01 face=0 body=-1 opa=0 x=-400 y=50 t=20 wt=0 basically states which character sprite art; probably for dialog sequences.
  • @move - Moves a specific sprite on the map to a specific point. Example: @move f=旅人A@01 x=-300 y=50 w=100 h=100 opa=255 t=1500 wt=0
  • @move_speed - As it suggests, movement speed of the character(s).
  • @select - This is the only command to translate the text for. This is a dialog choice selection.

Item Descriptions

It appears that the character limit for item descriptions is 70 per line. New lines can be made by using \n to push text to a new line.

Text boxes have a limit of 40, including quotes, and flows to a new line after. If the limit of 80 is reached, it automatically continues through the dialog until everything is written.

Text Colors

RPG Maker MV supports changing the text color via a text code.

\C[x] - x denotes the number between 0 through 10 to get a specific color for the text box.

Number Color
0 Black Black
1 Blue Blue
2 Red Red
3 Green Green
4 Light Blue Light Blue
5 Light Purple Light Purple
6 Orange Orange
7 Gray Gray
8 Purple Purple
9 Dark Blue Dark Blue
10 Maroon Maroon