Mod Ren'Py Space Journey - Gameplay Mod for SJx2.00.010d - Version 2.0d

4.00 star(s) 2 Votes

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
OK, without knowing what ELSE yv0751 changed in 'd', the only change I see is in the options file, which I added to the version in my mod (sound mixer code related snippet). So, you could TRY to use 'd' with my mod (just updated the attachement in OP with the 'start/wrench' fix included), but any files that I modified would 'overwrite' any new fixes since 'c'. I've changed a LOT of files, so it'd be a pain to check every single file for changes. So short of yv0751 enlightening me, yeah...

In any case, the 'c' version is still available here for now, until the uploaders notice...
 
  • Like
Reactions: Maccabbee

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
OK, y'all!

I bit the bullet and did a 'compare' of all of the files that I mod in my SJx version, comparing the 'vanilla' versions of 'c' and 'd'.

The only changes I found (in the files related to my mod) were in options.rpy and in 810_location_support, relating to the pony races. I've already added said changes to my mod.

So, as far as I can tell, this mod SHOULD work with SJx 2.00.010d as well as the 'c' version.

The 'c' version has been updated in the OP. For those of you that have SJx 2.00.010d, use the file attached to this post. It will maintain 'd' as the shown version, so as to avoid future confusion if you are adding my mod to SJx 2.00.010d.

Edit: The attached version in the link below this line shows version 2.00.010c w/OhWeeMod v2.0b as the version #
https://attachments.thef95zone.info/2025/01/4524915_SJx-200c_OhWeeMod_v20b.7z

Once I hear back from a few of you r.e. SJx 2.00.010d compatibility (i.e. no issues, of if you find issues), I'll 'update the OP to note 'd' compatibility, just being overly cautious here. You shouldn't have any issues, I've just started a 'd' testbuild myself.

Edit. Realized that the version shown would be 'c' if using for 'd', so attached is a version for those of you wishing to use this with SJx_2.00.010d which will show the 'vanilla' version text properly.
 
Last edited:

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
Game crashes when i right click to go to the menu...

Full log:
You don't have permission to view the spoiler content. Log in or register now.
OK, not sure how this one got past all of us, but here's a quick fix.
The associated currpage variable is defined, but Ren'Py is weird sometimes so hopefully adding a default at the start of the associated file resolves this issue.

Put the attached screens.rpy inside the attached .7z (not the .7z itself) in your /game folder, replacing the screens.rpy file that is there. Let me know if this solves your issue. If not, I have another idea...

I very much appreciate your reporting of this issue!
:cool:
 
  • Like
Reactions: Chrisdarock19

SilverFire

Member
Apr 28, 2017
178
41
OK, not sure how this one got past all of us, but here's a quick fix.
The associated currpage variable is defined, but Ren'Py is weird sometimes so hopefully adding a default at the start of the associated file resolves this issue.

Put the attached screens.rpy inside the attached .7z (not the .7z itself) in your /game folder, replacing the screens.rpy file that is there. Let me know if this solves your issue. If not, I have another idea...

I very much appreciate your reporting of this issue!
:cool:
Works now, tyvm!
 
  • Yay, update!
Reactions: OhWee

SilverFire

Member
Apr 28, 2017
178
41
Omg, after i installed the mod i dropped from 5.5 mil income per night to 700k.. i think you need to make some more adjustments...
 

sweetit

Member
Aug 17, 2020
431
459
Omg, after i installed the mod i dropped from 5.5 mil income per night to 700k.. i think you need to make some more adjustments...
it was said in the mod during release that it re balances some rewards for game play, its in the readme
 

SilverFire

Member
Apr 28, 2017
178
41
Yes, i know, i`ve read it, you don`t need to state the obvious. I was just expressing my surprise and also a little bit of indignation, but from 5.5m to 700k is a little bit more than just a little bit of re-balancing.
 

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
Omg, after i installed the mod i dropped from 5.5 mil income per night to 700k.. i think you need to make some more adjustments...
This was intentional, as higher value bots earn crazy high amounts in vanilla SJx. Earnings are on a 'curve' now using a squareroot function with an adder for the bot base income value.

Of course, if you sell higher value bots, you can earn crazy high amounts there too, but if I drop those values, and adjust the arcade income upwards to compensate, well then people will wonder why their bot isn't worth say 20,000,000 Cr anymore.
Or say 75,000,000 with a Galaxina shell...

