Search found 7 matches

by obi_dev
Mon Oct 02, 2017 8:39 am
Forum: Development of Ren'Py
Topic: Time of day button, how to add time
Replies: 2
Views: 809

Re: Time of day button, how to add time

imagebutton: action Function(time.advance_time) There is this Dating Sim Engine (DSE) I have seen in this forum. A bit old, but maybe you could learn something from it? I knew it was going to be something simple! Thanks for the example as well. I have been trying to download random games to see how...
by obi_dev
Sun Oct 01, 2017 9:37 pm
Forum: Development of Ren'Py
Topic: Time of day button, how to add time
Replies: 2
Views: 809

Time of day button, how to add time

So.. I tried googling and searching and I guess I couldn't google right, or find exactly what I need. Maybe it's the structure of my code or the idea I am trying to do. So, in short, I have a gui setup for the user. on the gui, there is a day/time area. I create a button to "wait" to progr...
by obi_dev
Sat Aug 19, 2017 9:13 pm
Forum: Development of Ren'Py
Topic: Side image doesn't use default image during dialogue
Replies: 5
Views: 985

Re: Side image doesn't use default image during dialogue

Actually, xx is sort of a problem. (I'm surprised it works.) The right way to do it is. mom -sad "I'm not sad anymore." Yeah, I noticed when I did mom xx, it worked, but when I did the lint check, it came back with an undefined warning. However, with -sad, I get an error I'm sorry, but an...
by obi_dev
Sat Aug 19, 2017 8:03 pm
Forum: Development of Ren'Py
Topic: Side image doesn't use default image during dialogue
Replies: 5
Views: 985

Re: Side image doesn't use default image during dialogue

This is correct behavior, it's tracking the character attributes. So, your pretty much saying then that to get it to reset, i'd have to do mom mom sad mom xx Where XX would revert back to default. Interesting, but no worries. I figured I could make a "mom r" for reset and assign same attr...
by obi_dev
Sat Aug 19, 2017 6:47 pm
Forum: Development of Ren'Py
Topic: Side image doesn't use default image during dialogue
Replies: 5
Views: 985

Side image doesn't use default image during dialogue

Simple problem, but not sure about simple solution.. image side mom = Image("images/portraits/mom.png", xoffset=-50, yoffset=130) image side mom sad = Image("images/portraits/mom-sad.png", xoffset=-50, yoffset=130) mom "stuff stuff" mom sad "stuff stuff" mom &...
by obi_dev
Wed Aug 16, 2017 10:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Customising the namebox background
Replies: 9
Views: 3010

Re: Customising the namebox background

Actually, found the answer. By adding the properties to the character, I was able to control it. I edited say to everything I need. Cut say_MC down to just flipping the image and adding props to the character define mc = Character("[mcName]", color="#000000", image="mc"...
by obi_dev
Wed Aug 16, 2017 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Customising the namebox background
Replies: 9
Views: 3010

Re: Customising the namebox background

I am actually having a similarissue as this, but I would actually like to customize the textbox window. I seem to be failing at doing so, badly. Basically, for my MC, i want the side image to be left aligned but the window to be styled differently (i.e. padding differences) and for other characters,...