Search found 27 matches

by zomgenius
Mon Jul 05, 2021 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Browser version not loading fully / not playing?
Replies: 0
Views: 1817

Browser version not loading fully / not playing?

I'm trying to upload a demo of my game to itch.io so that a friend can check out the story for me. However, I keep getting this screen - it says that it extracted the game, then just says, "Bye!" ... And nothing plays. https://i.imgur.com/8dcB1Ld.png Here's how I built the distro. In Ren'P...
by zomgenius
Sun May 26, 2019 4:25 pm
Forum: Works in Progress
Topic: Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]
Replies: 4
Views: 1088

Re: Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]

Image
Image

Image
Screenshots coming in mid-June, once the beta demo is ready with the new UI! I'll edit this post next month to show them!
by zomgenius
Sun May 26, 2019 4:25 pm
Forum: Works in Progress
Topic: Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]
Replies: 4
Views: 1088

Re: Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]

https://i.imgur.com/xRkVF9I.png https://i.imgur.com/zaAnImw.png https://i.imgur.com/T0h5B2b.png https://i.imgur.com/f82Aeii.png https://i.imgur.com/S7ahkPp.png https://i.imgur.com/pPON7C1.png https://i.imgur.com/DE31LhZ.png https://i.imgur.com/639JODf.png Additional character profiles to be added a...
by zomgenius
Sun May 26, 2019 4:24 pm
Forum: Works in Progress
Topic: Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]
Replies: 4
Views: 1088

Paper Stars [ LGBT+ ] [ Idols, Romance, Slice-of-Life ] [ Dating Sim / VN ]

https://i.imgur.com/igluOLg.png Are you a fan of idols, making wishes, and finding love? So am I - and that's how Paper Stars was born. http://paperstarsvn.tumblr.com Every time you fold a paper star, you make a wish. When you have an entire jar full of them - one thousand stars - your final wish w...
by zomgenius
Tue Apr 16, 2019 9:31 am
Forum: I am an Artist
Topic: Background and Character Artist for Projects and Personal Commissions
Replies: 3
Views: 1818

Re: Background and Character Artist for Projects and Personal Commissions

I sent you an email!! Hoping to hear back from you soon - your backgrounds are lovely. :D
by zomgenius
Sun Apr 14, 2019 12:03 pm
Forum: I am an Artist
Topic: kathaeris's designs (UI, logo, promotional)
Replies: 21
Views: 15515

Re: kathaeris's designs: UI and logo

I've been working with Kathaeris on the UI for Paper Stars (pictured in post above), and it's been a wonderful experience! Kathaeris is lovely to work with, has been very thorough and kind with making revisions, and has always been super quick to respond. I highly recommend working with them!
by zomgenius
Fri Dec 07, 2018 12:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Error with 'if' / 'elif' statements (assigning pronouns)
Replies: 4
Views: 560

Re: Error with 'if' / 'elif' statements (assigning pronouns)

Thank you all for your help! I was able to get it to work. I had to remove the apostrophe from the variable, and then escape what the replacement would be. Still, I'm going to look into the link trooper provided - there's probably a better way to do this, which makes it a little more clean. Thanks a...
by zomgenius
Thu Dec 06, 2018 7:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Error with 'if' / 'elif' statements (assigning pronouns)
Replies: 4
Views: 560

Error with 'if' / 'elif' statements (assigning pronouns)

Hello, folks! I'm creating a game in which the player can select from masculine, feminine, or neutral pronouns. I've tried to come up with an 'if' statement, based off the player's selection in a menu. My goal is to be able to write the story by using pronouns as variables, such as "[They] walk...
by zomgenius
Fri Aug 29, 2014 8:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing image as date in UI
Replies: 4
Views: 683

Re: Showing image as date in UI

Perfect!! Thank you so much for your help, I really appreciate it! :D
by zomgenius
Fri Aug 29, 2014 8:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing image as date in UI
Replies: 4
Views: 683

Re: Showing image as date in UI

Oh!! I see! So I can make the portion in the screen refer to a specific variable, and then set that each time I need a different one! That'd be perfect. Thank you so much! And then, just to make sure - the current image won't disappear when changing scenes unless I use hide screen date afterward, ri...
by zomgenius
Fri Aug 29, 2014 7:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing image as date in UI
Replies: 4
Views: 683

Showing image as date in UI

Hi there! I'm working on making a short dating sim for my friend as a gift, with several routes, etc. It's coming along well, but there is one thing I can't figure out - how to show the date in the top right-hand corner. I didn't want to just use text for it, since I've made special images for each ...
by zomgenius
Thu Apr 19, 2012 1:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Point-based games and deciding tiebreakers
Replies: 29
Views: 5012

Re: Point-based games and deciding tiebreakers

Oh. Wow. I feel kind of dumb for not realizing that. D: Yeah, you're right; it'd just be the same thing twice, wouldn't it? if len(highest_points_categories) > 1: $ menuitems = zip(highest_points_categories, highest_points_categories) $ result = renpy.display_menu(menuitems) So that way, it'll show ...
by zomgenius
Wed Apr 18, 2012 9:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Point-based games and deciding tiebreakers
Replies: 29
Views: 5012

Re: Point-based games and deciding tiebreakers

Oh! The highest_points_categories list! So then, instead of the values, we would input the list name! if len(highest_points_categories) > 1: $ menuitems = zip(['hunger', 'drink', 'social'], [highest_points_categories]) $ result = renpy.display_menu(menuitems) This way, it displays the text for the i...
by zomgenius
Wed Apr 18, 2012 8:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Point-based games and deciding tiebreakers
Replies: 29
Views: 5012

Re: Point-based games and deciding tiebreakers

Ah, okay! That helps clear some stuff up. if len(highest_points_categories) > 1: $ menuitems = zip(['hunger', 'drink', 'social'], ['hunger', 'drink', 'social']) $ result = renpy.display_menu(menuitems) I am going to cross my fingers and hope I got it this time! I feel like things suddenly got a lot ...
by zomgenius
Wed Apr 18, 2012 5:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Point-based games and deciding tiebreakers
Replies: 29
Views: 5012

Re: Point-based games and deciding tiebreakers

Ah, whoops. xD;; I see what I did wrong there, okay. Let's try this again! Based off what you said, I think we need to zip the two sections together - the pattern expected by the function, and the list of text strings. So in order to get the zip to call forth the right lists, we need to have the lis...