Empty Land?
Nonononono! If you need workers, build houses. Never leave land empty - it is taken quicker and gives very little gain.
If you go down to the woods today, you better not go alone
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
If you are going for cash income (few people do), you will want a ton more markets than tents. The actual equation is complicated:
[php]<?
function calcIncome() {
global $users, $urace, $config, $size;
$size = calcSizeBonus($users[networth]);
$income = round(((pci($users, $urace) * ($users[tax] / 100) * ($users[health] / 100) * $users[peasants]) + ($users[shops] * 500)) / $size);
return round($income);
}
?>
[/php]
Mostly, you want markets.
[php]<?
function calcIncome() {
global $users, $urace, $config, $size;
$size = calcSizeBonus($users[networth]);
$income = round(((pci($users, $urace) * ($users[tax] / 100) * ($users[health] / 100) * $users[peasants]) + ($users[shops] * 500)) / $size);
return round($income);
}
?>
[/php]
Mostly, you want markets.
If you go down to the woods today, you better not go alone
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
- Ruddertail
- Promi Diplomacy ate my homework...
- Posts: 4510
- Joined: Wed May 12, 2004 11:39 pm
- Location: Chances are, playing FAF.
- Contact:
On a side note, we should consider strengthening cashing. Currently the viable strategies are industry, agrarian, and hawking... A few more won't hurt.
If you go down to the woods today, you better not go alone
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
- Nuclear Raunch
- The Wanderer
- Posts: 950
- Joined: Tue May 24, 2005 4:30 am
Was this changed when you guys modified the FAF code or is it still the same as original code?Devari wrote:
[php]<?
function calcIncome() {
global $users, $urace, $config, $size;
$size = calcSizeBonus($users[networth]);
$income = round(((pci($users, $urace) * ($users[tax] / 100) * ($users[health] / 100) * $users[peasants]) + ($users[shops] * 500)) / $size);
return round($income);
}
?>
[/php]
Mostly, you want markets.
Also does anyone know how PCI is calculated?
I know the voices in my head arn't real but they usually have some pretty good ideas.
Huh? When we modifed the FAF code? Whaddya mean? We ARE the FAF code.
[php]function pci ($user, $race)
{
return round(25 * (1 + $user[shops] / ($user[land]+1)) * $race[pci]);
} [/php]
[php]function pci ($user, $race)
{
return round(25 * (1 + $user[shops] / ($user[land]+1)) * $race[pci]);
} [/php]
If you go down to the woods today, you better not go alone
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
- Nuclear Raunch
- The Wanderer
- Posts: 950
- Joined: Tue May 24, 2005 4:30 am
QM, and probably not.
[php]$popbase = round((($users[land] * 2) + ($users[freeland] * 5) + ($users[homes] * 60)) / (0.95 + $taxrate + $taxpenalty));
if ($users['hero_peace'] == 3) // Hestia?
if ($users[peasants] != $popbase)
$peasants = ($popbase - $users[peasants]) / 20;
if ($peasants > 0) $peasmult = (4 / (($users[tax] + 15) / 20)) - (7 / 9);
if ($peasants < 0) $peasmult = 1 / ((4 / (($users[tax] + 15) / 20)) - (7 / 9));
$peasants = round($peasants * $peasmult * $peasmult);
$users[peasants] += $peasants; [/php]
[php]$popbase = round((($users[land] * 2) + ($users[freeland] * 5) + ($users[homes] * 60)) / (0.95 + $taxrate + $taxpenalty));
if ($users['hero_peace'] == 3) // Hestia?
if ($users[peasants] != $popbase)
$peasants = ($popbase - $users[peasants]) / 20;
if ($peasants > 0) $peasmult = (4 / (($users[tax] + 15) / 20)) - (7 / 9);
if ($peasants < 0) $peasmult = 1 / ((4 / (($users[tax] + 15) / 20)) - (7 / 9));
$peasants = round($peasants * $peasmult * $peasmult);
$users[peasants] += $peasants; [/php]
If you go down to the woods today, you better not go alone
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
It's a lovely day in the woods today, but safer to stay at home
BECAUSE EVIL FREEN IS KILLING ALL THE TEDDY BEARS AT THEIR PICNIC
- Ruddertail
- Promi Diplomacy ate my homework...
- Posts: 4510
- Joined: Wed May 12, 2004 11:39 pm
- Location: Chances are, playing FAF.
- Contact:
- Nuclear Raunch
- The Wanderer
- Posts: 950
- Joined: Tue May 24, 2005 4:30 am
What's tax penalty?Devari wrote: [php]$popbase = round((($users[land] * 2) + ($users[freeland] * 5) + ($users[homes] * 60)) / (0.95 + $taxrate + $taxpenalty));
    if ($users['hero_peace'] == 3) // Hestia?
     ÂÂÂ
    if ($users[peasants] != $popbase)
      $peasants = ($popbase - $users[peasants]) / 20;
    if ($peasants > 0) $peasmult = (4 / (($users[tax] + 15) / 20)) - (7 / 9);
    if ($peasants < 0) $peasmult = 1 / ((4 / (($users[tax] + 15) / 20)) - (7 / 9));
    $peasants = round($peasants * $peasmult * $peasmult);
    $users[peasants] += $peasants; [/php]
Sorry for all the questions, I just want to get some info on thins so I can post the absolute optimum land division for a cashing empire.
EDIT: Can't get bold print to work in the quote box but it's in the second line of the code.
I know the voices in my head arn't real but they usually have some pretty good ideas.
-
Members connected in real time

