Khas Message System

Introduction
This script replaces the original message system design and adds some new commands that can be used when displaying messages. It also adds sound to the messages, as voices.

Features
Easy to use
Plug'n'play
Voices
Flat design, modern feel
Balloon messages

Screenshots


Download
English: Demo + Script

How to use sprites with multiple frames
You can alter these parameters (line 507/508) to adjust the script for your character.
cw = bitmap.width / 24
ch = bitmap.height / 8

How to use accented characters in actor names
Open the script, search for \w\s and replace by [:alnum:]\s
There's three matches on the script. They should look like this:
Before: text.slice!(/^\[[\w\s]+\]/)
After: text.slice!(/^\[[[:alnum:]\s]+\]/)