Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Strive for Power

Fantasy Slave Management/RPG Erotic Game · By Strive4Power

A milky problem

A topic by Raziel99xx created May 05, 2020 Views: 1,200 Replies: 2
Viewing posts 1 to 2
(2 edits)

Hey guys! I love the game and think it`s in my top 3 favorite Slave Management Sims. But...

Is there a way to LOWER the profit that is generated by the farm (maybe a Skript adjustment) ? 

Im in Day 70 or so now and my Daily profit rose from 300 to 4000 over night with just 2 developed cows and a decent  manager. In my opinion this is way too much money and its taking all the challenge away.  With that much money i could buy all Mansion upgrades almost instantly and don`t have to work for them (Upgrade points aside).

Sry, I´m not a native English speaker.

Not exactly sure how you want to change it, but you can open Mansion.gd with a decent text editor, just be sure to make a backup of the file first. Search for "person.work == 'cow'" it will take you to the start of the code that calculates the amount of milk produced by each cow. The variable "production" holds the amount of food produced, so you will want to change how it is calculated. Here are some ways to alter it:

  • to change the boost from large breasts change the number in front of "18*globals.sizearray.find(person.titssize)"
  • to change the boost from many breasts change the number in "(0.33 * person.titsextra)"
  • to change the boost from the manager(will effect hens as well) change the numbers in "(0.4 + farmmanager.wit * 0.004 + farmconf * 0.002)"
  • to add a general percentage reduction, simply add something like "* 0.25" to an existing line like the breast size

Thank you for your answer. I´ll try that right away.