Search found 335 matches

by verysunshine
Fri Apr 10, 2020 10:34 pm
Forum: Ren'Py Questions and Announcements
Topic: What's the best way to recalculate GUI element placement?
Replies: 0
Views: 356

What's the best way to recalculate GUI element placement?

I'd like to make my game view smaller so it fits on a web portal. What's the best way to recalculate the size & positioning of GUI elements in terms of speed?
by verysunshine
Tue Apr 07, 2020 3:04 pm
Forum: Ideas
Topic: A Game About Solving A Mystery with a "Girl Game" Website [Early 2000s Nostalgia]
Replies: 2
Views: 2349

Re: A Game About Solving A Mystery with a "Girl Game" Website [Early 2000s Nostalgia]

As someone who vaguely remembers being a girl online in 2005, I'm curious about this project but I cringe a little when I read, Bratz, Barbie and my scene. I usually loathe most 'girly' toy and game marketing and art style >_<; I'm not a tomboy by any stretch. The content just tends to be pandering...
by verysunshine
Tue Apr 07, 2020 1:20 pm
Forum: Asset Creation: Writing
Topic: Making a Child POV Character Feel Like a Child
Replies: 2
Views: 6489

Making a Child POV Character Feel Like a Child

I made a game where the POV character is roughly six years old. The story takes place in their imagination. The art looks good, and the story is fine, but I'm not sure the player character is clearly a child. Without that being obvious, the rest of the writing comes across as cringeworthy. What can ...
by verysunshine
Thu Apr 02, 2020 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: I need to customize my menu, help
Replies: 1
Views: 287

Re: I need to customize my menu, help

Do you mean menu as in the main menu, which comes up when starting the game, or the choice menu, which comes up when "menu:" is used in a script? Fonts should be saved in the game directory, which is the folder containing scripts. For the rest of the information, try the GUI customization ...
by verysunshine
Thu Apr 02, 2020 8:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Need help with making a menu and creating choices. What am I doing wrong?
Replies: 2
Views: 299

Re: Need help with making a menu and creating choices. What am I doing wrong?

I'm guessing your code is indented like this: menu: "Who are you?" jump choice_whoareyou "I don't trust you" jump choice_idonttrustyou "Alright let's go!" jump choice_alrightletsgo label choice_whoareyou: j "Excuse me but, who are you?" label choice_idonttrust...
by verysunshine
Thu Apr 02, 2020 6:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Names in List being Overwritten [Solved]
Replies: 0
Views: 325

Names in List being Overwritten [Solved]

Solution: I missed that I wrote "Location.name = name" instead of "self.name = name", so the names were being overwritten. Formerly "Same Object added to List Each Time". I renamed it to clarify what the issue is. I have some code that takes instances of a class and pu...
by verysunshine
Wed Mar 25, 2020 5:49 pm
Forum: Ren'Py Cookbook
Topic: Replying through dialogue/ Artificial Intelligence based
Replies: 22
Views: 3275

Re: Replying through dialogue/ Artificial Intelligence based

If a string is modified with .lower, all capital letters become lower case. Besides that, this looks like some very useful code.
by verysunshine
Sat Mar 21, 2020 8:40 pm
Forum: Ren'Py Cookbook
Topic: Text Adventure Engine for Ren'Py
Replies: 5
Views: 3508

Re: Text Adventure Engine for Ren'Py

Some of the choices in the code here are strange. Firstly, only using if statements for player movement is weird. You've already made an error by leaving out commands for "e" and "w", but the bigger issue is how the game decides where to go once you have an input. elif command ==...
by verysunshine
Wed Mar 11, 2020 10:07 pm
Forum: Ideas
Topic: Soul Union [Psychological][Fantasy][Optional romance]
Replies: 2
Views: 2674

Re: Soul Union [Fantasy] [optional romance BxG, BxB]

This looks really cool! Good work so far.
by verysunshine
Wed Mar 11, 2020 10:06 pm
Forum: Ideas
Topic: A Game About Solving A Mystery with a "Girl Game" Website [Early 2000s Nostalgia]
Replies: 2
Views: 2349

A Game About Solving A Mystery with a "Girl Game" Website [Early 2000s Nostalgia]

The Setup: The year is 2005. You’re a police officer in the cyber-crimes unit. A young girl has committed a terrible crime. You have to go through her accounts to see what information is in there. Well, the one account she has. It’s for an incredibly popular game for girls, where they interact with...
by verysunshine
Wed Mar 11, 2020 5:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Python Class Attribute Boolean Not Changing from Default [Solved]
Replies: 4
Views: 567

Re: Python Class Attribute Boolean Not Changing from Default [Solved]

Solved! The issue is with the way python handles attribute order. The mail class looks like this: def __init__(self, subject, sender, body, reply_label=False, delay=False, view=True, read=False, chat=False): While add_message looks like this: def add_message(subject, sender, body, reply_label=False,...
by verysunshine
Wed Mar 11, 2020 12:02 am
Forum: Ren'Py Questions and Announcements
Topic: Python Class Attribute Boolean Not Changing from Default [Solved]
Replies: 4
Views: 567

Re: Python Class Attribute Boolean Not Changing From Default

I figured out the issues, though I haven't solved everything yet. Re: Chat variable The variable is never changed from its default value, so everything is sent to the same box. The message counters work properly. I can probably just solve this by reading the Python documentation. Edit: When an attri...
by verysunshine
Sun Mar 08, 2020 5:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Python Class Attribute Boolean Not Changing from Default [Solved]
Replies: 4
Views: 567

Re: Python Class Attribute Boolean Not Sorting Correctly

It seems like something is going wrong with setting or checking i.chat. $ add_message("Chat up line", "Admins", "This should definitely be in chat.", chat=True) The delivery code now looks like this: def deliver(self): if self in mail_queue: mail_queue.remove(self) mail...
by verysunshine
Thu Mar 05, 2020 2:46 pm
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 42089

Re: telegram messenger (2 version)

Hello! So I tried the code and it's working like an absolute dream!! :D I just had a question. Would it be possible to text two different people with two different histories in play? Not a group chat but two separate chat threads? I have the same question. I've already answered that question. Hello...
by verysunshine
Thu Mar 05, 2020 2:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Python Class Attribute Boolean Not Changing from Default [Solved]
Replies: 4
Views: 567

Python Class Attribute Boolean Not Changing from Default [Solved]

I added a new boolean to the class "Mail" in saguaro and xavimet's e-mail code . The boolean "chat" is supposed to sort the messages into two different inboxes upon delivery. Instead, if "chat" is True, it goes to the regular inbox, and if "chat" is False, it ...