Search found 5 matches

by computerwhiz10101010
Sun Jan 07, 2024 6:01 pm
Forum: Ren'Py Questions and Announcements
Topic: my program is working but my format is wrong
Replies: 2
Views: 78120

my program is working but my format is wrong

thanks to your guys help ive made a good age verification prompt. i then made a function to cycle images and text, but i think my format is wrong. whats the right way to do this? init python: def show_text_with_image(image, texts): renpy.show(image) for text in texts: renpy.say(None, text) renpy.pau...
by computerwhiz10101010
Sun Jan 07, 2024 5:37 pm
Forum: Ren'Py Questions and Announcements
Topic: how much stuff do i have to put in dollar signs?
Replies: 2
Views: 77589

how much stuff do i have to put in dollar signs?

my game wont run! also im pretty sure im doing it wrong. ive got an age prompt that was working fine, followed by cycling text and images which is broken. init python: def show_text_with_image(image, texts): renpy.show(image) for text in texts: renpy.say(None, text) renpy.pause() renpy.hide(image) #...
by computerwhiz10101010
Sun Jan 07, 2024 12:35 pm
Forum: Ren'Py Questions and Announcements
Topic: age prompt
Replies: 3
Views: 59195

Re: age prompt

got it! you were right! and it was white space. thank you so much
by computerwhiz10101010
Sun Jan 07, 2024 12:20 pm
Forum: Ren'Py Questions and Announcements
Topic: age prompt
Replies: 3
Views: 59195

Re: age prompt

i did as you said and it says i should not have deleted that colon I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/script.rpy", line 40: Line is followed by a block, despite not being a menu choice. Did you forget a colo...
by computerwhiz10101010
Sun Jan 07, 2024 4:10 am
Forum: Ren'Py Questions and Announcements
Topic: age prompt
Replies: 3
Views: 59195

age prompt

i made this age prompt, but the game doesn't run! why? # The script of the game goes in this file. # Declare characters used by this game. The color argument colorizes the # name of the character. define e = Character("Eileen") # The game starts here. label start: "Welcome to My Aweso...