Search found 27 matches

by uncoded
Tue May 04, 2021 3:47 am
Forum: Ren'Py Questions and Announcements
Topic: Presplash, was the code improved since 2012?
Replies: 2
Views: 732

Re: Presplash, was the code improved since 2012?

Can't answer you directly, but if your presplash only displays for a few seconds, a lack of progress bar won't matter too much : if the wait is not enough for the player to notice he's waiting, telling him just that by displaying a progress bar can be considered counter productive. I mean, the vast ...
by uncoded
Fri Apr 23, 2021 10:09 am
Forum: Ren'Py Questions and Announcements
Topic: Repeated infinite loop in an innocent image declaration line
Replies: 7
Views: 533

Re: Repeated infinite loop in an innocent image declaration line

.pyc (and I suppose .rpyc ) files are just compiled code that your computer executes. The initial state of your game is store in save files, but those are not executable code. If you cleaned up everything properly, your save files should work properly with your new (cleaned up) code. Of course, YMM...
by uncoded
Fri Apr 23, 2021 10:04 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] preventing screens from being clicked after 1st time
Replies: 3
Views: 988

Re: preventing screens from being clicked after 1st time

I'm not sure what you are trying to achieve (idk Rick and Morty, I just looked at this video a few seconds). Aren't you just describing a visual novel, aka Ren'Py's core feature ? If not (sorry), can you provide a demo, and describe what you expect ? (maybe it is in this video, but I didn't see it, ...
by uncoded
Fri Apr 23, 2021 9:47 am
Forum: Ren'Py Questions and Announcements
Topic: Hours progresssing days help
Replies: 4
Views: 812

Re: Hours progresssing days help

Are you using gregorian calendar, or a custom (fantasy) calendar ? Even if you use a fantasy calendar, as long as your calendar works like ours (365.25 day, 30/31 days per month, yadda yadda), you can just increase your "day of year" counter, and use use Python's datetime module to make th...
by uncoded
Fri Apr 23, 2021 9:29 am
Forum: Ren'Py Questions and Announcements
Topic: Does Ren'py have a GUI to design Frames/Windows easier?
Replies: 18
Views: 3133

Re: Does Ren'py have a GUI to design Frames/Windows easier?

Ren'Py is free software. It means that if the feature you want is so simple, you're free to contribute, add this oh-so-basic-it's-2021-y'know feature and help everyone a fraction as much as you are currently helped. If you are serious about your need, there are less contemptous ways to express it. F...
by uncoded
Sat Apr 17, 2021 7:20 am
Forum: Creator Discussion
Topic: Is it wrong to use public domain pictures in NSFW scenes?
Replies: 7
Views: 5046

Re: Is it wrong to use public domain pictures in NSFW scenes?

It might be a hassle, but if you really worry about the original authors opinion, you can always have a talk with them, or even send them a (probably censored) preview of how you'll use their work in your game. In most cases it's possible to find their contact info.
by uncoded
Thu Apr 15, 2021 3:43 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Textbox animations, but specifically when a character changes
Replies: 6
Views: 1071

Re: Textbox animations, but specifically when a character changes

I have to write two lines of code just for this to work. It's not the worst thing in the world, and I'd rather have it than nothing. But if possible, one line would be beautiful ... python: def your_beautiful_one_liner(layer='say_screen'): renpy.show_layer_at(at_list=[retract], layer) renpy.show_la...
by uncoded
Wed Apr 14, 2021 3:08 am
Forum: Ren'Py Questions and Announcements
Topic: Scripted Chess Minigame
Replies: 5
Views: 678

Re: Scripted Chess Minigame

I was thinking about using an imagemap!! I just wasn't sure if that was what the best option would be. An alternative to imagemaps in your case is imagebuttons. You can check this tutorial out (but download it from this post ), compare it to imagemaps, and judge which solution is most suited to you...
by uncoded
Tue Apr 13, 2021 3:11 am
Forum: Ren'Py Questions and Announcements
Topic: Error in writing package name (SOLVED)
Replies: 3
Views: 712

Re: Error in writing package name

Did you solve your issue? If not, you should show us your files, at least game/interface.rpy . It seems your trying to pass a boolean variable as a string (your variable is a string, renpy expects a string), but I can't say more than that. Maybe try to write str(yourvariable) line 422 of game/interf...
by uncoded
Tue Apr 13, 2021 3:07 am
Forum: Ren'Py Questions and Announcements
Topic: SOLVED - Showing a variable in dialogue
Replies: 1
Views: 582

Re: SOLVED - Showing a variable in dialogue

Not sure if it's solved or not, but just in case : here is the documentation you need.
Provided character_chosen is your string variable:

Code: Select all

"So you and [character_chosen] actually pulled it off."
by uncoded
Tue Apr 13, 2021 3:03 am
Forum: Ren'Py Questions and Announcements
Topic: Detect if running on RenpyWeb
Replies: 3
Views: 668

Re: Detect if running on RenpyWeb

as simple as that 😅
thanks!
by uncoded
Tue Apr 13, 2021 3:00 am
Forum: Ren'Py Questions and Announcements
Topic: Scripted Chess Minigame
Replies: 5
Views: 678

Re: Scripted Chess Minigame

I'm not sure what you intend to achieve, but if you'd like to discuss different moves based on an initial chess situation, you could maybe use an imagemap . Use an image of your whole chess board, and put hotspots on the squares/pieces you have something interesting to say : the player hovers/click ...
by uncoded
Mon Apr 12, 2021 3:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED ]How to translate a save game date correctly?
Replies: 4
Views: 690

Re: How to translate a save game date correctly?

Isn't the syntax as follows? old "[weekday!t]Monday" new "[weekday!t]Понедельник" As I understand the documentation , it seems the syntax you are using is meant to differentiate between labels that seems the same but for which translation can vary depending on the context they ar...
by uncoded
Sat Apr 10, 2021 12:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Dynamic Character skin color change
Replies: 3
Views: 697

Re: Dynamic Character skin color change

That's ... exactly what I needed ! :shock:
Plus, your solution (is that it?) seems to give me the ability to implement in the future many different animations I could control directly. :idea:

Many, many thanks @Ocelot ! I owe you one ! 🎩
by uncoded
Sat Apr 10, 2021 10:10 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Dynamic Character skin color change
Replies: 3
Views: 697

Re: Dynamic Character skin color change

Okay, I at least understood the root of one of my two problems : Character mc has a placeholder instead of an image because Ren'Py doesn't enforce any strict coupling between characters and images. The characters talk, the images are displayed, not the other way around. You can display any combinati...