- Joined
- Dec 29, 2016
- Messages
- 7
- Reaction score
- 0
- First Language
- C, oh English
- Primarily Uses
Hello,
So in a new project (MV) without any other adjustments.
Issue
I have a series of tasks I want to execute, and the latter ones are running immediately after I start a scrolling text task.
Details
I want to have a scrolling text pop up. It will pull the text from a json file, where I am storing all messages. I can do this with no issue, if I just push the text to text boxes. Once I hit action button past the messages, the latter tasks will execute.
task 1 -- $gameMessage.setScroll(2, false); //Set ScrollText on
$gameMessage.add($cMessage.map[0].message[0].value) // Add text.
task 2 -- $gamePlayer.reserveTransfer(1,1,1,6,2); // Transfering before hero is added so you don't see hero until after.
task 3 -- $gameParty.addActor(1); //I don't have a hero set at start so there is no character visible
What code am I missing to make the other events HOLD until the text goes past one time ?
I am open to handle this any way, so long it is with script/plugin command etc.
Thanks in advance!
So in a new project (MV) without any other adjustments.
Issue
I have a series of tasks I want to execute, and the latter ones are running immediately after I start a scrolling text task.
Details
I want to have a scrolling text pop up. It will pull the text from a json file, where I am storing all messages. I can do this with no issue, if I just push the text to text boxes. Once I hit action button past the messages, the latter tasks will execute.
task 1 -- $gameMessage.setScroll(2, false); //Set ScrollText on
$gameMessage.add($cMessage.map[0].message[0].value) // Add text.
task 2 -- $gamePlayer.reserveTransfer(1,1,1,6,2); // Transfering before hero is added so you don't see hero until after.
task 3 -- $gameParty.addActor(1); //I don't have a hero set at start so there is no character visible
What code am I missing to make the other events HOLD until the text goes past one time ?
I am open to handle this any way, so long it is with script/plugin command etc.
Thanks in advance!
Last edited:


