SeveredRealms

Well-Known Member
Game Developer
Apr 10, 2020
1,532
5,972
You probably want to take a look at this again, it gave some errors when I tried to apply it.
The patch is because I tried to clarify the relations so people could figure it out easier and it probably broke his patch. I might take a look myself at some point. I am also going to try to fix the font issue error to switch it to the font I use for the game itself as well as a few final small typo corrections spellcheck missed since they both can be correct its a syntax issue so it misses it lmao.
Call it sleep deprived or we can blame it on that. I have had multiple people including my wife and daughter tell me to take a break for a few days but I want this right before I start on the next scenes. I will try and work through these issues today then upload a full corrected version and have the mods update links later today.

Oh and a unrelated thing for everyone else. My daughter made a very clear observation. If she was to start making clothes. She would have to buy materials, spend hours making the item. her friend likes it and wants it but it would cost my daughter money and time to make herself another one. though she is conflicted her friend understands and offers her compensation for her time and materials so she can make another one.
This is also very true to developers making these games. We may not ask though some actually outright do ask and I find that wrong myself but they do. Some of us spend hours and hours sitting at their pc's. they have to spend money almost all the time to get the pieces (assets) to make the images everyone enjoys. they in many cases spend even more money on programs to assist in editing the images. They also have to spend sometimes thousands of dollars on upgrades and such for their computers. I myself am 80% disabled after being hurt doing a job I had done for over 30 years. Instead of sitting here staring out a window due to mobility issues, I sit in front of my pc doing something I like. Playing and creating these games. Even then I still have to take breaks due to carpel tunnel in both hands from 30 years of using air tools and repetitive motion while working on cars. I can get by without people supporting me for normal life issues and even most pc and assets issues barring any drastic things like a meltdown then I would be fucked and so would my games in turn I would not be able to create or finish them.
So every bit does help but I have never asked nor will I for people to give me anything and I will continue to the best of my ability both physically and financially to provide for free the content for you to enjoy. i know some devs out there are in this just for the money. I am not and I think I can speak for all devs when I say thank you or your support as it shows you enjoy what we do and it helps us all to purchase better assets better pc hardware and better programming where needed.
So know this I will always do what can to bring you this content and I expect nothing in return except maybe a thank you and a smile now and then.
 

RIC0H

Well-Endowed Member
Modder
Donor
Compressor
Game Developer
Aug 8, 2020
1,923
11,090
Weird, it threw an error for me and I had to copy your code into scripts.rpy. Ima gonna try it again.
Well if you get an error again, please post the error here and @ me.
 

Hellkinglucifer

Active Member
Apr 29, 2020
794
1,890
Hey all I wanted to give you a heads up about something that will be happening in future content. I just had a go round in another thread for a different game on the subject of rape. this person then pm's saying crap then being a dick says I must like women being raped. My warning is there is rape in the back story one of some of the girls and near rape.... I WILL NOT CHANGE MY STORY TO APPEASE ANYONE. Its been warned in the more info and also on the splash screen when you load the game.

This is part of their story(s). If anyone has a problem with it I'm sorry but I will not change my game to appease weak minded people that think because this has happened to a girl they are tainted, worthless and not worth being there for or helping them. This is what the person in the pm's to me pretty much said and I have had events happen to people close to me IRL that made me want to reach through my screen and smash his head into his own screen when he said some of that crap.
My own wife before I met her went through emotional, mental and physical abuse by a prick.... and is part of the inspiration behind me writing my story. No she wasnt raped at least not that she has admitted to but I would not have put it past that basterd. Anyway once again you have been warned...Below is from the OP and in the actual game.
"WARNING THIS STORY CONTAINS ELEMENTS SOME MIGHT FIND CONTROVERSIAL
(Abuse, degradation of women in my story.) There will never be scenes or things like rape as I personally can't and I won't make them period but there may be instances of it being implied in a backstory somewhere. " (For those that do not understand this means there will not ever be a render of it in this or any game I make.)
I avoid games who have mental/physical abuse on a LI or just someone you care for in the game like the plague but i am going to try your game because you are someone who has personal experiences with it(unfortunately) so not like some dev who use it merely as plot device aka 'he bad guy he rapes hate him the end'. The thought of it happening to someone i know even just casually terrifies me.

P.s i would really really love to meet that prick in a dark alley :mad:
 

estrada777

Engaged Member
Modder
Donor
Mar 22, 2020
3,591
8,890
I just tried it with the new update and it seems to work fine.
Mine gets pissed about defining the variables a second time:

File "game/script.rpy", line 43, in set_default
default gpts = 0
Exception: store.gpts is being given a default a second time.
 

RIC0H

Well-Endowed Member
Modder
Donor
Compressor
Game Developer
Aug 8, 2020
1,923
11,090
Mine gets pissed about defining the variables a second time:

