Introduction
Creates a message log of all present messages. They are stored and can be viewed anytime. Messages from Events, Battles, and Choices are shown through the press of a button.
Features
Save Conversation
Save Choice Paths
Animated Background
Controlled Choice Saving
Controlled Max Rows for Message Log
Battle Log
Screenshots
How to Use
Controls:
Press Up and Down to Scroll Messages.
Press Assigned Button to Open the Message Log
Changes:
I added two accessors for the game system for the row and choices for two different reasons, that being:
if the developer wants to change the max row anytime they like (in map).
if they want to save choices or no through the progress of the game.
Script Calls:
$game_system.change_choice_saving(false)
– will not save choices.
Code:
$game_system.change_choice_saving(true)
复制代码
– will save choices
Code:
$game_system.change_message_rows(value)
复制代码
Place the value on the argument for the new max rows: for example:
Code:
$game_system.change_message_rows(50)
复制代码
This will give me maximum of 50 rows. Note that the excess logs will be deleted to store the new ones.