Console – Command List

This page is currently under construction. Please move along~

Introduction

Following our update to Unreal, the console has yet to reach full functionality. As such, the following information may not be totally accurate.

As of experimental version 0.1.4-E it is possible to show the developer console in-game by pressing the ` (back-tick) key. The console is primarily intended to be used as a development tool by Arumi~. As such, you must practice caution when using console commands as you may inadvertently corrupt your save data. Always ensure you have backed up your saves in advance!

Console Specific Commands

Command Description
cls
clear
Clears the console command screen.

Player Stats

Command Description Added
actor.pc.hp = int
actor.pc.hp += int
actor.pc.hp -= int
Sets the player HP (hit points) to a specific integer value.
Note, this will automatically be capped by the max HP value.
Minimum = 0
Maximum = 80
0.1.4-E
actor.pc.hp.cap = int
actor.pc.hp.cap += int
actor.pc.hp.cap -= int
Sets the maximum amount of HP a player can have.
Minimum = 0
Maximum = 80
N/A
actor.pc.mp = int
actor.pc.mp += int
actor.pc.mp -= int
Sets the player MP (magic points) to a specific integer value.
Note, this will automatically be capped by the max MP value.
Minimum = 0
Maximum = 100
0.1.4-E
actor.pc.mp.cap = int
actor.pc.mp.cap += int
actor.pc.mp.cap -= int
Sets the maximum amount of MP a player can have.
Minimum = 0
Maximum = 100
N/A

Player Bio

Command Description
actor.pc.forename = “string
actor.pc.surname = “string
actor.pc.nickname = “string
Set the player name to a specific value.
Note, some screens may not update automatically after issuing this command.
actor.pc.height = intSet player height to a specific value.

Applying Commands To Other Actors

Note, most of these commands can actually be applied to other actors in the game. To do this you will need to substitute the given actor’s ID in place of “pc“. For instance, in order to raise a companions HP you may enter:

actor.johnSmith.hp += 10

This command would cause the actor with ID “johnSmith” to receive 10 HP.