💡
Omori Modding Wiki
  • 🚩getting started
    • Overview
    • Installing Mods
    • Decryption and Playtest Generation
      • Resetting Installation
      • Dev Tools
    • Packaging Mods
      • mod.json File
    • Omori Files Guide
      • Common File Types
      • Omori Files Index
        • Data Files
  • 🏰RPG Maker MV
    • ⭐Intro to RPG Maker MV
    • 🗒️Common Notetags and Filename
      • Map Event Notetags
      • RPG Maker Sprite Sheet Formats
        • Sprite Sheet Filenames
      • Enemy Notetags
    • Custom Battles
      • Plot Armor
    • Map Creation
    • Event Plugin Commands
    • YAML Texts and Dialogues
      • Text Codes
      • Omori Text Color Convention
    • Shops
    • Quests
    • Bubbles / Balloons
  • 🎨Art Assets
    • Intro to Art Assets
      • Ex 1: Headspace Portrait
      • Art Specifications
      • Art Programs
    • Line Art
      • Preparations
      • Line Quality
      • Line Coloring
        • Direct Colored Brush
        • Blend Layers
        • Color Correction
          • Color Balance
          • Tone Curve
          • Gradient Maps
  • Community
    • Omori Mod Licensing Guide
  • Links
    • Mod Resources/Plugins
    • Omori Modding Hub (Server)
    • Omori Mod Site (Unofficial)
    • Original Masterdoc
    • Omori Data Archive
Powered by GitBook
On this page
  • RPG Maker MV Text Codes
  • TDS Text Effects
  • Archeia Text Codes
  • Useful Resources
  1. RPG Maker MV
  2. YAML Texts and Dialogues

Text Codes

Functions and variables in texts

RPG Maker MV Text Codes

RPG Maker MV comes with text codes on it's own, being the following:

Code
Function

\V[n]

Will be replaced with the value of the nth variable.

\N[n]

Will be replaced with the name of the nth actor.

\P[n]

Will be replaced by the name of the nth (arranged order) party member.

\G

Will be replaced by the currency unit.

\C[n]

Draw the subsequent text in the nth color. Text color conforms to the contents of the [Window.png] system image.

\I[n]

Draws the nth icon.

\{

Increases the text by 1 step.

\}

Decreases the text by 1 step.

\\

Replaced with the backslash character.

\$

Open the gold window.

\.

Wait for 1/4 second.

\|

Wait for 1 second.

\!

Wait for button input.

\>

Display remaining text on same line all at once.

\<

Cancel the effect that displays text all at once.

\^

Do not wait for input after displaying the next.

Credit: Yanfly.moe Wiki

Beware of the slashes! Text code uses backslashes (\) not normal slashes (/).

TDS Text Effects

The following contains code related to text movements used in Omori.

Code
Function

\SINV[n]

Makes the text shake vertically. When n is: 0 - Disable 1 - Normal wave 2 - Dense wave

\SINH[n]

Makes the text shake horizontally. When n is: 0 - Disable 1 - Enable

\QUAKE[n]

Makes the text wobble aggressively. When n is: 0 - Disable 1 - Intense quake 2 - Softer quake

\RAINBOW[n]

Adds an animated rainbow effect to the text. When n is: 0 - Disable 1 - Enable

Archeia Text Codes

In the following the most used are common event text code. For example, to call shake screen common event. There are other codes but it isn't used at all in Omori

Code
Function

\com[n]

Invokes the common event of ID n

Fun fact: Text Codes can be invoked when set as character name and the name is trying to be called.

Useful Resources

PreviousYAML Texts and DialoguesNextOmori Text Color Convention

Last updated 2 years ago

🏰
http://www.yanfly.moe/wiki/Category:Text_Codes_(MV)
https://github.com/Gilbert142/gomori/wiki/Text-Formatting