Search found 8 matches

by NewMaxD
Fri Mar 06, 2020 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Struggling a lot saving objects and variables.. (Yes, another one..)
Replies: 8
Views: 673

Re: Struggling a lot saving objects and variables.. (Yes, another one..)

I'm not familiar with python classes, but I used something similar in my own game (with droppable RPG items) & used Ren'py's new screen action Call() but within a loop. So maybe you can use action Call() in screens to call a label? Not sure how helpful it would be (it seems to save/load ok) but the...
by NewMaxD
Thu Mar 05, 2020 1:30 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Struggling a lot saving objects and variables.. (Yes, another one..)
Replies: 8
Views: 673

Re: Struggling a lot saving objects and variables.. (Yes, another one..)

I've made some progress trying to identify the problem and apparently found it. No solution for now sadly (I cannot even tell why, I mean, lots of games, all made in renpy, do similar stuff, even way way more advance things..). So the actual problem is simply that any action that comes from my scree...
by NewMaxD
Wed Mar 04, 2020 2:33 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Struggling a lot saving objects and variables.. (Yes, another one..)
Replies: 8
Views: 673

Re: Struggling a lot saving objects and variables.. (Yes, another one..)

https://www.renpy.org/doc/html/save_load_rollback.html#where-ren-py-saves https://www.renpy.org/doc/html/save_load_rollback.html#retaining-data-after-load Basically, the system is working as intended. There are ways of working around it, but hard to say in the abstract, so it's probably up to you t...
by NewMaxD
Tue Mar 03, 2020 11:19 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Struggling a lot saving objects and variables.. (Yes, another one..)
Replies: 8
Views: 673

Re: Struggling a lot saving objects and variables.. (Yes, another one..)

Adding a renpy.restart_interaction() to your function might solve the issue. https://www.renpy.org/doc/html/other.html#renpy.restart_interaction I've just tried it. But still the same, no change. I added it before ending both functions in charge of Upgrading and Building (the ones modifying the obj...
by NewMaxD
Tue Mar 03, 2020 10:14 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Struggling a lot saving objects and variables.. (Yes, another one..)
Replies: 8
Views: 673

[Solved] Struggling a lot saving objects and variables.. (Yes, another one..)

So I'm not used to ask on forums, cause I normally end up finding answers to whatever I want to know, but days ago I started experiencing some problems related to saving data. Didn't really care about it until today. Today I wanted to fix it, and after spend some time without result I started googli...
by NewMaxD
Mon Feb 26, 2018 6:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Need some help with the Shake Effect
Replies: 4
Views: 1323

Re: Need some help with the Shake Effect

Never defined custom transitions myself, but the page of the doc is the one you have found: https://renpy.org/doc/html/transitions.html#transition-classes Transition classes are functions that can be called to create new transitions If you have a specific question of how do you need your custom tra...
by NewMaxD
Mon Feb 26, 2018 6:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Need some help with the Shake Effect
Replies: 4
Views: 1323

Re: Need some help with the Shake Effect

simple: with vpunch Example: label earthquake: "Hi!" with vpunch "Hey! That was sudden!" with hpunch "What's going on???" return Figured it out, minutes after posting this lol "Hm, could I use a with just after some text.. Oh wait a sec it works lol" Thx man, just wondering, do you know how to defi...
by NewMaxD
Mon Feb 26, 2018 3:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Need some help with the Shake Effect
Replies: 4
Views: 1323

Need some help with the Shake Effect

Hey people, how's going (?) I'm almost totally new to Ren'Py (know some stuff about programming btw, but I'm new to Ren'Py, and not well familiarized with Python). I'm making some kind of prototype short game, and I just got confused when trying to make a shake screen effect :/ So my [ultra-hard-to-...