Search found 7 matches

by yasminuscula
Thu Oct 20, 2022 9:56 am
Forum: Ren'Py Questions and Announcements
Topic: HELP error in coding a journal screen
Replies: 2
Views: 137

Re: HELP error in coding a journal screen

Use modal True and Hide instead of Return(). A modal screen prevents the user from interacting with displayables below it. Return is used to return from call screen, you need to use Hide when you use show screen or Show action. screen nav_screen(): modal True add "journal.png" modal True textbutton...
by yasminuscula
Wed Oct 19, 2022 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: HELP error in coding a journal screen
Replies: 2
Views: 137

HELP error in coding a journal screen

so, I want the player to be able to acess a simple journal with important information to the game progression, right? I managed to successfully add a button on the navigation menu: https://lh3.googleusercontent.com/oxCEtgpz-mdD4mH5atI6slOFMoRZ-c42IFju2m6YtN2S0Mnd0MpWX-XBb8Urfk_IavFKqXpakFwQ3UwtF1ivs...
by yasminuscula
Wed Oct 05, 2022 6:13 pm
Forum: Ren'Py Questions and Announcements
Topic: hELP with side images
Replies: 1
Views: 231

hELP with side images

So, i figured how to put a side image while the main character is talking as seen in here: https://drive.google.com/file/d/18e3TjHYMHsW58yIPogotwp-33CsAyq17/view?usp=sharing but when other characters are speaking the side image doesn't show up, like this: https://drive.google.com/file/d/1UsTXm5rGqvB...
by yasminuscula
Fri Jul 01, 2022 2:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with side image witch conditionswitch
Replies: 3
Views: 245

Re: Help with side image witch conditionswitch

You've defined "q" as both a character object and an image. Try changing one of them define q = Character("[name]", color= "#00008B", image="mysprite") image mysprite = ConditionSwitch( "gender=='masculino'", "boy_sprite.png", "gender=='feminino'", "girl_sprite.png", "gender== 'não binário/outro'",...
by yasminuscula
Thu Jun 30, 2022 10:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with side image witch conditionswitch
Replies: 3
Views: 245

Help with side image witch conditionswitch

so in my game i made the option for the player to be able to choose a gender, like this: image mysprite = ConditionSwitch( "gender=='masculino'", "boy_sprite.png", "gender=='feminino'", "girl_sprite.png", "gender== 'não binário/outro'", "nb_sprite.png") menu: "Eu me identifico com o gênero:" "Mascul...
by yasminuscula
Tue May 24, 2022 9:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with simple character choice
Replies: 1
Views: 236

Help with simple character choice

So im creating a game were I want the player to be able to choose between 3 options of characters (female, male and nonbinary). Basically what was answered here ( https://lemmasoft.renai.us/forums/viewtopic.php?t=41843 ) but I don't know if it would workout with 3 options instead of 2. And also how ...