Search found 1118 matches

by m_from_space
Thu Jul 25, 2024 5:13 am
Forum: Ren'Py Questions and Announcements
Topic: None of my games work anymore
Replies: 3
Views: 211

Re: None of my games work anymore

UPDATE: I downloaded the latest renpy version and the first game I tried to launch worked properly (thankfully). However, I am still very disturbed that the old version has had such a drastic change, and I want to know if it's something to do with my computer or Jedit itself. I literally worked on ...
by m_from_space
Wed Jul 24, 2024 4:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Character feedback after name selection?
Replies: 4
Views: 193

Re: Character feedback after name selection?

An example would be naming your character "alex" we'll say. She'd point out that its her name and ask you to change it. If you put in her name again she'd once again tell you to pick a different name, but with different text to the original. Alternatively, if the player chose their own na...
by m_from_space
Sun Jul 21, 2024 3:37 am
Forum: Ren'Py Questions and Announcements
Topic: Random picture show doesn´t work anymore... [solved]
Replies: 3
Views: 246

Re: Random picture show doesn´t work anymore...

"default" runs after "image", because "Script Execution" runs after "init time". Actually, "default" is used when either you start a new game when hitting "Start" or load a game and the variable isn't in the save data. So this is sufficien...
by m_from_space
Fri Jul 19, 2024 10:46 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Type hinting in Python not respected?
Replies: 3
Views: 342

Re: Type hinting in Python not respected?

I wrote some methods in Python with type hinting like the following: def some_random_method(parameter: str): .... Unfortunately when this method gets an integer or list value for the parameter there is no exception raised. I beg it something todo with the compiling or someting?! Python doesn't care...
by m_from_space
Fri Jul 19, 2024 6:54 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Overly large clickable area extending above and below menu buttons for some reason?
Replies: 4
Views: 345

Re: Overly large clickable area extending above and below menu buttons for some reason?

I have no idea what I did and can't recall fiddling let alone changing anything that might have caused this. I only recently noticed, but my buttons are clickable quite a distance out above and below but not the sides for some reason. Seems to only be my core Renpy buttons, i.e. save/load thumbnail...
by m_from_space
Fri Jul 19, 2024 6:50 am
Forum: Ren'Py Questions and Announcements
Topic: i2Loc in Ren'py ?
Replies: 1
Views: 179

Re: i2Loc in Ren'py ?

In Ren'Py, the system is more... Manual. Is there any way of using a similar system with Ren'Py? No, I don't think so. I don't know what you mean by "more manual" but you still have to translate the stuff you want translated (or yeah let an LLM do the job). In general you create a transla...
by m_from_space
Mon Jul 15, 2024 3:54 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ren'Py Issues with Load Order, Defaults, and Pickling
Replies: 6
Views: 719

Re: [SOLVED]Ren'Py Issues with Load Order, Defaults, and Pickling

SamuelGonzales1 wrote: Sat Jul 13, 2024 3:02 am I am facing a problem, can I ask it here?
It's better if you are opening your own thread. But in general you don't have to ask if you can ask something. ^^
by m_from_space
Thu Jul 11, 2024 6:01 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Best way to add a padlock with number combination?
Replies: 6
Views: 615

Re: Best way to add a padlock with number combination?

Is there any way to use an imagebutton to Hide multiple screens without having to list them like this? No. Is there a better way to have the number on the padlock change compared to the repetitive list I made? Here is a solution that I came up with, it's pretty simple and versatile and uses textbut...
by m_from_space
Thu Jul 11, 2024 4:35 am
Forum: Ren'Py Questions and Announcements
Topic: Persistent data keeps reseting (Sync issue?)
Replies: 5
Views: 645

Re: Persistent data keeps reseting (Sync issue?)

I tried every possible combination, like deleting 1 and keeping 2 and 3, deleting 1 and 2 and keeping 3 etc. Nothing worked. Is it possible that the affected games are just programmed in a way that they want to reset persistent data? Maybe you could send me one of the games if possible via PM so I ...
by m_from_space
Wed Jul 10, 2024 5:20 am
Forum: Ren'Py Questions and Announcements
Topic: Help on random items [SOLVED]
Replies: 4
Views: 581

Re: Help on random items

I actually manage to fix the problem and it turns out I just have to re-arrange the positions of the if and elif. So if it gives me 2x Banana, 3x Strawberry, and 5x Orange It will store the said amount in the variables. if wander == 1: "You got [objqty1]x [item1], [objqty2]x [item2], and [objq...
by m_from_space
Tue Jul 09, 2024 6:43 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble-shooting code for word-matching minigame
Replies: 4
Views: 582

Re: Trouble-shooting code for word-matching minigame

And this last chunk is the label where I call the screen- even though the total of correct_answers updates correctly, it does not advance to the next screen. I also am getting a weird thing where correct_answers will have +2 added to it instead of just one... Hello, there are some erros in your cod...
by m_from_space
Sun Jul 07, 2024 5:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange issue with list retention between loads
Replies: 8
Views: 521

Re: Strange issue with list retention between loads

No screens are involved. The maze is simply a menu thus: menu: "Go East": $mazey=mazey+1 "Go West": $mazey=mazey-1 ... etc That's good and usually doesn't require any special handling, since you're using simple one line Python statements to change variables. My guess is that you...
by m_from_space
Sun Jul 07, 2024 4:45 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Ren'Py Issues with Load Order, Defaults, and Pickling
Replies: 6
Views: 719

Re: Ren'Py Issues with Load Order, Defaults, and Pickling

Ok so I will show the code for the 2 ideas I have had and struggled with. When I put the character_list and the get current character stuff directly into after label start: ... You're defining functions within a label of Renpy. That's not how you're supposed to do it. You define functions within in...
by m_from_space
Sun Jul 07, 2024 4:36 am
Forum: Ren'Py Questions and Announcements
Topic: Need help with a directory issue
Replies: 15
Views: 718

Re: Need help with a directory issue

I am suggesting add project path manualy not project. Can you check appdata/roaming/renpy what folders are there? Especialy is there laincher folder? And what is in launcher foolder I can't find appdata or roaming. There is a launcher folder, inside there is this : Screenshot 2024-07-06 16.49.36.pn...
by m_from_space
Sun Jul 07, 2024 4:31 am
Forum: Ren'Py Questions and Announcements
Topic: Strange issue with list retention between loads
Replies: 8
Views: 521

Re: Strange issue with list retention between loads

I can't help feeling that, with the complexity of RenPy behind the scenes, there are some things mysteriously broken that require very specific situations to discover. I suppose that's inevitable in any system as complex as RenPy. At least this one doesn't actually break the game - it's just that i...