Search found 1347 matches
- Wed Feb 04, 2015 4:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with a simple hour system? I have one problem
- Replies: 6
- Views: 564
- Wed Feb 04, 2015 4:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with a simple hour system? I have one problem
- Replies: 6
- Views: 564
Re: Help with a simple hour system? I have one problem
Oh, thank you. I guess that makes sense 
- Wed Feb 04, 2015 4:05 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
No offense but I actually spent a good hour looking through all sorts of forum posts and cookbook/tutorial/documentation for this. and it's mostly just because I didn't capitalize the 'jump' action.
- Wed Feb 04, 2015 3:57 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
Here's the working code: screen inv_screen: side "c b r": area (590, 10, 200, 200) viewport id "vp": draggable True mousewheel True vbox: text "{color=#ff6699}Money: $[money]{/color}" text "{color=#ccccff}Inventory:{/color}" # for i in range(len(items)): if "Candy Bar" in items: textbutton "Candy Ba...
- Wed Feb 04, 2015 3:55 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
YESSS
Thank you
Thank you
- Wed Feb 04, 2015 3:54 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
Wait, I think I got it working.
- Wed Feb 04, 2015 3:52 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
Yeah...It's still not working
- Wed Feb 04, 2015 3:51 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
I'll try that. It's just that lowercase jump works when I'm jumping from page to page so I assumed it was lowercase.
- Wed Feb 04, 2015 3:34 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
I wish I could figure out a way to make the items list that appears in the inventory interactive. Like..i Know $ items_list = textbutton(" ".join(items)) doesn't work. or $ items_list = textbutton " ".join(items) There is no way to change the output of the items list? rather than just text but somet...
- Wed Feb 04, 2015 3:22 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with a simple hour system? I have one problem
- Replies: 6
- Views: 564
Re: Help with a simple hour system? I have one problem
#time: $ hours = 0 $ hours_max = 24 #haven't actually used this $ day = 1 $ month = 1 if hours >= 24: $ day += 1 $ hours = 0 if day >= 30: $ month += 1 This is the temporary set up until I had something working. I'm only concerned about the hours going over issue
- Wed Feb 04, 2015 3:18 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
I've tried action jump("blah")
and tried action show("blah")
and it tells me theres no such thing as jump or show ? so ...idk
and tried action show("blah")
and it tells me theres no such thing as jump or show ? so ...idk
- Wed Feb 04, 2015 3:17 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
Re: How do I make a button do something?
Yeah, I looked at that page but it's not specific enough for what I'm trying to accomplish unfortunately.
- Wed Feb 04, 2015 2:34 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How do I make a button do something?
- Replies: 12
- Views: 1031
How do I make a button do something?
How do I tell a button to do something specific? I've made screens and I've made buttons that can return to the last page/screen etc but I don't know how to have the button start a label or an action of my own? This is ..what I have. I know it's wrong. Am I close though? screen action_screen: frame ...
- Wed Feb 04, 2015 1:49 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with a simple hour system? I have one problem
- Replies: 6
- Views: 564
Help with a simple hour system? I have one problem
I just want a really basic time and date set up. So I created my own. There are no month names or complex system at all. So I guess that's why my system is a little faulty. Basically, I Just have a screen that tells me what hour I am on and what day and what month like: http://i57.tinypic.com/2r2oje...
- Tue Feb 03, 2015 10:31 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help? Can't add to values more than once in a scene..
- Replies: 4
- Views: 454
Re: Help? Can't add to values more than once in a scene..
Thank you. I could try hiding and re showing them 