Search found 21 matches
- Sat Aug 06, 2016 3:52 pm
- Forum: Development of Ren'Py
- Topic: Error installing rapt on 6.99.10
- Replies: 8
- Views: 1849
Re: Error installing rapt on 6.99.10
Thanks for your help, Helia!! I tried out your suggestion and it turned out that /extras/google/play_apk_expansion and /extras/google/play_licensing didn't even exist in rapt/android-sdk-r24.4.1. I did have those files in my older version of RAPT (android-sdk-r23) so I copied them over without rena...
- Thu Aug 04, 2016 3:58 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to stop renpy from going to a label to define images?
- Replies: 4
- Views: 1028
Re: how to stop renpy from going to a label to define images
too many bracketsgas wrote:This happen if your conditions are bad coded. At least ONE condition must be true.
- Thu Aug 04, 2016 3:46 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to stop renpy from going to a label to define images?
- Replies: 4
- Views: 1028
Re: how to stop renpy from going to a label to define images
The problem is that the image statements run at init time, before the labels are called. You probably want to use a CondtionSwitch here: image A = ConditionSwitch("vrouw", "1A.jpg", "True", "2A.jpg") etc. Now I used conditionswitch I get the following error: Exception: Switch could not choose a dis...
- Thu Aug 04, 2016 2:10 pm
- Forum: Ren'Py Questions and Announcements
- Topic: how to stop renpy from going to a label to define images?
- Replies: 4
- Views: 1028
how to stop renpy from going to a label to define images?
I have a game where you can choose to have pictures of girls or boys, so I used the following code to define the images: label TV: $ man = False $ vrouw = True hide vrouw hide man $ show_quick_menu2 = False image A ='1A.jpg' image B ='1B.jpg' image C ='1C.jpg' image D ='1D.jpg' image E ='1E.jpg' ima...
- Thu Aug 04, 2016 9:55 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to find the highest value withinin a class?
- Replies: 1
- Views: 224
Re: How to find the highest value withinin a class?
I think I already found something that works, without classes though.
if Axxx > max(Bxxx, Cxxx, Dxxx, Exxx, Fxxx, Gxxx, Hxxx, Ixxx, Jxxx, Kxxx, Lxxx, Mxxx, Nxxx, Oxxx, Pxxx, Qxxx, Rxxx, Sxxx, Txxx, Uxxx, Vxxx, Wxxx, Xxxx, Yxxx, Zxxx):
thanks to the people that tried to help.
if Axxx > max(Bxxx, Cxxx, Dxxx, Exxx, Fxxx, Gxxx, Hxxx, Ixxx, Jxxx, Kxxx, Lxxx, Mxxx, Nxxx, Oxxx, Pxxx, Qxxx, Rxxx, Sxxx, Txxx, Uxxx, Vxxx, Wxxx, Xxxx, Yxxx, Zxxx):
thanks to the people that tried to help.
- Thu Aug 04, 2016 8:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to find the highest value withinin a class?
- Replies: 1
- Views: 224
How to find the highest value withinin a class?
I couldn't find the solution to my problem so I'm asking it myself. I'm trying to find the highest value from a class of 26 values. How can that be done? I've defined the values like this: class stat1: define Axxx = 0 define Bxxx = 0 define Cxxx = 0 ... define Xxxx = 0 define Yxxx = 0 define Zxxx = 0