Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

This plugin is a godsend! I've bought it and I'm playing around with it. I must ask, however, do you have any plans to implement an alternative way to refresh the text box? Specifically, it would be great to have the new messages be added to the box as new lines, as opposed to clearing the box beforehand. Either way, thank you for your work, and happy holidays!

Hi there!

Yeah, I have plans for that. I did manage to make this work with some workaround on text code, but maybe it's not ideal.

But you said that thinking of something like the default message box? Like, pressing a button and the message advances?

I'm glad you like it! I really like this plugin too! It's one of my favorites xD

Happy holidays to you too, have fun! ^^

(1 edit)

It's not just advancing the current message, it's keeping the previous ones.  Currently, your plugin always clears the box before typing the new message in.

Ideally, what I'm looking for is having several static windows that can be revisited when opened and closed. I can already do that with your plugin, as the current message stays in the window when I close and reopen it, but what I am looking for now is the ability for those static windows to keep every line previously added as new ones appear, like in an old-fashioned computer terminal.

You mentioned a text code workaround, is it capable of this? Or were you thinking of something else?

Thank you for your time, by the way.

Hmm!! I think I got It. I Will only be able to take a look at this next year. 

My workaround was using variables.

Meaning, you can write a text and paste that into the script field of the control variables(inside qoutes). And then on the static window, you can just type \v[id].

You can either use one variable for all the text which will require you to put the text on a single line and use \n for line break.

Or use one variable for each line. If a variable is blank on the script field "", it will show nothing. So when update the variable value, the text will be shown on its place inside the window.

I'm not on PC right now, but when I get there, I can better explain.

I managed to make it work with one variable per line, such that every update the bottom line would become the one above and so forth, but it's a lot of work when there are a lot of windows involved. I can certainly make something work, but if you get to add the text log function, especially if it keeps every message ever put to that window in a scrollable fashion, do please let me know!

Also, I should add that plugins that add sound to each letter don't work with this, likely because this doesn't use the default text function. If you find a way to make that work let me know as well, as your plugin is excellent for custom ways to display messages. I don't even use default message boxes anymore at this rate.

Hope you had good holidays!

Hi there!

I guess now I finally understood exactly what you mean. You don't want for it to just show new messages, you want to work like a message log, with a similar function as the Scroll Text window, right?

So the player can open the window, and scroll to see all the messages?

------------------

About the letter sounds, I will give it here a try because it's something I also want. I can confirm I will make it work with letter sounds.

But the other request I will have to take a look at it first and see if is suitable to put this feature on this plugin.

(1 edit) (+1)

Thank you. :)

And yes, it's like a message log indeed! I know message log plugins exist, but they're separate, static menus. Instead, with this you could have different windows logging their own individual contents in real-time.

I appreciate your attention, and I will keep my eye on this page for any updates. ^_^

Ok friend! I will let you know about the changes! :D

(2 edits)

P.S: A way to call the window ID through a variable, like typing "$gameVariables.value(#);" in the Window ID field of the plugin command, would be fantastic.

P.P.S: A Close All Windows command, or one where we can list several IDs would be great as well. :3

That is indeed a must! Don't know why I did not make these things before! Will do!

PS: You can already use \v[id] on the "Setup and Show" on these two arguments:

  • Template ID
  • Window ID

I guess somehow I was starting to add this into the plugin but forgot to implement it on everything... xD