Search found 6 matches
- Mon Jul 13, 2020 1:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Instant label jump when call screening
- Replies: 1
- Views: 281
Instant label jump when call screening
Sorry if this is too basic, but I didn't know what to type in the search bar to find an answer to my situation I have a map system where I call a screen, and when clicking on an icon it takes you to that place. However, when clicking on the icon it won't jump to that label, you have to click on the ...
- Sun Jul 12, 2020 12:27 am
- Forum: Ren'Py Questions and Announcements
- Topic: How do I properly place an if statement under an if statement?
- Replies: 1
- Views: 280
How do I properly place an if statement under an if statement?
menu: "Walk around": if playerenergy >= 35: $ playerenergy -= 35 if playerenergy <= 0: $ playerenergy = 0 jump expression renpy.random.choice( ["coco", "mandy", "cocomandy"] ) else: "You don't have enough energy." call beach I want the player to only be able to "walk around" if they have 35 energy, ...
- Sun Jul 05, 2020 10:49 am
- Forum: Ren'Py Questions and Announcements
- Topic: Minimum value for my variable is not working
- Replies: 0
- Views: 278
Minimum value for my variable is not working
I searched around the forum and found this solution someone posted # init -1 python: RestrictRanges_ = {} def RestrictRangeCallback(): for v in RestrictRanges_: if hasattr(store, v): val = getattr(store, v) val_min, val_max = RestrictRanges_[v] if val_min is not None and val < val_min: setattr(store...
- Sun Jul 05, 2020 1:00 am
- Forum: Ren'Py Questions and Announcements
- Topic: Why are my bars suddenly not responding to changes?
- Replies: 5
- Views: 329
Re: Why are my bars suddenly not responding to changes?
# variables for the values label cocohome: $ cocobeauty = 35 $ cocohousework = 20 $ cocosex = 15 $ cocointelligence = 75 $ cocolove = 35 $ cocoobedience = 40 $ cocofatigue = 100 # and my bar code screen cellphone(): add "cellphonezoom.png" imagemap: ground "cellphonezoom.png" hotspot(981, 725, 64, 6...
- Sat Jul 04, 2020 7:25 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Why are my bars suddenly not responding to changes?
- Replies: 5
- Views: 329
Re: Why are my bars suddenly not responding to changes?
Should've added the end of it, but the xy value is there
- Sat Jul 04, 2020 9:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: Why are my bars suddenly not responding to changes?
- Replies: 5
- Views: 329
Why are my bars suddenly not responding to changes?
Everything was going fine until I tried adding the "fatigue" bar, now not only will it not show up, the other bars won't change position anymore (the values do change though)