- Jul 23, 2017
- 442
- 3,155
Oh you great oracles of ren'py.
Why does working with ren'py always make me feel like going twelve rounds with Muhammad Ali. No matter how many times I try to get it to do something, nothing happens and when something finally begins making sense - I'm down for the count!
I'm just about ready to shoot myself, so I really hope that one of you oracles can help me with these (I'm sure are trivial to you) issues I'm having.
Question one:
I have two variables: Corruption & Focus.
I would like to display the "real" corruption (which is in fact derived from: Corruption - Focus) in a screen using the color red.
It took me the better part of four hours to figure this out:
It does the trick, but the text is white and I can't for the life of me figure out where to put the color tags to get this to work in red - for example.
Question two:
How do I set up a "test" with the "real" corruption (Corruption - Focus) within the game? I'm currently doing something like this, with other variables to determine the flow of the story:
I have a feeling that I'll be spending forever to figure this out on my own if I even can figure this out on my own.
And please understand that I'm not a coder by any stretch of your imagination. And I mean ... ANY STRETCH of your imagination, so an explanation in layman terms would be very much appreciated.
My mind doesn't bend the ren'py way and where others see order and logic, I see: ¤#"&"&#&¤#)(=
I hope you can help me, oh wise men (and women) of ren'py.
Cheers - Kaffekop
Why does working with ren'py always make me feel like going twelve rounds with Muhammad Ali. No matter how many times I try to get it to do something, nothing happens and when something finally begins making sense - I'm down for the count!
I'm just about ready to shoot myself, so I really hope that one of you oracles can help me with these (I'm sure are trivial to you) issues I'm having.
Question one:
I have two variables: Corruption & Focus.
I would like to display the "real" corruption (which is in fact derived from: Corruption - Focus) in a screen using the color red.
It took me the better part of four hours to figure this out:
Code:
text ('Corruption {}'.format(Corruption-Focus))
Question two:
How do I set up a "test" with the "real" corruption (Corruption - Focus) within the game? I'm currently doing something like this, with other variables to determine the flow of the story:
Code:
if PleasureZone >= 4:
jump SomeWhere_1
And please understand that I'm not a coder by any stretch of your imagination. And I mean ... ANY STRETCH of your imagination, so an explanation in layman terms would be very much appreciated.
My mind doesn't bend the ren'py way and where others see order and logic, I see: ¤#"&"&#&¤#)(=
I hope you can help me, oh wise men (and women) of ren'py.
Cheers - Kaffekop