Mr.Mine

Mr.Mine

View Stats:
Vorpster Nov 30, 2024 @ 4:06am
Another Issue/Bug with Big Cheese
Hey, before i get get dog pilled i would like to say that i did some research before posting so be kind :)

§1 So i know that right now it only work on earth minerals and that you "can fix" it by doing some editing in game files

open the file \MrMine\win-unpacked\resources\app\scientists.js in a text editor. Find part shown below and replace 13 with 18. Save the file.

function grantBigCheese()
{
for(var i=1; i<13; i++)
{
worldResources.numOwned *= 2;
}
} [/code]

This post was from 2021 and in 2024 my code looks different..

function grantBigCheese()
{
for(var i = mineralIds.length - 1; i >= 0; i--)
{
let amountToGrant = Math.max(0, Math.min(maxHoldingCapacity() - capacity, worldResources[mineralIds[i]].numOwned));
if(capacity + amountToGrant <= maxHoldingCapacity())
{
worldResources[mineralIds[i]].numOwned += amountToGrant;

So as you see new code does not even mention number 13, and thus i rather not mess around with something that i got almost now knowledge about. But then again who knows maybe this part got patched already, i just haven't found post about it


§2 My Other problem are that i CANT activate Big Cheese item at all.
I tried with full inventory, with empty inventory, with free relic slot.
Nothing seems to help and i guess that only way are to sacrifice the due holding it if i want to get 3rd science slot working again.

So any kind of tips other than biting the bullet and tossing guy into molten core??
< >
Showing 1-2 of 2 comments
Casurin Nov 30, 2024 @ 5:28am 
haven't looked into it with the many recent patches but just recently it worked fine.

No, the old mod is not needed cause that was just a community-fix for the sloppy programming - now it should work with all resources.
Buuuuut there are still some problems with how cheese gets calculated.
Vorpster Nov 30, 2024 @ 1:29pm 
Ok thanks for reply. I managed to get 2nd cheese on other guy and could use it right away..

First one are still sitting there without option of activation, it probably melted into that guy because i was holding it for more than a day while collecting needed magnesium :P
So will toss it into Molten core.
< >
Showing 1-2 of 2 comments
Per page: 1530 50