If you have editing skills, you can modify this line in 760_sexbot_lab.rpy:
line 119
bot.earnedToday += int((2000 + ((bot.getPrice())**(.5))) * random.uniform(8.0,12.0) * fac * (.97 + (arcade_shelltypecount * .03)) * (1.0 + (arcade_attitudecount * .02)) * (1.0 + (arcade_traitcount * .02)) * (1.0 + (arcade_personalitycount * .02)))

The
random.uniform(8.0,12.0)
part would be the part to bump, so say if you wanted double the 'modded' income, change to:
random.uniform(16.0,24.0)

as for why 8-12, that is essentially an 80% to 120% random range for the nightly income.

But yeah, this was a deliberate change to 'bump the difficulty' while adjusting the 'delta' so cheaper bots would earn a bit more, but the really high value bots would only earn say 4-6x more than the cheap bots. In the mid-late game, banked income is crazy high anyways due to bot sales and such, so this is mainly an earlier game issue.

This topic is open to discussion, thoughts are welcome here!

I CAN build in a 'difficulty' chooser if people want this, I'm working on something else atm.

Note that yv0751 was trying to do something similar in the code, but as far as I can tell that function isn't being used currently. I was just trying to do something along the same lines, using squareroot instead of some fancy income level 'tier'multiplier system or whatever.

If you think I'm kidding, yeah this yv0751 code snippet hurts my brain...

Code:
        def getEarnings(self, x_in = False):
            if x_in:
                x = float(x_in)
            else:
                x = float(self.getPrice())

            x_points = [100000, 500000, 1000000, 10000000, 100000000]
            y_points = [15000, 60000, 100000, 500000, 1000000]
            result = 0
            # Check if x is out of the bounds of provided x_points
            if x <= x_points[0]:
                result = y_points[0]
            elif x >= x_points[-1]:
                result = y_points[-1]
            # Perform linear interpolation
            for i in range(4):
                if x_points[i] <= x <= x_points[i + 1]:
                    x0, y0 = x_points[i], y_points[i]
                    x1, y1 = x_points[i + 1], y_points[i + 1]
                    # Linear interpolation formula
                    y = y0 + (y1 - y0) * ((x - x0) / (x1 - x0))
                    result = y
                   
            return(int(result*random.uniform(0.9,1.0)))
My 'squareroot' with adder thing is much easier to understand...
 
Last edited:

SilverFire

Member
Apr 28, 2017
178
41
It would be nice to have the option to chose for ourselves. I`m just sad that i won`t be able to get the 500m achievement now, before i finish the game :LOL: I appreciate your answer.
 

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
It would be nice to have the option to chose for ourselves. I`m just sad that i won`t be able to get the 500m achievement now, before i finish the game :LOL: I appreciate your answer.
That's a thing? Is that total income, or just arcade income? I haven't looked closely at achievements. But yeah, adding a difficulty slider isn't that hard to do, it's just something I haven't got to yet.

If it's total income, just hole up in the lab and build a lot of bots to sell on the market, you can get to $500m Cr in no time!
 

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
sweetit and SilverFire and others

I really do want to get a feel for how y'all feel about bot values overall. IMHO, selling high value bots at say 15-20m CR a pop in the early game pretty much 'breaks' things, and leaves me wondering why the MC would actually want to go home if he's raking in that sort of cash. It also totally devalues cargo missions, as you should just focus on bot building instead... using Bounty missions to rake in the bot crates.

I''ve already nudged bot values down a bit, but people are expecting similar values for the bots. Cutting the total bot value by say 50-75% but keeping arcade income around the say $1-2 million per night range would make things a bit more 'balanced' IMHO, but then people will get depressed because Galaxina isn't valued at 50-80m Cr anymore...
 

SilverFire

Member
Apr 28, 2017
178
41
Sorry, i`m falling asleep in my chair right now and this deserves more than the 10 words that i have left in me:LOL:. I`ll think about it and answer after i sleep.
 
  • Like
Reactions: OhWee

sweetit

Member
Aug 17, 2020
431
459
Yes, i know, i`ve read it, you don`t need to state the obvious. I was just expressing my surprise and also a little bit of indignation, from 5.5m to 700k is a little bit more than just some re-balancing.
Didnt mean to come off dickish
sweetit and SilverFire and others

