Search found 29 matches

by dellcartoons
Sun Apr 11, 2021 5:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Color-changing bar
Replies: 4
Views: 580

Re: Color-changing bar

Okay, that looks like what I want

Thank you
by dellcartoons
Sun Apr 11, 2021 4:55 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Color-changing bar
Replies: 4
Views: 580

Re: Color-changing bar

The image lifebar_player = Composite((1200, 720), keeps coming up w/ "not terminated with a newline. (Check strings and parenthesis.)"

Aside from that I can get the image to work

But where do I put the code so that the bar color changes?

Thank you
by dellcartoons
Sun Apr 11, 2021 3:02 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Color-changing bar
Replies: 4
Views: 580

[SOLVED] Color-changing bar

I have a health bar I want the bar to change color according to how healthy you are. For instance, if you are at full health the bar is green. If you are at half your health the bar is yellow. If you are severely injured, almost dead, the bar should be red I've created several images for the bars, b...
by dellcartoons
Thu Oct 17, 2019 5:43 pm
Forum: Completed Games
Topic: Lewdo [18+] [Free] [Dating Sim] [Mystery Deduction]
Replies: 1
Views: 2227

Lewdo [18+] [Free] [Dating Sim] [Mystery Deduction]

https://dellcartoons.files.wordpress.com/2019/10/gallery-main_menu.png?w=800 Lewdo. The Dating Sim/Murder Mystery Deduction Game Your friend, one of the twelve women pictured above, has been MURDERED! You know that one of the other eleven killed her. You have to figure out which one of them did it,...
by dellcartoons
Thu Oct 17, 2019 5:23 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Moving various titles to the middle
Replies: 5
Views: 892

Re: [Solved] Moving various titles to the middle

Okay, but all I did was change:

Code: Select all

"About"
to

Code: Select all

"                    About"
by dellcartoons
Wed Oct 16, 2019 11:12 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Lists don't refill after reload/restart
Replies: 5
Views: 650

Re: [Solved] Lists don't refill after reload/restart

Got it. A few "define"s that should have been "default"s

Man, "define" and "default" can really mess things up. And I thought I knew when to use which!
by dellcartoons
Wed Oct 16, 2019 10:57 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Lists don't refill after reload/restart
Replies: 5
Views: 650

Re: Lists don't refill after reload/restart

This is part of it: init python: class Traits(object): def __init__(self, *args, **kwargs): self.__dict__.update(kwargs) init python: class TraitSelection(Traits): STAT_DEFAULTS = { 't1' : 0, 't2' : 0, 't3' : 0, 't4' : 0, 't5' : 0, } define first = ["Cat", "Dog", "Horse"...
by dellcartoons
Wed Oct 16, 2019 2:23 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Lists don't refill after reload/restart
Replies: 5
Views: 650

Re: Lists don't refill after reload/restart

Basically like this: default trait_list = [s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11] or if the list doesn't change, then this: define first = ["Cat", "Dog", "Horse", "Dolphin", "Bird", "Snake", "Fox", "Frog", "R...
by dellcartoons
Tue Oct 15, 2019 10:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Lists don't refill after reload/restart
Replies: 5
Views: 650

[Solved] Lists don't refill after reload/restart

I have several lists that are filled at the beginning then get emptied during my game

But when I shift+r reload or finish the game and go back to the main menu and start, all my lists are empty

HELP!
by dellcartoons
Tue Oct 15, 2019 6:54 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Moving various titles to the middle
Replies: 5
Views: 892

[Solved] Moving various titles to the middle

How do I move the titles on various pages (Preferences, About, Help, etc.) from the upper left corner to the middle? I can't even find where they are

Thank you

EDIT: Never mind. I got it
by dellcartoons
Sun Oct 13, 2019 3:59 pm
Forum: Ren'Py Questions and Announcements
Topic: How important are sound fx and music?
Replies: 4
Views: 651

How important are sound fx and music?

How important are sound fx and music? I almost always mute the sound fx, and always mute the music

I don't actually need sound fx and music for my game, so should I just leave them out?
by dellcartoons
Sat Sep 21, 2019 6:16 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] background image in screen
Replies: 2
Views: 554

Re: background image in screen

Thank you

I actually had to put the text in a second vbox to get it to work the way I needed, but now it works. Thank you

Now I just have to make sure it's readable. But that's a design problem, not a code problem
by dellcartoons
Sat Sep 21, 2019 10:18 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] background image in screen
Replies: 2
Views: 554

[Solved] background image in screen

I want to set up a small screen w/ a background image, and text written over the image. I tried "add", but that just pushes the text below the image

Additionally, I would like this background image to change, depending on certain variables

Thank you
by dellcartoons
Wed Sep 11, 2019 9:41 pm
Forum: Ren'Py Questions and Announcements
Topic: screen style tutorial?
Replies: 2
Views: 470

screen style tutorial?

Can anyone recommend a basic tutorial for screens? I want to change the background color and text color, maybe add a small image I know it has to do w/ style, but I can't seem to wrap my head around how style works or where to place it in the code I read the documentation, but I just can't seem to g...
by dellcartoons
Sun Aug 25, 2019 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Showing and hiding multiple screens
Replies: 4
Views: 517

Re: Showing and hiding multiple screens

> Maybe try SetLocalVariable if using used screens...

Solved!

Thank you both