Search found 132 matches

by Exiscoming
Sun Jan 21, 2024 10:35 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy games not booting up
Replies: 6
Views: 28051

Re: Renpy games not booting up

Hi again, I asked and this is the only thing it says: That's what it says when Renpy is actually NOT starting? (Because Renpy overwrites this file every time you start it again, so if it's working right now, since the person deleted the persistent file, it's not informative). Sorry for the slow rep...
by Exiscoming
Fri Jan 12, 2024 6:42 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy games not booting up
Replies: 6
Views: 28051

Re: Renpy games not booting up

There is no error message. Please ask those people to post the contents of the log.txt file that you find inside the game's folder. It contains information on Renpy starting up. Hi again, I asked and this is the only thing it says: Tue Dec 26 01:14:47 2023 Windows-10-10.0.19041 Ren'Py 7.5.0.2206240...
by Exiscoming
Thu Jan 11, 2024 4:02 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy games not booting up
Replies: 6
Views: 28051

Re: Renpy games not booting up

I've had this issue for years now. A player plays the game, closes it and comes back the next day only for the .exe to not boot up the game anymore. I made a thread about it back in 2021 and eventually did find a solution, but it requires players to go into their appdata. Since you're not including...
by Exiscoming
Mon Dec 25, 2023 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy games not booting up
Replies: 6
Views: 28051

Renpy games not booting up

I've had this issue for years now. A player plays the game, closes it and comes back the next day only for the .exe to not boot up the game anymore. I made a thread about it back in 2021 and eventually did find a solution, but it requires players to go into their appdata. Here's that thread: https:/...
by Exiscoming
Mon Jul 17, 2023 1:29 pm
Forum: Ren'Py Questions and Announcements
Topic: displaying tooltips in inventory
Replies: 2
Views: 271

Re: displaying tooltips in inventory

So I'm just wondering if this will be of help. I use tooltips in my code like this. if giftStickers >= 1: vbox xalign 0.39 yalign 0.3: imagebutton: idle "gui/items/stickers.png" hover "gui/items/stickers-hover.png" tooltip "stickersTooltip" action Show("inventory&q...
by Exiscoming
Tue Sep 13, 2022 9:09 am
Forum: Ren'Py Questions and Announcements
Topic: Drag & Drop Question #1: Activating and Deactivating
Replies: 0
Views: 544

Drag & Drop Question #1: Activating and Deactivating

I'm experimenting with the Drag & Drop feature, but there's been a bunch of things I haven't been able to figure out. I'll probably make a few threads about this, but now for my first question: How to activate and de-activate object? I want a player to be able to place berries into a bowl. 1. Cr...
by Exiscoming
Sat Jul 16, 2022 9:01 am
Forum: Ren'Py Questions and Announcements
Topic: Deleting persistent data before compiling?
Replies: 3
Views: 352

Re: Deleting persistent data before compiling?

Thanks for your replies guys. Okay, that's great to know.
by Exiscoming
Fri Jul 15, 2022 12:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Deleting persistent data before compiling?
Replies: 3
Views: 352

Deleting persistent data before compiling?

When compiling a new version of my game, should I click the "Clear Persistent" button first? I'm using a gallery that uses $ persistent.photo1 = True type of code. If I do not clear my persistent data, will it then get put into the compile? In other words, will my players have all of the p...
by Exiscoming
Tue Aug 24, 2021 7:23 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic font select (language translation)
Replies: 7
Views: 1182

Re: Dynamic font select (language translation)

Oh I'm glad I checked back here! Thank you for the updated code. It works flawlessly. I'll be using this in my game. Thank you for taking the time to help me out. Both of you.
by Exiscoming
Sun Aug 22, 2021 5:37 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic font select (language translation)
Replies: 7
Views: 1182

Re: Dynamic font select (language translation)

All right, I think this is above my level of coding expertise. Thanks for the suggestions guys, but I think I might re-work this part of the game to make it less complex.
by Exiscoming
Fri Aug 20, 2021 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Dynamic font select (language translation)
Replies: 7
Views: 1182

Re: Dynamic font select (language translation)

Thank you! I'm going to try this out first thing in the morning! :D
by Exiscoming
Fri Aug 20, 2021 10:39 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic font select (language translation)
Replies: 7
Views: 1182

Re: Dynamic font select (language translation)

Hey there, thanks for the suggestion! So the problem with changing the font would be that the player cannot read what is being said. The idea is that the player can learn words while playing the game, so when reading something, it would be default hello = "*****" label some_label: $ hello ...
by Exiscoming
Thu Aug 19, 2021 4:39 am
Forum: Ren'Py Questions and Announcements
Topic: Dynamic font select (language translation)
Replies: 7
Views: 1182

Dynamic font select (language translation)

For my next game, I've been hoping to implement a language that you can learn while playing the game. Right now, this is how I do it. For the foreign language, I use a new font called Glagolitsa. Which looks like this: https://i.imgur.com/N1mcNeJ.jpeg I define a bunch of variables with the words the...
by Exiscoming
Wed May 05, 2021 8:52 am
Forum: Ren'Py Questions and Announcements
Topic: Pause voice acting? {w} in text
Replies: 0
Views: 1793

Pause voice acting? {w} in text

So I know that you can pause text by doing this:

Code: Select all

Hello my name is{w} Bob.
However, if I decide to add voice acting to the above line. Then how would I make sure it pauses during the {w}?
by Exiscoming
Fri Apr 16, 2021 11:02 am
Forum: Ren'Py Questions and Announcements
Topic: Game crashing and .exe not booting up anymore [SOLVED]
Replies: 1
Views: 523

Game crashing and .exe not booting up anymore [SOLVED]

Solution edit: The problem lies within the save files. So far this has had a 90% resolve rate for me. 1. Go into your %appdata% 2. Locate Renpy > <game name> > persistent file 3. Delete the persistent file. The game should boot up again now. ------- OLD POST ------- This is a problem that has been ...