Search found 559 matches

by saguaro
Tue Oct 14, 2014 7:14 am
Forum: Completed Games
Topic: Monster+Connect! [adventure, monsters, dating sim]
Replies: 9
Views: 7252

Re: Monster+Connect! [adventure, monsters, dating sim]

A SAGUARO RELEASE I'M HITTING THAT DOWNLOAD BUTTON SO FAST Congrats on the release and I'll share my thoughts after playing! I just can't wait to scream at you BREATHES FIRE I LOVE ALL OF YOUR GAMES... .. . Haha, you're too kind! ::fans flames:: Oh, the post-compo version is out? I didn't think you...
by saguaro
Mon Oct 13, 2014 9:41 am
Forum: Completed Games
Topic: Monster+Connect! [adventure, monsters, dating sim]
Replies: 9
Views: 7252

Monster+Connect! [adventure, monsters, dating sim]

Monster+Connect! is a short dating sim/adventure game made for LD30. After the monster and human dimensions collide, a monster embarks on a journey to find her human soulmate. The post-compo version includes a fully-customized GUI, sprite and background animations, godawful beeping noises, and a few...
by saguaro
Fri Oct 03, 2014 9:03 am
Forum: Ren'Py Questions and Announcements
Topic: Integrating sound with imagebuttons
Replies: 5
Views: 3059

Re: Integrating sound with imagebuttons

You will want to use audio screen actions. http://www.renpy.org/doc/html/screen_actions.html#audio-actions Imagebuttons take actions on hovered. http://www.renpy.org/doc/html/screens.html#imagebutton imagebutton auto "tstart_%s.png" xpos 10 ypos 410 hovered Play("sound", "cl...
by saguaro
Tue Sep 23, 2014 8:38 am
Forum: Creator Discussion
Topic: Favorite and overlooked features of Ren'Py and Python
Replies: 11
Views: 1917

Re: Favorite and overlooked features of Ren'Py and Python

I’d love a good tutorial on CDDs/the sprite manager, if only because I’ve yet to study them in detail, and feel like I’m missing out on a lot of neat tricks. I suspect not many people know about them either, outside of a few specific cookbook recipes. (in truth, I never realized those recipes were ...
by saguaro
Sat Sep 20, 2014 8:29 am
Forum: Creator Discussion
Topic: Favorite and overlooked features of Ren'Py and Python
Replies: 11
Views: 1917

Favorite and overlooked features of Ren'Py and Python

I have a pretty decent grasp of Ren'Py, but I am always stumbling across new things I didn't know about. Going through the changelog, in particular, has been educational, but I have found some cool stuff while cruising the function index of the documentation. I wanted to ask the community: what are ...
by saguaro
Sat Sep 20, 2014 8:05 am
Forum: Ren'Py Questions and Announcements
Topic: How would one host their Ren'Py VN online? [SOLVED]
Replies: 4
Views: 1080

Re: How would one host their Ren'Py VN online?

Try itch.io. There's also gamejolt.com or vnovel.com. All are free.
by saguaro
Mon Sep 08, 2014 9:23 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Skip Mode Text
Replies: 4
Views: 5562

Re: Skip Mode Text

You can disable it by setting the config variable to False. You can modify the "skip_indicator" style if you want to change the text style. To change the text itself I think you'd have to replace that part of renpy/common/00library.rpy under the skip_indicator function. If you are uncomfor...
by saguaro
Sat Aug 30, 2014 10:09 am
Forum: Ren'Py Questions and Announcements
Topic: screen update transitions in 6.18 [solved]
Replies: 3
Views: 613

Re: screen update transitions in 6.18

Thanks PyTom, I appreciate you.
by saguaro
Fri Aug 29, 2014 7:27 am
Forum: Ren'Py Questions and Announcements
Topic: screen update transitions in 6.18 [solved]
Replies: 3
Views: 613

screen update transitions in 6.18 [solved]

per the changelog for the upcoming 6.18 release: Ren'Py has been changed to make a copy of the screens being displayed before a transition occurs. This makes it possible to use a transition to show screen updates. For example, one could increase the value displayed by a bar, and then use the dissolv...
by saguaro
Thu Aug 28, 2014 2:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Any ideas how I can create an internet browser GUI?
Replies: 2
Views: 483

Re: Any ideas how I can create an internet browser GUI?

You can create something that looks like a browser with screen language. You would not want or need actual .html files. If you were inspired by Digital, I'd recommend digging through the source and seeing how Love did it (I assume it is unarchived). She has another game called Don't Take it Personal...
by saguaro
Sun Aug 24, 2014 6:27 pm
Forum: Works in Progress
Topic: The Censor [dystopian/SF]
Replies: 36
Views: 11681

Re: The Censor [dystopian/SF] (Rebooted) [8/3 Demo available

Thank you for playing and the writing crit. I thought it was a good stab at using menus to make up for the lack of more conventional art, and some of them were great - not perfect or anything but I really liked the way the early conversations looked on screen. (Though I wasn't entirely sure whether ...
by saguaro
Sat Aug 23, 2014 6:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Function being executed regardless of click.
Replies: 4
Views: 893

Re: Function being executed when button is being hovered upo

I think it's the Return. Just use

Code: Select all

action actionStudy
by saguaro
Fri Aug 22, 2014 7:08 am
Forum: Ren'Py Questions and Announcements
Topic: How to let Bar adjust python object? [solved]
Replies: 3
Views: 531

Re: How to let Bar adjust python object?

I always find bars a little tricky. This works for me---

Code: Select all

    bar:
        value FieldValue(object=item, field="measure", range=item.size,  max_is_zero=False, style='scrollbar', offset=0, step=0.1)
Apologies if I misunderstood, I wasn't able to replicate the error message you describe