File "game/script.rpy", line 43, in set_default
default gpts = 0
Exception: store.gpts is being given a default a second time.
Should clear itself if you restart the game.

I can't really fix it as the dev put the defaults within the start label:

Code:
label start:
    default gpts = 0
    default epts = 0
    default lpts = 0
    default npts = 0
    default cpts = 0
    define groute = False
    define eroute = False
    define lroute = False
    define croute = False
    define zroute = False
    define nporn = False
    define zsecret = False
As my patch overrides the start label, I have to include them again.

If it was like this, then there's be no issue:

Code:
    default gpts = 0
    default epts = 0
    default lpts = 0
    default npts = 0
    default cpts = 0
    define groute = False
    define eroute = False
    define lroute = False
    define croute = False
    define zroute = False
    define nporn = False
    define zsecret = False
label start:
 

estrada777

Engaged Member
Modder
Donor
Mar 22, 2020
3,591
8,890
Should clear itself if you restart the game.

I can't really fix it as the dev put the defaults within the start label:

label start:
default gpts = 0
default epts = 0
default lpts = 0
default npts = 0
default cpts = 0
define groute = False
define eroute = False
define lroute = False
define croute = False
define zroute = False
define nporn = False
define zsecret = False

As my patch overrides the start label, I have to include them again.

If it was like this, then there's be no issue:

default gpts = 0
default epts = 0
default lpts = 0
default npts = 0
default cpts = 0
define groute = False
define eroute = False
define lroute = False
define croute = False
define zroute = False
define nporn = False
define zsecret = False
label start:
I commented out one of them and it's good now.
 

SeveredRealms

Well-Known Member
Game Developer
Apr 10, 2020
1,532
5,972
I forgot to remove those for now. I did it with my other game but when I went through everything for this one this morning I forgot about those. they will be gone in the next full update. I have just uploaded and linked the google downloads to a full "Pre-patched version" with all relations preset. font issue corrected and every typo I could find fixed for now at least. I will be keeping a separate script for this sites version of the game so a patch should not be require here in the future.
1632325679362.png
 

Tlord24

Newbie
Dec 6, 2018
35
21
New Android port. Nothing too fancy but let me know if you have any issues.

Version: 0.0.6 w/RIC0H's I-Patch + Hotfix

You don't have permission to view the spoiler content. Log in or register now.

This unofficial port/version is not released by the developer, download at your own risk.



Pay for some storage if you want. Or don't ¯\_(ツ)_/¯
How does this work I don't know how to download
 
  • Like
Reactions: Pudthumper

SeveredRealms

Well-Known Member
Game Developer
Apr 10, 2020
1,532
5,972
SeveredRealms
Spotted one or two grammar/typo issues:
Multiple your/you're issues.
Emissary not Emmisary
travelling not traveling
traveling is the American spelling. Both are correct depending on if your from the U.K. or the U.S.A. I'm in the U.S.A. so it is correct.
Emissary<<< corrected
your/you're<<< corrected as many as I could find. I went line for line and re-read them to be sure... I hope lmao
Thanks for pointing them out to me.
 

SeveredRealms

Well-Known Member
Game Developer
Apr 10, 2020
1,532
5,972
I avoid games who have mental/physical abuse on a LI or just someone you care for in the game like the plague but i am going to try your game because you are someone who has personal experiences with it(unfortunately) so not like some dev who use it merely as plot device aka 'he bad guy he rapes hate him the end'. The thought of it happening to someone i know even just casually terrifies me.

P.s i would really really love to meet that prick in a dark alley :mad:
Thanks what I put in my story is a bit rough but it could be worse. I could write into my story something that happened to a girl I know personally that ended up suckered into the porn industry. If what you think what the first king in my story does is bad.... You would never watch another porno if you knew what they did to her.... death would not be a sufficient punishment simply put.
 
Dec 20, 2020
3
0
New Android port. Nothing too fancy but let me know if you have any issues.

Version: 0.0.6 w/RIC0H's I-Patch + Hotfix

You don't have permission to view the spoiler content. Log in or register now.

This unofficial port/version is not released by the developer, download at your own risk.



Pay for some storage if you want. Or don't ¯\_(ツ)_/¯
So, I just downloaded the latest apk and when I extract it, this is what I get, I don't know if I did something wrong when extracting, but I can't find the apk, I would appreciate some feedback, thanks.


Screenshot_2021-09-22-11-39-30-074_pl.solidexplorer2.jpg
 

SeveredRealms

Well-Known Member
Game Developer
Apr 10, 2020
1,532
5,972
So, is every update going to mean starting from the beginning every single time?
Unless people complain again about something earlier in the script no. In the first release people complained they did understand the relationship screens and I has messages about other things in the base script that caused people problems to I had to make a bunch of changes.
 
3.70 star(s) 9 Votes