Search found 12 matches

by queergames
Fri Feb 03, 2017 11:25 am
Forum: Creator Discussion
Topic: The new renai.us/games.renpy.org support thread.
Replies: 255
Views: 415127

Re: The new renai.us/games.renpy.org support thread.

hi we've changed the name of our business since we posted our first game, and when i edited the entry, it changed the download url but not the creator names? (which is now Tree Games) http://games.renpy.org/game/agameofthree
by queergames
Sat Feb 14, 2015 7:33 pm
Forum: Ren'Py Questions and Announcements
Topic: the quietest shrieking over a simple stats menu [solved]
Replies: 7
Views: 1365

Re: the quietest shrieking over a simple stats menu

Perfect! I figured it all out and it's working perfectly. Thanks so much to everyone.
by queergames
Sat Feb 14, 2015 2:40 pm
Forum: Ren'Py Questions and Announcements
Topic: the quietest shrieking over a simple stats menu [solved]
Replies: 7
Views: 1365

Re: the quietest shrieking over a simple stats menu

The "if" statements are missing the numbers 21 and 50: if exp < 21: # what if exp == 21??? text "Level 1" if exp > 21 and exp < 50: # what if exp == 21 or == 50 ??? text "Level 2" if exp > 50: text "Level 3" # what if exp == 50??? I suggest: if exp < 21: text...
by queergames
Sat Feb 14, 2015 2:04 am
Forum: Ren'Py Questions and Announcements
Topic: the quietest shrieking over a simple stats menu [solved]
Replies: 7
Views: 1365

Re: the quietest shrieking over a simple stats menu

Thanks. That worked, I think. Now I just need to make it have a background and limit the size. xysize produced an invalid syntax error. Ugh. I am so not a coder. edit: also it seems like dysphoria is stuck at 100? i think i can fix that myself, but the size and the clear background are still problem...
by queergames
Fri Feb 13, 2015 7:28 pm
Forum: Ren'Py Questions and Announcements
Topic: the quietest shrieking over a simple stats menu [solved]
Replies: 7
Views: 1365

the quietest shrieking over a simple stats menu [solved]

so here's the deal: i'm making a game which has a small stats menu on the top right. seems easy, yes? apparently not. i don't even want to show you guys the code because i KNOW that it's a mess. i've never used screens before and it really shows. i've already tried nabbing someone else's python code...
by queergames
Fri Nov 01, 2013 1:34 am
Forum: Ren'Py Questions and Announcements
Topic: conditionswitch wtf [solved]
Replies: 7
Views: 1144

Re: conditionswitch wtf

I figured it out. Thanks, guys.
by queergames
Thu Oct 31, 2013 1:42 pm
Forum: Ren'Py Questions and Announcements
Topic: conditionswitch wtf [solved]
Replies: 7
Views: 1144

Re: conditionswitch wtf

xavimat's method did the Everything is Prot11.
My current code IS posted.

However, here it is again (please note this is NOT the first script file as I've turned that into the chapter selection screen, thus the label)
by queergames
Thu Oct 31, 2013 1:57 am
Forum: Ren'Py Questions and Announcements
Topic: conditionswitch wtf [solved]
Replies: 7
Views: 1144

Re: conditionswitch wtf

That brought me back to the Everything Is Prot11.png Problem.
by queergames
Tue Oct 29, 2013 9:27 pm
Forum: Ren'Py Questions and Announcements
Topic: conditionswitch wtf [solved]
Replies: 7
Views: 1144

conditionswitch wtf [solved]

I hesitate to look like an idiot, but since I appear to in fact be an idiot, I have given up and I am back again. Right now I am making a game where there are four possible protagonist appearances to choose from. The player gets to decide if their character has long hair or short hair, and breasts o...
by queergames
Tue Oct 29, 2013 5:00 pm
Forum: Ren'Py Questions and Announcements
Topic: multiple images for one variable [solved]
Replies: 4
Views: 909

Re: multiple images for one variable

Oh sweet. This is perfect. Thanks so much!
by queergames
Tue Oct 29, 2013 1:29 am
Forum: Ren'Py Questions and Announcements
Topic: multiple images for one variable [solved]
Replies: 4
Views: 909

Re: multiple images for one variable

Because I don't know what that is, so explain it to me or link me to a page explaining it.
by queergames
Mon Oct 28, 2013 11:43 pm
Forum: Ren'Py Questions and Announcements
Topic: multiple images for one variable [solved]
Replies: 4
Views: 909

multiple images for one variable [solved]

Variable is probably the wrong word. Anyway, My newest game is going to have 4 different appearance choices for the protagonist. I am trying figure out a way to do this which would be shorter than the way I did it in my last game. Last time I just did it as follows: if the_choice: show prot_masc at ...