Search found 116 matches
- Sat Aug 24, 2019 2:16 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Changing input size?
- Replies: 8
- Views: 711
Re: Changing input size?
Then isn't that the size of your dialogue text? If you're doing it that way, the input is shown up in your textbox and is usually the same size as whatever your dialogue text is It's not the same size as my dialogue. :( I'd like it to be! But my dialogue is around size 40 and the input text is mayb...
- Sat Aug 24, 2019 6:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: Changing input size?
- Replies: 8
- Views: 711
Re: Changing input size?
You literally put size 30 or whatever size number you want on the same line the input is on. if it's a screen I'm assuming it's something like input default my_name changed change_name_func and you'd put it on the end of that If you're going to have many inputs, you could define a style to make it ...
- Fri Aug 23, 2019 10:43 am
- Forum: Ren'Py Questions and Announcements
- Topic: Changing input size?
- Replies: 8
- Views: 711
Re: Changing input size?
The code for what? I don't have any code describing size of input text and the code for the box doesn't talk about it.
- Fri Aug 23, 2019 6:44 am
- Forum: Ren'Py Questions and Announcements
- Topic: Changing input size?
- Replies: 8
- Views: 711
Changing input size?
I have this screen where the player can type their own name. All works well, but the input text is really tiny?? I haven't changed the size at all, it naturally looks like this.
Any way to fix this? Probably somewhere in gui?
Any way to fix this? Probably somewhere in gui?
- Fri Aug 23, 2019 2:51 am
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
Re: Annoying/inconsequental error at the start of every game
I'm going to sound like a broken record, but what is on line 73 of script.rpy Also would be helpful to post a couple of lines from before/after it. You can blank out or edit any script text if you aren't comfortable sharing it. label main_menu: call screen main_menu label restart: call screen confi...
- Fri Aug 23, 2019 12:26 am
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
Re: Annoying/inconsequental error at the start of every game
Yes it was missing another ) to close off the beginning ( Syntax for which code Show the new error I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00start.rpy", line 301, in script call call expression "before_main_menu" File "game/script.rpy", line 73, in...
- Thu Aug 22, 2019 11:49 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
Re: Annoying/inconsequental error at the start of every game
What's the current error code now I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/script.rpy", line 73: is not terminated with a newline. (Check strings and parenthesis.) call screen confirm(message = u "Are you sure you want to ...
- Thu Aug 22, 2019 11:00 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Quick menu not showing up
- Replies: 1
- Views: 435
Quick menu not showing up
I don't know why, but for some reason my quick menu refuses to show up. it's completely random; maybe once in twenty reloads it decides to show up, other times not. It also doesn't let me go to the game menu by pressing esc so I can't adjust anything and have to reload the game. Has anyone else had ...
- Thu Aug 22, 2019 10:23 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Confused by this expected statement error
- Replies: 2
- Views: 452
Confused by this expected statement error
I'm so tired and I can't be bothered to figure this out myself. Help me, oh Ren'Py overlords. I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/options.rpy", line 130: expected statement. config.rollback_enabled = True ^ File "game/...
- Thu Aug 22, 2019 10:09 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
Re: Annoying/inconsequental error at the start of every game
I'm using that exact tutorial. Neither of the codes work for meisobellesophia wrote: ↑Thu Aug 22, 2019 7:19 amOh, there is also a another example if it is works for you.
viewtopic.php?f=51&t=48154
I dont think it looks the same, but you can try it.
- Thu Aug 22, 2019 8:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Jumping back to the intro instead of the main menu?
- Replies: 7
- Views: 736
Jumping back to the intro instead of the main menu?
Hello again. I have this little issue where every time I click back to the main menu or finish playing the game, instead of just showing me the menu the game goes to the intro I have (a warning screen and a screen where you can input your name. I will be also adding a logo and an intro so those woul...
- Thu Aug 22, 2019 8:38 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
- Thu Aug 22, 2019 12:27 am
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
- Wed Aug 21, 2019 9:21 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Annoying/inconsequental error at the start of every game
- Replies: 18
- Views: 1209
- Wed Aug 21, 2019 2:47 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Last frame of animation stays on screen
- Replies: 2
- Views: 484
Last frame of animation stays on screen
You heard it. I try to play a little animation to show that the player has gained more affection points, but once it reaches the final frame, it just stays on the screen. Alternatively, if I define the animation in a different way, it loops infinitely. This code makes it loop: image affection_plus_t...