I really do want to get a feel for how y'all feel about bot values overall. IMHO, selling high value bots at say 15-20m CR a pop in the early game pretty much 'breaks' things, and leaves me wondering why the MC would actually want to go home if he's raking in that sort of cash. It also totally devalues cargo missions, as you should just focus on bot building instead... using Bounty missions to rake in the bot crates.

I''ve already nudged bot values down a bit, but people are expecting similar values for the bots. Cutting the total bot value by say 50-75% but keeping arcade income around the say $1-2 million per night range would make things a bit more 'balanced' IMHO, but then people will get depressed because Galaxina isn't valued at 50-80m Cr anymore...
i guess the way to do it is to spread earnings over the early - mid - late game, like have late game shells add a more exponential value to the bots maybe? or make Elite IQ boosters that bots over certain iq have a much higher value to balance out the earnings? or make trade/smuggle/combat missions more lucrative.

I always figured the arcade was a lower but "always on" passive way to earn money by design when you cant move around because of missions or story beats, so its supplementary

another options is having to adding higher bot value but you have to buy arcade bot slots at the pirate station from the bar or something then it will just grow untill full slots late game (decorations for the arcade, self cleaning bot mounts , that sort of thing) although thats almost just another game in itself

dont mind me i enjoy the brothel management side
 

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
Didnt mean to come off dickish


i guess the way to do it is to spread earnings over the early - mid - late game, like have late game shells add a more exponential value to the bots maybe? or make Elite IQ boosters that bots over certain iq have a much higher value to balance out the earnings? or make trade/smuggle/combat missions more lucrative.

I always figured the arcade was a lower but "always on" passive way to earn money by design when you cant move around because of missions or story beats, so its supplementary

another options is having to adding higher bot value but you have to buy arcade bot slots at the pirate station from the bar or something then it will just grow untill full slots late game (decorations for the arcade, self cleaning bot mounts , that sort of thing) although thats almost just another game in itself

dont mind me i enjoy the brothel management side
Yeah I'd like to see the Arcade be a place that you visit, and maybe spend some time with your bots, but yv0751 would have to implement that on his end as he has the associated models.

Upgrading the arcade over time is also a cool idea.

My main goal right now though is to work 'within' the existing framework, and not create new things that might break saves. A difficulty variable is something that 'vanilla' SJx won't be aware of and will hence ignore, but adding say a 'brothel upgrades' thing might be more problematic...

Yeah there's a way you could sorta kinda do it, but then you are essentially talking two different games. My mod changes so far pretty much work within the existing framework, with the 'added variables' not affecting the 'core' variables, which is why people can still use existing saves from the modded version in 'vanilla' SJx.

---

Anyways, my idea right now is to add something to the Captain's Quarters computer screen (lower right corner) that opens up a screen with sliders for an arcade income multiplier and a bot value multiplier. This way players can adjust ingame if they feel the current income settings aren't what they are looking for. Then the associated multiplier variable is just added to the associated formulas.

Since bot parts are essentially 'free' except for when buy crates and special offers, I can 'sidestep' part valuation and just focus on the 'total value'. The 'base part price' is multiplied by 10x or more thanks to IQ, skills, and such, so it's pretty easy to lower bot values by say 50-75% without getting into the 'parts cost more than you can sell the bot for' range.

That's my current plan anyways. I'm placing the 'heart' icon from the discipline minigame in the lower right corner, and that will access the difficulty level screen that I'm making. This means that people will be able to change the difficulty levels 'on the fly' to their own taste.

I could also add an adjustment slider for the 'square root' thing as i'm doing that via ** instead of a square root function, so the .5 (which is equivalent to squareroot) could be changed to 1x, eliminating the 'exponent adjustment', stuff to ponder...
 

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
SilverFire sweetit Chrisdarock19 etc...

OK, so I'm gonna give y'all 'all the control' as it relates to calculating bot value and arcade earnings!

Here's a screenshot showing the associated menu, which will be accessable using the 'heart' button in the lower right corner of the captain's quarters computer screen:

Bot_GameplayDiffAdjustmentsOhWeeMod.jpg

'Default' would be 'vanilla' SJx values (essentially 1x multipliers and such).
'Suggested" is where my head is at currently r.e. trying to make the bot economy a bit less monty_haulish

But of course, you can bump things around to your heart's content, to try to find what you feel is the right balance r.e. selling bots vs. having them work in the arcade.

I still need to apply the associated variables to a couple of formulas, so it'll be a bit longer before I can share this. And also add a menu at the start of the game giving you the option to choose yoru settings before you start playing said new game.

What do y'all think?

Edit: Here's a screenshot with my 'suggested' settings applied (50% Bot Value, 2x Arcade Income, 0.5x Exponent, +20,000 Cr earnings Base Value Offset

Bot_GameplayDiffAdjustmentsResults_OhWeeMod.jpg
 
Last edited:

Chrisdarock19

Well-Known Member
Oct 15, 2018
1,261
1,786
SilverFire sweetit Chrisdarock19 etc...

OK, so I'm gonna give y'all 'all the control' as it relates to calculating bot value and arcade earnings!

Here's a screenshot showing the associated menu, which will be accessable using the 'heart' button in the lower right corner of the captain's quarters computer screen:

View attachment 4501489

'Default' would be 'vanilla' SJx values (essentially 1x multipliers and such).
'Suggested" is where my head is at currently r.e. trying to make the bot economy a bit less monty_haulish

But of course, you can bump things around to your heart's content, to try to find what you feel is the right balance r.e. selling bots vs. having them work in the arcade.

I still need to apply the associated variables to a couple of formulas, so it'll be a bit longer before I can share this. And also add a menu at the start of the game giving you the option to choose yoru settings before you start playing said new game.

What do y'all think?

Edit: Here's a screenshot with my 'suggested' settings applied (50% Bot Value, 2x Arcade Income, 0.5x Exponent, +20,000 Cr earnings Base Value Offset

View attachment 4501467
Looks good, can't wait to try it out.
 
  • Like
Reactions: OhWee

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
OK, betatesters, it's testing time again!

So, here's a few more screenshots, showcasing the 'start game' added choice menus and the new bot value/earnings difficulty options...

AcceleratedStart_OhWeeMod.jpg

This screen has been in my mod for a while, but I haven't screenshotted it recently, so here it is.

Now on to the bot related stuff...

StartBotValueDifficulty_OhWeeMod.jpg

And if you choose to 'customize', essentially you'll see the same popup screen as the one that you can access later in the game via the Captain's quarters computer terminal...

StartBotValueDifficultyCustomize_OhWeeMod.jpg

Here are the other two screenshots from my last post again for reference. Note the heart icon in the lower right icon of the left screenshot, which will bring up the popup screen that is in the middle of the screen. The second screenshot will give you a bit of a 'ballpark feel' r.e. where the bot value and nightly earnings fall when using the 'suggested' settings.



Do note that if you decide to use a 'modded' save, i.e. a save made while using my mod, later in 'vanilla' SJx for whatever reason, bot valuation will revert to 'default' SJx values. Your current earnings will remain unaffected of course!

I've also made minor adjustments to a few other miscellaneous things since yesterday, and also included the screens.rpy hotfix in the attached .7z.

So mainly, I'd like to sure that my most recent tweaks are working properly for y'all. I was working on progressive shell upgrades (random grade/tier is annoying me), when this whole difficulty discussion re-ignited, and I'd like to get back to that, it's the 'other' loose end that I keep forgetting about...

Modded files are in the attached .7z . Just merge the /game folder inside the .7z with your /game folder as usual.

- Note that he attached .7z is NOT the full mod, it's just the most recently tweaked mod files.
- Also note that the attached 'modpatch' will work with either the 'c' or 'd' versions of my mod.
 
Last edited:

konstant61

Member
May 3, 2017
121
56
@ OhWee

a good addition to the mod, but it would be nice if these settings could be changed in the game, and not only at the beginning of the game... otherwise I don't want to start the game at first...
 
  • Yay, update!
Reactions: OhWee

OhWee

Conversation Conqueror
Modder
Game Developer
Jun 17, 2017
6,197
30,949
@ OhWee

a good addition to the mod, but it would be nice if these settings could be changed in the game, and not only at the beginning of the game... otherwise I don't want to start the game at first...
Pay attention. Note the heart icon in the lower left corner of this screenshot!



So you can access these settings any time that you are using the computer terminal in the captain's quarters by clicking on said icon, and change any of these settings that you wish mid-game if you so wish! No 'restart from beginning' required!

Enjoy!
:cool:
 
4.00 star(s) 2 Votes