Search found 13 matches

by Hollace
Thu May 06, 2021 7:50 pm
Forum: Ren'Py Questions and Announcements
Topic: [Player Customization] In-Game Warderobe + NPC notices
Replies: 3
Views: 1106

Re: [Player Customization] In-Game Warderobe + NPC notices

Thank you for the response! I'm a little late as I wanted to code what I could before replying in case I figure it out on my own. So far I've got the dress up to work flawlessly, I've got gender recognition as well as skin colour recognition... the only thing where I am currently stuck at is the fas...
by Hollace
Wed May 05, 2021 5:43 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] conditional statement does not expect a block?
Replies: 2
Views: 718

Re: [Solved] conditional statement does not expect a block?

so I found a pretty simple way to fix it and I don't know how I hadn't thought of it earlier <:D 'cause it's literally the same as I do my different colours lmaooo if gender == "Male" and skin == 1: "/Assets/SkinColour/Male/MBase01.png" elif gender == "Male" and skin ==...
by Hollace
Wed May 05, 2021 5:12 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] conditional statement does not expect a block?
Replies: 2
Views: 718

Re: conditional statement does not expect a block?

I think I should explain something I forgot to explain since I was extremely tired <:D! So my reasoning behind doing this line of code: if gender == "Male": if skin == 1: "/Assets/SkinColour/Male/MBase01.png" is that I have multiple genders with different sprites but I want the s...
by Hollace
Tue May 04, 2021 7:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] conditional statement does not expect a block?
Replies: 2
Views: 718

[Solved] conditional statement does not expect a block?

I made a post before, but thought I found the problem and immediately deleted it,,, seems I didn't find it at all <:D I'm not sure what's going on, according to my tired eyes the code seems to be all alright, no issues nothing... unless I understand conditional statements wrong? At first I thought t...
by Hollace
Tue May 04, 2021 10:47 am
Forum: Ren'Py Questions and Announcements
Topic: [Player Customization] In-Game Warderobe + NPC notices
Replies: 3
Views: 1106

[Player Customization] In-Game Warderobe + NPC notices

Hi there! I've got a pretty ambiguous game plan in mind, I've already found most of the things I need to get started on coding, but one I couldn't quite find... And that's player customization. I apologize in advance for my English, I am not a native speaker but I truly do my best. I've already look...
by Hollace
Wed Aug 30, 2017 6:07 am
Forum: Ren'Py Questions and Announcements
Topic: Main Menu Customizations?
Replies: 1
Views: 337

Main Menu Customizations?

I've been trying my hardest to solve this problem, but I couldn't seem to solve it. Basically, I want my main menu buttons AND not my game menu buttons to be in the middle of the screen instead of at the left. I'll show you my image; http://i.imgur.com/MizfXNZ.jpg the red box is where I'd like my bu...
by Hollace
Sun Jul 30, 2017 7:07 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Remembering choices not working
Replies: 2
Views: 743

Re: Remembering choices not working

Milkymalk wrote: Fri Jul 28, 2017 10:20 am If Kimya_Lunch is not set to True, it is not automatically False. You have to set a variable to SOMETHING before you are allowed to check it.
I had to think for a little on what you meant, but now I notice what I was doing wrong, oh how embarrassing :oops: thank you for helping out!
by Hollace
Sun Jul 30, 2017 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Textbox keeps dissapearing when transition for character is in work.
Replies: 2
Views: 519

Re: Textbox keeps dissapearing when transition for character is in work.

Odd, this doesn't happen with me, what kind of transition are you working with? Also, which version of Ren'Py are you using? Show Window doesn't work anymore, as said here: https://www.renpy.org/wiki/renpy/doc/cookbook/Showing_and_Hiding_the_Window Btw, have you tried the dissolve transition? with ...
by Hollace
Sun Jul 30, 2017 7:01 am
Forum: Ren'Py Questions and Announcements
Topic: Side Images, how to dissolve?
Replies: 0
Views: 731

Side Images, how to dissolve?

Hello! I've been reworking my visual novel to make it more appealing to the eye. There are quite a few problems I am getting stuck on, but I'm starting to understand how to do them. All though there is one specifically that I can't seem to get an understanding of. How to make side images dissolve wi...
by Hollace
Fri Jul 28, 2017 9:22 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Remembering choices not working
Replies: 2
Views: 743

[Solved] Remembering choices not working

I've been trying to make my game really broad with a lot of endings with it. The only struggle I am having with this right now is that it doesn't wanna remember user choices like it should. I've searched up plenty of things on how to get it to work, but it just won't do the trick. Currently I got th...
by Hollace
Thu Jul 27, 2017 5:52 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Textbox keeps dissapearing when transition for character is in work.
Replies: 2
Views: 519

[Solved] Textbox keeps dissapearing when transition for character is in work.

Hello, currently I've been trying to make my visual novel more visually appealing which we all know is important to visual novels. I've always disliked the look of the text box disappearing whenever there was a transition, so I had searched up on how to fix this, either the tutorials were outdated o...
by Hollace
Tue Jul 18, 2017 8:18 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Sprite keeps dissapearing after another show
Replies: 4
Views: 601

Re: Sprite keeps dissapearing when new sprite is shown, help

That's because both sprites have the same name tag ("sp" in this case). You should give them different tags or they will overwrite each other when they are shown. See here: https://www.renpy.org/doc/html/displaying_images.html#image ah! I see it now, thank you very much, I've changed it a...
by Hollace
Tue Jul 18, 2017 7:01 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Sprite keeps dissapearing after another show
Replies: 4
Views: 601

[SOLVED] Sprite keeps dissapearing after another show

I've been busy on my new visual novel and for some reason ever since I started using Jedit, this strange glitch keeps occurring. I want two characters to be shown on the screen at once! I've been trying all kinds of ways to get it to work, but every code that I try keeps making the first character d...