- Joined
- Dec 22, 2014
- Messages
- 359
- Reaction score
- 111
- First Language
- English
- Primarily Uses
- RMVXA
Script is called RETCON LIBRARY: JOURNAL by McDohl.
Link: https://rpgmaker.net/scripts/272/
I'm trying to detect the current entry that the Journal window is showing, in order to adjust info shown in a custom window. I feel like it has to do with this line (approx. line 338):
but I don't know what the first line should be in order to achieve something along the lines of:
Link: https://rpgmaker.net/scripts/272/
I'm trying to detect the current entry that the Journal window is showing, in order to adjust info shown in a custom window. I feel like it has to do with this line (approx. line 338):
Code:
entry = $game_party.journal[@page.currentpage][0].to_str
Code:
case [code to figure out the entry array being used]
when 1 (AKA when the player is looking at the first entry in the module)
then [insert custom text + refresh window].
when 2
same process.
etc...


