Search found 4 matches

by ZeAwesomeHobo
Mon Oct 31, 2022 12:57 pm
Forum: Completed Games
Topic: NONSOLUS demo [Mystery] [Point-and-Click] [Horror]
Replies: 0
Views: 1343

NONSOLUS demo [Mystery] [Point-and-Click] [Horror]

The "demo" of my first real game project is complete. It's about 2 or 3 hours long, and covers the first two in-game days of the story, which is about one 5th of what I have planned for a full title (assuming this goes well.) You can find it here! - https://teamhomebound.itch.io/nonsolus &...
by ZeAwesomeHobo
Wed Aug 04, 2021 5:16 pm
Forum: Ren'Py Cookbook
Topic: Inventory Screen
Replies: 100
Views: 102547

Re: Inventory Screen

EDIT: I realized there were quite a few more comments in this thread, and after looking through them I figured out the issue. Both values needed to be changed. I'm having trouble moving the top left item x position. Y works just find, but regardless of what number I plug in for "x," the it...
by ZeAwesomeHobo
Mon Jul 19, 2021 11:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Using player input as points?
Replies: 2
Views: 782

Re: Using player input as points?

Thank you so much! I had to do some quick research into integers but it works! python: pheight = renpy.input("How tall are you in centimetres?", exclude='{QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm}', length=3) pheight = pheight.strip() or __("80") pheight = int(pheight...
by ZeAwesomeHobo
Mon Jul 19, 2021 10:08 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Using player input as points?
Replies: 2
Views: 782

[SOLVED] Using player input as points?

I'm trying to save player input as persistent data that can later be used in an if clause. Reading through a ton of threads, I found out how to save the player input-- q "How tall are you in centimetres?" python: pheight = renpy.input("How tall are you in centimetres?", exclude='...