• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Ren'Py The Witch [v0.1-Intro] [allion_Ell]

3.50 star(s) 2 Votes

allion_Ell

Member
Game Developer
Sep 8, 2022
178
362
About rollbacks!

I have a lot of python code in my game, and it reacts very poorly to rollbacks, unlike Ren'Py native methods. So I turned them off.
 

allion_Ell

Member
Game Developer
Sep 8, 2022
178
362
I don't think Mr_B even graduated from middle school, so anything beyond that is foreign and scary to him.


Lately? These guys are on high alert. They take a quick glance at the tags, and if their troll radar goes off, it's facepalm time, baby! It's no asking questions first. It's shoot first and moved on to the next kill. They are the Trollin Facepalm Regiment. :LOL: Everyone should only get one Faceplam in 24hr. That way you have to think about what to use it for. The way it is now is like giving an immature and self-centered person the ammunition to create pain without reprisal.

Sorry
allion_Ell
For the negative vibe.

Your game looks very interesting, and I will diffidently give it a go.
I wish you much success.
Thank you for your flattering review.

As for the facepalm, I think it's even cute. They're a great way to dilute the monotony of the fingers. Hee hee.:sneaky::love:
 

joryh

Active Member
Nov 8, 2021
925
1,826
Welp, already a dumb bit for plot. Children aren't responsible for the debt of the parent. Their estate is. Never mind when the parent isn't dead. The only ppl responsible are the debtor, and anyone dumb enough to be a co-signer.
 
  • Like
Reactions: operamini

Fazed

Well-Known Member
Nov 21, 2018
1,688
3,603
Well the main character will eventually turn into a woman. So you can expect him to be a futa for a while.
:unsure:
You didnt really give a definitive answer. at least not for me. I didn't see [futa/trans protagonist] tag in the future tags section.

I think the better question is : is that eventuality certain at this point or will there be an option to continue being futa i.e. woman with dick(balls pussy) vs a sissified male or full female?

Is the answer to this question: "No, the MC will be 100% female as the story progresses and there will be no other option available."?
 
Last edited:

allion_Ell

Member
Game Developer
Sep 8, 2022
178
362
:unsure:
You didnt really give a definitive answer. at least not for me. I didn't see [futa/trans protagonist] tag in the future tags section.

I think the better question is : is that eventuality certain at this point or will there be an option to continue being futa i.e. woman with dick(balls pussy) vs a sissified male or full female?

Is the answer to this question: "No, the MC will be 100% female as the story progresses and there will be no other option available."?
Let's say during the course of the story a spell will be available that can grow the main character's penis. I really don't know if that's what you want.
 

m0us3r

Member
Nov 28, 2020
479
1,410
About rollbacks!

I have a lot of python code in my game, and it reacts very poorly to rollbacks, unlike Ren'Py native methods. So I turned them off.
You can actually deal with it. See for example
 

Cirdon

Well-Known Member
Nov 27, 2019
1,228
1,786
From the OP
(The main character turns from a man into a woman)
Let's say during the course of the story a spell will be available that can grow the main character's penis. I really don't know if that's what you want.
This really needs a [female protagonist] tag added if the OP actually turns into a woman an can stay entirely female, and if that spell leaves them a futa then a [futa/trans protagonist] tag as well. It's odd for all three tags to be about the same character in a game, but if that's what you're writing, that's what should be added.

Edit: I see that's not in the game yet, and those are in the planned tags list, so never mind.
 
  • Like
Reactions: FAEN1134

Fazed

Well-Known Member
Nov 21, 2018
1,688
3,603
Let's say during the course of the story a spell will be available that can grow the main character's penis. I really don't know if that's what you want.
That works I guess. Judging by the previews tho I am not a fan of how the MC looks in a dress right now. Will wait for plot devopment.
 
Last edited:

radical686

Member
Nov 30, 2018
467
1,345
Welp, already a dumb bit for plot. Children aren't responsible for the debt of the parent. Their estate is. Never mind when the parent isn't dead. The only ppl responsible are the debtor, and anyone dumb enough to be a co-signer.
First, the game is set in a fictional world, so this is kind of a silly quibble. Granted you don't like the plot. But, you're complaining about a plot point as if the setting of the game is circa 2020's America. Second, historically, family members have inherited their parents debt, it's just changed in our modern world. So, it's not dumb, just not a plot you'd prefer to engage.

I find it hilarious your objection is something that could and has happened and not the thing that never has been the case: magic.
 
  • Like
Reactions: Saint Blackmoor

m0us3r

Member
Nov 28, 2020
479
1,410
About rollbacks!

I have a lot of python code in my game, and it reacts very poorly to rollbacks, unlike Ren'Py native methods. So I turned them off.
PS. It's possible to store values in dicts rather than in custom objects, e.g. not
Code:
    $ mc_char = MChar({
        "id":1,
        "sex":1,
but
Code:
default mc_char = {
        "id":1,
        "sex":1,
        ...
And then
Code:
        def set_ownobjects(self,objects):
                self.own_objects = objects.copy()
would become something like
Code:
    def set_ownobjects(objects):
        store.mc_char['own_objects'] = objects.copy()
Then save/rollback should probably work.
 
  • Like
Reactions: Saint Blackmoor

oozaru2023

Active Member
Apr 10, 2023
584
837
ONE question to people who use MTools to translate, how do you save the translated file, so you don't have to open mtools again to play it, I translate it but when I close mtools it goes back to its original language, help!
 
3.50 star(s) 2 Votes