- Joined
- Feb 17, 2018
- Messages
- 11
- Reaction score
- 3
- First Language
- English
- Primarily Uses
- RMMV
Hello, everyone! I'm currently using Large Choices by HimeWorks/@Tsukihime in an attempt to create a version of the poem writing mini-game from Doki Doki Literature Club, which you can see an example of here:
By altering rpg_windows.js and adding the following code:
As well as altering the numVisibleRows, windowWidth, and maxChoiceWidth functions accordingly, I was able to get this result:
However, this means that any time I use the "Show Choice" command, there will be two columns. I only want the two column format to be available during this mini-game.
How would I achieve this? I know that SumRndmDde has a Window Upgrade plugin available that can create a choice window with rows and columns, but his plugin command does not allow variables to be passed in (which I need since the word list is stored in an array that is shuffled). If you know how to make variables work with his plugin, then I can use it instead of Hime's Large Choices, but Large Choices is the only one I can use until someone can help me.
Thank you in advance!
By altering rpg_windows.js and adding the following code:
Window_ChoiceList.prototype.maxCols = function() {
return 2;
};
return 2;
};
As well as altering the numVisibleRows, windowWidth, and maxChoiceWidth functions accordingly, I was able to get this result:
However, this means that any time I use the "Show Choice" command, there will be two columns. I only want the two column format to be available during this mini-game.
How would I achieve this? I know that SumRndmDde has a Window Upgrade plugin available that can create a choice window with rows and columns, but his plugin command does not allow variables to be passed in (which I need since the word list is stored in an array that is shuffled). If you know how to make variables work with his plugin, then I can use it instead of Hime's Large Choices, but Large Choices is the only one I can use until someone can help me.
Thank you in advance!







