Search found 5 matches

by EveningDove
Thu Jul 12, 2018 5:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Is it safe to add new config variables?
Replies: 4
Views: 633

Re: Is it safe to add new config variables?

Thank you so much!! I had no idea define did that, thanks! As a quick follow-up question, is there any difference between doing: define days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] and init...
by EveningDove
Thu Jul 12, 2018 4:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagemap Questions
Replies: 4
Views: 696

Re: Imagemap Questions

In addition to what Per K Grok said, you can also make hotspots trigger multiple actions by putting them in braces. For example: hotspot (x,y, length, height) clicked [SetVariable("hello", True), Jump("desitnationLabel")] Will make a hotspot that sets the variable hello to True, ...
by EveningDove
Thu Jul 12, 2018 3:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Is it safe to add new config variables?
Replies: 4
Views: 633

Is it safe to add new config variables?

Hi, I was wondering if it's possible to make a constant variable that is not intended to change after the game has been initiated (similarly to how final works in Java). I know the config variables work similarly to this, but I wasn't sure if it's a good idea to make new ones. Also, if it is safe to...
by EveningDove
Fri Jun 29, 2018 5:11 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Image not found' but it's there!!! What the hell??
Replies: 6
Views: 884

Re: 'Image not found' but it's there!!! What the hell??

Are you sure you spelled the folder name correctly? Your character's name is Elsa (with an a) but you're looking in a folder named else (with an e)
by EveningDove
Fri Jun 29, 2018 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Setting maximum number of lines for renpy.input
Replies: 0
Views: 405

Setting maximum number of lines for renpy.input

Hello! I'm trying to make a custom input field that limits the number of lines the user can enter. Basically, I'm trying to give the player an in-game notepad where they can write things down, but they only have enough space to write a handful of lines. (In other words, I want it to work similarly t...