Search found 46 matches

by terrordoll
Wed May 24, 2017 7:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Function doesn't update Sensitive conditional [Solved]
Replies: 3
Views: 585

Re: Imagebutton Function doesn't update Sensitive conditiona

Each of the three mix buttons fires off a function that should eventually keep track of what was added to the machine. It also toggles the two bools for whether the maching is not empty and when its full (mixer_empty and mixer_full). Right now it's just hardwired to flip the bools while I try to fi...
by terrordoll
Wed May 24, 2017 7:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Function doesn't update Sensitive conditional [Solved]
Replies: 3
Views: 585

Re: Imagebutton Function doesn't update Sensitive conditiona

Tried to do this a little cleaner and hit another bump. screen mixing_screen(): imagebutton idle "mixer_left_idle_image" hover "mixer_left_hover_image" action SetVariable('mixture[0]', helditem) sensitive mixture[0] == None xpos 400 ypos 0 imagebutton idle "mixer_center_idle...
by terrordoll
Wed May 24, 2017 5:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Function doesn't update Sensitive conditional [Solved]
Replies: 3
Views: 585

Function doesn't update Sensitive conditional [Solved]

I have a screen that I define like this: screen mixing_screen(): imagebutton idle "mixer_left_idle_image" hover "mixer_left_hover_image" action [SetVariable('mixer_left', helditem), Function(MixAdd)] sensitive mixer_left == "none" xpos 400 ypos 0 imagebutton idle "...
by terrordoll
Wed May 24, 2017 2:23 pm
Forum: Ren'Py Questions and Announcements
Topic: ConditionSwitch and Imagebutton
Replies: 4
Views: 1369

Re: ConditionSwitch and Imagebutton

Trooper6, once again, thank you. I know I kinda blundered my way through to the solution by I really appreciate that you took the time to write out a detail answer with code. Can't tell you how awesome that is. Hats off to you my friend! *EDIT:The Arrangement of the ContitionSwitch and the Init bloc...
by terrordoll
Wed May 24, 2017 1:47 pm
Forum: Ren'Py Questions and Announcements
Topic: ConditionSwitch and Imagebutton
Replies: 4
Views: 1369

Re: ConditionSwitch and Imagebutton

Oh good lord I think I figured it out, at least partially. I didn't get that that ' and " are essentially the same thing. I'm still not sure why variables are accessible by their reference name and have to be a string some times but I can deal with that. So my first mistake was not putting doub...
by terrordoll
Wed May 24, 2017 1:02 pm
Forum: Ren'Py Questions and Announcements
Topic: ConditionSwitch and Imagebutton
Replies: 4
Views: 1369

ConditionSwitch and Imagebutton

I'm having trouble getting a condition switch to work with an image button and I can't seem to find the answer in any of the searches I've done. I have a feeling the real issue here is a misunderstanding on how Renpy and Python reference variables. Functionally everything seems set up ok, I think th...
by terrordoll
Sat May 20, 2017 2:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

Trooper6 this is amazing! I understand all of it. The example of a python class and a function is also a huge help. I mentioned earlier I'm a C# programmer but I haven't had much time to dig into python yet. Just seeing simple syntax examples is most of what I need. This is the sort of thing I'd lov...
by terrordoll
Sat May 20, 2017 12:40 am
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

Schedule still crazy Trooper6?
by terrordoll
Fri May 12, 2017 5:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

I'm reading up on functions and diving into python in the mean time. Thanks again for all your time and help!
by terrordoll
Fri May 12, 2017 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

There is a lot going on in your code that I'd do differently...but I can't get into it all right now due to grading. However, just a quick thing about your mapscreen: imagebutton auto "gui/map_temple_%s.png" action [Hide('map'), Jump('location_temple')] xpos 1304 ypos 498 focus_mask True ...
by terrordoll
Fri May 12, 2017 4:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Are there any well made Renpy games that are open?
Replies: 2
Views: 609

Are there any well made Renpy games that are open?

Can anyone make a recommendation for a decent game that is unarchived? I'd love to take a look at how other developers are tackling some of the issues I'm running into. The sample game that comes with Renpy, while informative, doesn't deal with some of the more complicated issues and it uses the old...
by terrordoll
Fri May 12, 2017 3:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

Saltome, Thanks for the reply I appreciate it. I like the idea of handling the logic within a single label and this would give me most of that. While its a workable solution it feels a little like I'm working against the system though. What I'm doing (gating a action with a few different conditions ...
by terrordoll
Fri May 12, 2017 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Re: Question on labels screens and flow control

under your map screen... you could add an if statement to determine if the area was unlocked yet (however you would do it, i just used something basic) if cove_unlocked: imagebutton auto "gui/map_mermaid_%s.png" action Jump('location_cove') xpos 1495 ypos 549 focus_mask True else: #image ...
by terrordoll
Fri May 12, 2017 1:09 am
Forum: Ren'Py Questions and Announcements
Topic: Question on labels screens and flow control
Replies: 15
Views: 3181

Question on labels screens and flow control

I'm making some decent progress on my game but I seem to run into problems consistently when bouncing between screens. There is something about the flow of things I'm just wrapping my head around. If someone could explain this to me i'd be hugely grateful. Here's what I'm trying to do. I have a map ...
by terrordoll
Thu May 04, 2017 9:48 am
Forum: Ren'Py Questions and Announcements
Topic: How to change position of menu?
Replies: 5
Views: 6018

Re: How to change position of menu?

Indoneko told you how to move the menu position a few posts up. The back ground is changed with gui.main_menu_background in the same GUI.rpy file.