Search found 7 matches

by Carter
Wed Jul 27, 2022 4:33 pm
Forum: We are a Free Project looking for Partners
Topic: [OPEN] [FREE] Looking for Visual Artists for Characters/BG/CG
Replies: 0
Views: 1135

[OPEN] [FREE] Looking for Visual Artists for Characters/BG/CG

Hello! As the title suggests, I am looking for anyone who is interested in creating Character sprites, Backgrounds, or CG scenes for my game. The game in question is free, and it is a passion project of mine, so I can't pay you. The project in question is a modern reimagining of The Adventures of Sh...
by Carter
Sat May 21, 2022 1:42 am
Forum: Asset Creation: Writing
Topic: Should I give my player insert character a backstory?
Replies: 1
Views: 4049

Should I give my player insert character a backstory?

Currently my player character is set up really well to be a player insert character, having no predetermined name, age, gender, nationality, or really anything. There isn't even going to be a model for what they actually look like since the whole game will be in first person. Add to that the game st...
by Carter
Mon Mar 28, 2022 11:39 pm
Forum: Creator Discussion
Topic: Any advice for writing Ace Attorney style mysteries?
Replies: 2
Views: 3133

Any advice for writing Ace Attorney style mysteries?

I already have my code all set up, I've tested it and it all works great, so now I just have to write the dang mysteries. My biggest concern is difficulty. I want it to be clear which statements are important and how they relate to each other, but I don't want it to be so obvious that it's a no-brai...
by Carter
Mon Mar 28, 2022 1:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved] Textbutton color is the same color as text?
Replies: 2
Views: 320

Re: Textbutton color is the same color as text?

Ocelot wrote: Mon Mar 28, 2022 12:07 pm This is selected button. In your case it is because [selectedobs1 variable already has value of 0.

If you do not want that, slap selected False property on your textbuttons
I see! I never even thought about that
thank you!
by Carter
Mon Mar 28, 2022 11:44 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Textbutton color is the same color as text?
Replies: 2
Views: 320

[solved] Textbutton color is the same color as text?

For some reason the one of my buttons is the same color as the text, and I'm not sure why. It still acts like a button but it doesn't highlight when the cursor is over it. https://i.imgur.com/o1WliKJ.png The code for this screen is pretty simple, a little messy sure but i don't get what could possib...
by Carter
Sat Mar 26, 2022 11:42 pm
Forum: Asset Creation: Writing
Topic: Have you ever made a Visual Novel with multiple POV characters?
Replies: 5
Views: 3300

Have you ever made a Visual Novel with multiple POV characters?

I've heard a lot about people playing them, but I'm curious if anyone here has actually tried to make one. If so, how did go about structuring the story? What were some of the challenges that you encountered? Did your POV characters interact with each other, and if so what was that like? I probably ...
by Carter
Fri Mar 25, 2022 11:16 am
Forum: Ren'Py Questions and Announcements
Topic: Is it possible to create a counter that will add +1 every time dialogue is spoken?
Replies: 2
Views: 396

Is it possible to create a counter that will add +1 every time dialogue is spoken?

Since I'm making a non-linear game where conversations can be revisited, I was thinking about making a variable that starts at 0 and counts up by 1 each time a line of dialogue is spoken. I know in theory I could just add code like dialoguecounter+=1 at the bottom of every single line of dialogue, b...