- Joined
- Mar 31, 2016
- Messages
- 12
- Reaction score
- 62
- First Language
- Not English
- Primarily Uses
- RMMV
Hello,
I tried to create a dialogue using script instead of using "Show Text" feature in GUI. This is needed in my project to create random dialogue that depend on certain stats and variable.
So I tried to use series of scripts call method ... but i the results is nothing like in my mind.
This is expected result:
This is the script that I use in hope to achieve that :

$gameMessage.setFaceImage("Actor1", 0);
$gameMessage.setBackground(0);
$gameMessage.setPositionType(2);
$gameMessage.add("Text at bottom");
$gameMessage.newPage();
$gameMessage.setFaceImage("Actor1", 1);
$gameMessage.setBackground(0);
$gameMessage.setPositionType(0);
$gameMessage.add("Text at top");
... but ...unexpectedly ... this is the actual result of that script call :
Please help, Where did i do wrong?
I tried to create a dialogue using script instead of using "Show Text" feature in GUI. This is needed in my project to create random dialogue that depend on certain stats and variable.
So I tried to use series of scripts call method ... but i the results is nothing like in my mind.
This is expected result:
This is the script that I use in hope to achieve that :

$gameMessage.setFaceImage("Actor1", 0);
$gameMessage.setBackground(0);
$gameMessage.setPositionType(2);
$gameMessage.add("Text at bottom");
$gameMessage.newPage();
$gameMessage.setFaceImage("Actor1", 1);
$gameMessage.setBackground(0);
$gameMessage.setPositionType(0);
$gameMessage.add("Text at top");
... but ...unexpectedly ... this is the actual result of that script call :
Please help, Where did i do wrong?
Last edited by a moderator:





