Thanks! Glad to hear it. 😁
__ess__ VN Assets
Creator of
Recent community posts
I sent to support via the payout page as the tax form (W8BEN-I) is bugged and can't be completed (tax info expired and needs updating) in hopes it could be fixed or that I could submit the form in an alternative way. The payout ID is 210232. I sent the ticket in January the 22nd and have not gotten a response yet and am thus unable to receive any of the payouts pending.
I also send a support email through the official support email address on the 19th of January (ticket number: 338150) and haven't gotten a response to that either. I also made a github post which has no official answer yet, but another user who chimed in with the same problem.
After waiting for over a month now, I'm hoping a mod could help out with "bumping" one or both of the tickets created. Thank you.
Hello! Looks like you have custom code not provided in the GUI example project, so I don't know what you have done to get your setup. I can only give some general guidance:
Looks like you might be using the NVL screen with a custom dialogue entry background using the "nvl_entry" style perhaps? You could try changing the "yoffset" property for the "nvl_dialogue" style in the "custom_config.rpy" file if that is offsetting the text too low. If you're using a Frame() displayable as the background for "nvl_entry", then you might need to adjust the padding of it.
Hi! You should be able to use the "window" prefix, according to the documentation page (scroll down until you see "Styling text and windows"): https://www.renpy.org/doc/html/dialogue.html#Character
So, if you have a textbox2.png in your GUI folder for example, and you'd want B to use it, you'd do:
define B = Character("B", ctc = "ctc", what_prefix = "\"", what_suffix = "\"", window_background = "gui/textbox2.png")
You can apply your own style to this window by using "window_style", also mentioned in the same section of the documentation.














