Search found 13 matches

by Night130
Sun Jun 03, 2018 10:02 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED Points endings not working
Replies: 6
Views: 845

Re: Points endings not working

I played through the game, and all of the points add up correctly. Anya's ending still works, while the other 3's ending all jump to Johns. Edit: I got it to work! I move all of the if _Points together. Before I just had if _Points with their ending right underneath. Turns out I needed them together...
by Night130
Sun Jun 03, 2018 9:19 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED Points endings not working
Replies: 6
Views: 845

Re: Points endings not working

How much more code do you need? There's almost 2,000 lines of code. I'm not sure how much I should paste. I added the vbox code, and changed the +=2 to += 1, and it still does the same thing. menu: "Go shopping with Anya": $ anya_Point += 1 $ anyatruth = True jump yesshopping "Decline...
by Night130
Sun Jun 03, 2018 2:26 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED Points endings not working
Replies: 6
Views: 845

SOLVED Points endings not working

In my game, there are 4 possible endings, and depending on how many points you get for a certain character, is the ending you end up with. I have 2 of the ending working, but the other 2 are not. Here is my code: label start: $ rapunzel_Point = 0 $ anya_Point = 0 $ dimitri_Point = 0 $ john_Point = 0...
by Night130
Fri Jun 01, 2018 8:39 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] True/If statements not working
Replies: 5
Views: 1363

Re: True/If statements not working

It works now! Thank you all so much! And thank you kivik for the detailed response!! :D
by Night130
Thu May 31, 2018 10:42 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] True/If statements not working
Replies: 5
Views: 1363

[SOLVED] True/If statements not working

I'm having trouble with depending on what you pick from the menu, will affect the story later. This is what I have: default redmask = False default whitemask = False default butterflymask = False default catmask = False label start: $ butterflymask = False $ redmask = False $ catmask = False $ white...
by Night130
Sat May 26, 2018 8:01 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make menu items disappear after being clicked
Replies: 2
Views: 3160

[SOLVED] Make menu items disappear after being clicked

I'm trying to make choices from the the menu go away after being selected, so that when the menu comes up again, that choice you selected is now gone. I keep getting this error: I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 279, in scr...
by Night130
Sat May 26, 2018 11:50 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Changing menu style for one choice
Replies: 2
Views: 399

Re: Changing menu style for one choice

I got it work :) Here is my script if anyone needs it :) call screen hbox_screen Then in another file add: style centered: xalign 0.5 yalign 0.5 spacing 5 screen hbox_screen: hbox: style "centered" textbutton "White and classy\n{image=whitemask.png}" action Jump ("okay1"...
by Night130
Sat May 26, 2018 11:10 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Changing menu style for one choice
Replies: 2
Views: 399

[Solved] Changing menu style for one choice

I've seen other posts about changing the menu style, but from what I understand, that changes all of the menu choices. I would like to change the menu style to horizontal for just one choice, instead of all of them. Is that possible? Here is what I am working on: https://ibb.co/edjwd8 As you can see...
by Night130
Thu Apr 26, 2018 8:40 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Point system not working?
Replies: 5
Views: 716

Re: Point system not working?

Thank you both! That fixed it! The point value was wrong. Where I put menu: "Go to the gardens": jump garden2 $ aurora_Point = +2 Should have been" menu: "Go to the gardens": jump garden2 $ aurora_Point = +1 So, a +1 instead of a +2 :D
by Night130
Wed Apr 25, 2018 11:27 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Point system not working?
Replies: 5
Views: 716

[Solved] Point system not working?

I'm trying to make a dating sims where depending on which menu choice you choose will add points to a character, that will affect the ending. When you pick the same character twice, you will get their ending. But when I play the game, it only goes to the first ending I have writing down. Here's my c...
by Night130
Sun Apr 22, 2018 10:58 am
Forum: Ren'Py Questions and Announcements
Topic: SyntaxError: invalid syntax
Replies: 3
Views: 2035

Re: SyntaxError: invalid syntax

During the last code, the "I met Cinderella..." I have 2 different options of that line, depending on which character you choose to go on a date with. When I did launch project, I chose the Cinderella route (the route where youre suppose to get the line "I met Cinderella...")I wo...
by Night130
Sun Apr 22, 2018 10:16 am
Forum: Ren'Py Questions and Announcements
Topic: SyntaxError: invalid syntax
Replies: 3
Views: 2035

SyntaxError: invalid syntax

I'm not sure what I'm doing wrong. I've looked up different answers and none of them are working. I'm trying to make it so if you go on a date with Cindy, the player will say a different line in the future. Here is the traceback: I'm sorry, but an uncaught exception occurred. While running game code...