Search found 16 matches

by jaydalyn
Fri Jul 31, 2020 10:23 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble subtracting variables
Replies: 2
Views: 306

Re: Trouble subtracting variables

Your solution works perfectly thank you.
by jaydalyn
Thu Jul 30, 2020 2:24 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble subtracting variables
Replies: 2
Views: 306

Trouble subtracting variables

I have this: $ rand_maya_hit = ([('5',0.25),('7',0.60),('9',0.15)]) $ mom_hp - rand_maya_hit which should randomly subtract one of three numbers from 'mom_hp', but i get this: TypeError: unsupported operand type(s) for -: 'unicode' and 'unicode' If I try '-=' rather than '-' it's the same, but if i ...
by jaydalyn
Sat Jul 11, 2020 2:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Jump to multiple possible labels because of the same choice?
Replies: 5
Views: 525

Re: Jump to multiple possible labels because of the same choice?

I believe it would be something like:

Code: Select all

if thing == True:
	jump label_for_true
else:
	jump label_for_false
It would go right after you make the choice or wherever you want the choice to split.
by jaydalyn
Sat Jul 11, 2020 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: adding screens to vbox
Replies: 2
Views: 331

Re: adding screens to vbox

This makes sense, thank you so much. It helps a lot to think of them as containers, and you can't fit a bigger container into a smaller one.
It could be that I'm just not good at gripping the documentation, but this has given me a new understanding of screens, thank you again!
by jaydalyn
Fri Jul 10, 2020 9:37 pm
Forum: Ren'Py Questions and Announcements
Topic: adding screens to vbox
Replies: 2
Views: 331

adding screens to vbox

I'm trying to use vboxes, but they're only useful if I can add screens to them. When I try to add a screen it tells me 'screen' is not a valid child, and when I search for a list of vbox children I can't find one. Is there any way to add screens to a vbox or grid? If not, is there a way to anchor a ...
by jaydalyn
Sat Dec 14, 2019 3:29 pm
Forum: Completed Games
Topic: How hard can it be to write a novel?[short][Free]
Replies: 2
Views: 1259

Re: How hard can it be to write a novel?[short][Free]

I'm not very good at thinking outside of the box, so I take most things very literally ^^;
The jam was a lot of fun and if they do it again next year I'll definitely join.
Thank you for playing my game!
by jaydalyn
Tue Nov 26, 2019 5:59 pm
Forum: Completed Games
Topic: How hard can it be to write a novel?[short][Free]
Replies: 2
Views: 1259

How hard can it be to write a novel?[short][Free]

A short Simulation type game I made for NaNoTwiMo.
The game isn't technically complete ,but it's playable.

You can download it here:
https://itch.io/jam/nanotwimo-make-a-tw ... ate/523764
by jaydalyn
Fri Nov 22, 2019 4:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Using 'And'
Replies: 2
Views: 426

Re: Using 'And'

That works, thank you! I don't know why I thought I needed the 'if'.
by jaydalyn
Fri Nov 22, 2019 2:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Using 'And'
Replies: 2
Views: 426

Using 'And'

Please help, I've been fighting with this for two hours now, at this point I'm just randomly changing indentation and hopping it will work. Right now it's giving me this: I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/script...
by jaydalyn
Sat Jun 29, 2019 10:45 am
Forum: Completed Games
Topic: Fetch Quest [GxB] [Romance] [Comedy] [Free] [NaNo2019]
Replies: 16
Views: 5739

Re: Fetch Quest [GxB] [Romance] [Comedy] [Free] [NaNo2019]

I must have see it on itch when I was browsing for games and just forgot. I think I wanted to try it but didn't have the space on my notebook... like now. It looks really fun though, as soon as I can get a proper computer I'm going to play it.
by jaydalyn
Fri Jun 28, 2019 5:05 pm
Forum: Completed Games
Topic: Fetch Quest [GxB] [Romance] [Comedy] [Free] [NaNo2019]
Replies: 16
Views: 5739

Re: Fetch Quest [GxB] [Romance] [Comedy] [Free] [NaNo2019]

I feel like I've seen this before, did you upload it somewhere else?
by jaydalyn
Thu Jun 27, 2019 3:21 pm
Forum: Completed Games
Topic: A Simple Date [Short]
Replies: 0
Views: 832

A Simple Date [Short]

My second ever game on itch. You play as yourself and your goal is to flatter one of three girls to get them to go on a midnight date with you. The game is very short and made to practice buttons and dialogue trees. Download files for pc and mac. You can get it here: https://jaydalyn.itch.io/a-simpl...
by jaydalyn
Wed Jun 26, 2019 12:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Stop next scene from displaying?
Replies: 2
Views: 487

Re: Stop next scene from displaying?

The hard pause works just the way I wanted, thank you!
by jaydalyn
Wed Jun 26, 2019 11:16 am
Forum: Ren'Py Questions and Announcements
Topic: Stop next scene from displaying?
Replies: 2
Views: 487

Stop next scene from displaying?

I'm making a button heavy game to practice the skill for a bigger game I want to make, before I knew how to make a button I wrote everything out and used menu choices as place holders. Now I've figured out how to show and place the buttons, but when I delete the menu it skips my buttons and goes str...
by jaydalyn
Mon Jun 24, 2019 11:07 am
Forum: Ren'Py Questions and Announcements
Topic: Can't call image button
Replies: 2
Views: 611

Re: Can't call image button

It works, thank you so much! I wasn't sure what the best way to show the button was, I'm using 'call screen' now, thank you!