I just wanted to bring this up. I'm sure some of you knew about this and many others that did not know. But I know a lot of people will compare the launch of SimCity 2013 to this game. I just want to let you know that even the math provided here we found they were cheating with the system.
Here is one the variables actually called Get Fudged Population:
GetFudgedPopulation from the Interface JS file.
English: 1 Million Population in SimCity 2013 was actually 121k.
Here is one the variables actually called Get Fudged Population:
GetFudgedPopulation from the Interface JS file.
Code:
simcity.GetFudgedPopulation = function (a) {
a = "undefined" !== typeof a ? a : simcity.gGlobalUIHandler.mLastPopulation;
if (500 >= a)
return a;
if (40845 < a)
return Math.floor(8.25 * a);
a = Math.pow(a - 500, 1.2) + 500;
return Math.floor(a)
};
simcity.GetRoundedFudgedPopulation = function (a) {
a = simcity.GetFudgedPopulation(a);
return a = 25E3 < a ? 10 * Math.round(a / 10) : 5 * Math.round(a / 5)
}; ;
English: 1 Million Population in SimCity 2013 was actually 121k.
Last edited: