- Jun 17, 2017
- 6,197
- 30,949
Ahh, the classic 'posted in thread instead of PM' thing. Been there, done that!I don't have a program to compare files..
Ahh, the classic 'posted in thread instead of PM' thing. Been there, done that!I don't have a program to compare files..
OK, not sure how this one got past all of us, but here's a quick fix.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.
Works now, tyvm!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!
![]()
it was said in the mod during release that it re balances some rewards for game play, its in the readmeOmg, 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.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...
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)))
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.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 gameI appreciate your answer.
Didnt mean to come off dickishYes, 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.
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.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...
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.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
Looks good, can't wait to try it out.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
Pay attention. Note the heart icon in the lower left corner of this screenshot!@ 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...