Skip to content
Snippets Groups Projects
Commit 0f5172d7 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'NaNProtection' into 'pregmod-master'

Population NaN protection

See merge request pregmodfan/fc-pregmod!3189
parents bf1a24d2 22574549
No related branches found
No related tags found
1 merge request!3189Population NaN protection
...@@ -692,7 +692,12 @@ $menialBioreactors -= _expirationBR>> ...@@ -692,7 +692,12 @@ $menialBioreactors -= _expirationBR>>
<<if $arcologies[0].honeymoon > 0>> <<if $arcologies[0].honeymoon > 0>>
<<set _honeymoon = 10 * $arcologies[0].honeymoon>> <<set _honeymoon = 10 * $arcologies[0].honeymoon>>
<</if>> <</if>>
<<set $visitors = Math.trunc((($arcologies[0].prosperity + _FSScore * 5 + _honeymoon) * _transportHub * _terrain * _crime) * ($localEcon / 100))>> <<set $oldVisitors = $visitors,
$visitors = Math.trunc((($arcologies[0].prosperity + _FSScore * 5 + _honeymoon) * _transportHub * _terrain * _crime) * ($localEcon / 100))>>
<<if isNaN($visitors)>>
<br>@@.red;Visitors is NaN, report this issue!@@
<<set $visitors = $oldVisitors>>
<</if>>
<br>@@.green;<<print $visitors>> traders and tourists@@ visited your arcology this week. <br>@@.green;<<print $visitors>> traders and tourists@@ visited your arcology this week.
/*slaves*/ /*slaves*/
...@@ -719,7 +724,7 @@ $menialBioreactors -= _expirationBR>> ...@@ -719,7 +724,7 @@ $menialBioreactors -= _expirationBR>>
<</if>> <</if>>
<<if _weeklyRetiredNPCMenials > 1>> <<if _weeklyRetiredNPCMenials > 1>>
<<set _weeklyRetiredNPCMenials = Math.trunc(_weeklyRetiredNPCMenials)>> <<set _weeklyRetiredNPCMenials = Math.trunc(_weeklyRetiredNPCMenials)>>
<<if _weeklyREtiredNPCMenials > 1>> <<if _weeklyRetiredNPCMenials > 1>>
<br>@@.red;<<print _weeklyRetiredNPCMenials>> menial slaves@@ were retired as free citizens by other slave owners in your arcology this week. <br>@@.red;<<print _weeklyRetiredNPCMenials>> menial slaves@@ were retired as free citizens by other slave owners in your arcology this week.
<<else>> <<else>>
<br>@@.red;One menial slave@@ was retired as a free citizen by another slave owner in your arcology this week. <br>@@.red;One menial slave@@ was retired as a free citizen by another slave owner in your arcology this week.
...@@ -742,60 +747,65 @@ $menialBioreactors -= _expirationBR>> ...@@ -742,60 +747,65 @@ $menialBioreactors -= _expirationBR>>
<<set _LSCD = Math.trunc(($LSCBase * ($localEcon / 100)) + ($arcologies[0].prosperity * 4) + (($middleClass + $visitors * 0.6) * 1.5) + (($upperClass + $visitors * 0.2) * 3.5) + ($topClass * 18)), <<set _LSCD = Math.trunc(($LSCBase * ($localEcon / 100)) + ($arcologies[0].prosperity * 4) + (($middleClass + $visitors * 0.6) * 1.5) + (($upperClass + $visitors * 0.2) * 3.5) + ($topClass * 18)),
/*Demand for owning slaves*/ /*Demand for owning slaves*/
_SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass * ($slaveDemandT + _slaveDemandT)))>> _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass * ($slaveDemandT + _slaveDemandT)))>>
/*More slaves than they know what to do with*/ <<if isNaN(_LSCD)>>
<<if $NPCSlaves > _SCD * 1.6>> <br>@@.red;LSCD is NaN, report this issue!@@
<<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_SCD * 1.6), <<elseif isNaN(_SCD)>>
$menialDemandFactor -= _NPCSlavesSold, <br>@@.red;SCD is NaN, report this issue!@@
$NPCSlaves = Math.trunc(_SCD * 1.6)>> <<else>> /*More slaves than they know what to do with*/
<<if _NPCSlavesSold > 1>> <<if $NPCSlaves > _SCD * 1.6>>
<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. They've got more than enough of them already. <<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_SCD * 1.6),
<<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave@@ was sold by your inhabitants. They've got more than enough of them already.
<</if>>
/*More slaves than there is work*/
<<elseif $NPCSlaves > (_LSCD / ($slaveProductivity + _slaveProductivity)) - $helots + _SCD>>
<<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity) - $helots + _SCD),
$menialDemandFactor -= _NPCSlavesSold,
$NPCSlaves = Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity))>>
<<if _NPCSlavesSold > 1>>
<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. There was so little work that they failed to earn their keep.
<<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave was sold by your inhabitants. There was so little work that it failed to earn its keep.
<</if>>
/*Cutting back on slaves*/
<<elseif $NPCSlaves > _SCD * 1.4>>
<<if $slaveCostFactor > 0.95>>
<<set _NPCSlavesSold = Math.trunc(($NPCSlaves - _SCD) * 0.4),
$menialDemandFactor -= _NPCSlavesSold, $menialDemandFactor -= _NPCSlavesSold,
$NPCSlaves -= _NPCSlavesSold>> $NPCSlaves = Math.trunc(_SCD * 1.6)>>
<<if _NPCSlavesSold > 1>> <<if _NPCSlavesSold > 1>>
<br>@@.red;<<print _NPCSlavesSold>> slaves were sold by your inhabitants. They've got more than enough of them already. <br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. They've got more than enough of them already.
<<elseif _NPCSlavesSold > 0>> <<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave was sold by your inhabitants. They've got more than enough of them already. <br>@@.red;One slave@@ was sold by your inhabitants. They've got more than enough of them already.
<</if>> <</if>>
<</if>> /*More slaves than there is work*/
/*Selling excess slaves for profit*/ <<elseif $NPCSlaves > (_LSCD / ($slaveProductivity + _slaveProductivity)) - $helots + _SCD>>
<<elseif $NPCSlaves > _SCD * 1.2>> <<set _NPCSlavesSold = $NPCSlaves - Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity) - $helots + _SCD),
<<if $slaveCostFactor > 1.1>>
<<set _NPCSlavesSold = Math.trunc(($NPCSlaves - _SCD) * 0.4),
$menialDemandFactor -= _NPCSlavesSold, $menialDemandFactor -= _NPCSlavesSold,
$NPCSlaves -= _NPCSlavesSold>> $NPCSlaves = Math.trunc(_LSCD / ($slaveProductivity + _slaveProductivity))>>
<<if _NPCSlavesSold > 1>> <<if _NPCSlavesSold > 1>>
<br>@@.red;<<print _NPCSlavesSold>> slaves were sold by your inhabitants. They saw an opportunity for profit. <br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. There was so little work that they failed to earn their keep.
<<elseif _NPCSlavesSold > 0>> <<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave was sold by your inhabitants. They saw an opportunity for profit. <br>@@.red;One slave@@ was sold by your inhabitants. There was so little work that it failed to earn its keep.
<</if>>
/*Cutting back on slaves*/
<<elseif $NPCSlaves > _SCD * 1.4>>
<<if $slaveCostFactor > 0.95>>
<<set _NPCSlavesSold = Math.trunc(($NPCSlaves - _SCD) * 0.4),
$menialDemandFactor -= _NPCSlavesSold,
$NPCSlaves -= _NPCSlavesSold>>
<<if _NPCSlavesSold > 1>>
<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. They've got more than enough of them already.
<<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave@@ was sold by your inhabitants. They've got more than enough of them already.
<</if>>
<</if>>
/*Selling excess slaves for profit*/
<<elseif $NPCSlaves > _SCD * 1.2>>
<<if $slaveCostFactor > 1.1>>
<<set _NPCSlavesSold = Math.trunc(($NPCSlaves - _SCD) * 0.4),
$menialDemandFactor -= _NPCSlavesSold,
$NPCSlaves -= _NPCSlavesSold>>
<<if _NPCSlavesSold > 1>>
<br>@@.red;<<print _NPCSlavesSold>> slaves@@ were sold by your inhabitants. They saw an opportunity for profit.
<<elseif _NPCSlavesSold > 0>>
<br>@@.red;One slave@@ was sold by your inhabitants. They saw an opportunity for profit.
<</if>>
<</if>> <</if>>
<</if>> <</if>>
<</if>> /*Buying slaves because they are really cheap*/
/*Buying slaves because they are really cheap*/ <<if $slaveCostFactor < 0.8>>
<<if $slaveCostFactor < 0.8>> <<if $NPCSlaves < _SCD * 1.5>>
<<if $NPCSlaves < _SCD * 1.5>> <<set _NPCSlavesBought = Math.trunc(_SCD * 0.05),
<<set _NPCSlavesBought = Math.trunc(_SCD * 0.05), $menialSupplyFactor -= _NPCSlavesBought,
$menialSupplyFactor -= _NPCSlavesBought, $NPCSlaves += _NPCSlavesBought>>
$NPCSlaves += _NPCSlavesBought>> <<if _NPCSlavesBought > 1>>
<<if _NPCSlavesBought > 1>> <br>@@.green;<<print _NPCSlavesBought>> slaves@@ were bought by your inhabitants. They were too cheap to pass up on.
<br>@@.green;<<print _NPCSlavesBought>> slaves were bought by your inhabitants. They were too cheap to pass up on. <</if>> /*there's no way this ever ends up needing a 1 slave version*/
<</if>> /*there's no way this ever ends up needing a 1 slave version*/ <</if>>
<</if>> <</if>>
<</if>> <</if>>
...@@ -805,107 +815,116 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass * ...@@ -805,107 +815,116 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass *
<<if _LCD < 0>> <<if _LCD < 0>>
<<set _LCD = 0>> <<set _LCD = 0>>
<</if>> <</if>>
/*Changing population depending on work available*/ <<if isNaN(_LCD)>>
<<if $lowerClass < _LCD>> <br>@@.red;LCD is NaN, report this issue!@@
<<set _LCImmigration = Math.trunc((_LCD - $lowerClass) * (0.3 * _terrain)) + 1, <<else>>/*Changing population depending on work available*/
$lowerClass += _LCImmigration>> <<if $lowerClass < _LCD>>
<<if _LCImmigration > 1>> <<set _LCImmigration = Math.trunc((_LCD - $lowerClass) * (0.3 * _terrain)) + 1,
<br>@@.green;<<print _LCImmigration>> lower class citizens@@ moved to your arcology. $lowerClass += _LCImmigration>>
<<elseif _LCImmigration > 0>> <<if _LCImmigration > 1>>
<br>@@.green;One lower class citizen@@ moved to your arcology. <br>@@.green;<<print _LCImmigration>> lower class citizens@@ moved to your arcology.
<</if>> <<elseif _LCImmigration > 0>>
<<elseif $lowerClass > _LCD>> <br>@@.green;One lower class citizen@@ moved to your arcology.
<<set _LCEmigration = Math.trunc(($lowerClass - _LCD) * 0.6) + 1>> <</if>>
<<if $citizenRetirementMenials == 1>> <<elseif $lowerClass > _LCD>>
<<set _enslavedEmigrants = Math.trunc((($lowerClass - _LCD) * 0.6) * $enslaveChance * (0.05 + _banishedRatio))>> <<set _LCEmigration = Math.trunc(($lowerClass - _LCD) * 0.6) + 1>>
<<else>> <<if $citizenRetirementMenials == 1>>
<<set _enslavedEmigrants = Math.trunc((($lowerClass - _LCD) * 0.6) * $enslaveChance)>> <<set _enslavedEmigrants = Math.trunc((($lowerClass - _LCD) * 0.6) * $enslaveChance * (0.05 + _banishedRatio))>>
<</if>> <<else>>
<<set $lowerClass -= _LCEmigration, <<set _enslavedEmigrants = Math.trunc((($lowerClass - _LCD) * 0.6) * $enslaveChance)>>
_enslaved += _enslavedEmigrants>> <</if>>
<<if _LCEmigration > 1>> <<set $lowerClass -= _LCEmigration,
<br>@@.red;<<print _LCEmigration>> lower class citizens@@ had no work and tried to leave your arcology. _enslaved += _enslavedEmigrants>>
<<if _enslavedEmigrants > 1>> <<if _LCEmigration > 1>>
@@.green;<<print _enslavedEmigrants>> of them were enslaved instead.@@ <br>@@.red;<<print _LCEmigration>> lower class citizens@@ had no work and tried to leave your arcology.
<<elseif _enslavedEmigrants > 0>> <<if _enslavedEmigrants > 1>>
@@.green;One of them was enslaved instead.@@ @@.green;<<print _enslavedEmigrants>> of them were enslaved instead.@@
<<elseif _enslavedEmigrants > 0>>
@@.green;One of them was enslaved instead.@@
<</if>>
<<elseif _LCEmigration > 0>>
<br>@@.red;One lower class citizen@@ left your arcology due to a lack of work.
<</if>> <</if>>
<<elseif _LCEmigration > 0>>
<br>@@.red;One lower class citizen@@ left your arcology due to a lack of work.
<</if>> <</if>>
<</if>> <<if _enslaved > 0>>
<<if _enslaved > 0>> <<if _enslaved < 4>>
<<if _enslaved < 4>> <<set _enslavedPC = 1,
<<set _enslavedPC = 1, _enslavedNPC = _enslaved - 1>>
_enslavedNPC = _enslaved - 1>> <<else>>
<<else>> <<set _enslavedPC = Math.trunc(_enslaved / 4),
<<set _enslavedPC = Math.trunc(_enslaved / 4), _enslavedNPC = _enslaved - _enslavedPC>>
_enslavedNPC = _enslaved - _enslavedPC>> <</if>>
<<set $helots += _enslavedPC,
$NPCSlaves += _enslavedNPC>>
<</if>> <</if>>
<<set $helots += _enslavedPC, <<if _enslaved > 1>>
$NPCSlaves += _enslavedNPC>> <br>In total @@.green;<<print _enslaved>> lower class citizens@@ were enslaved for failing to pay their debts.
<</if>> <br>@@.green;You enslaved <<print _enslavedPC>>@@ of them while other debtholders in the arcology enslaved the remaining <<print _enslavedNPC>>.
<<if _enslaved > 1>> <<elseif _enslaved > 0>>
<br>In total @@.green;<<print _enslaved>> lower class citizens@@ were enslaved for failing to pay their debts. <br>@@.green;As arcology owner you claimed the slave.@@
<br>@@.green;You enslaved <<print _enslavedPC>>@@ of them while other debtholders in the arcology enslaved the remaining <<print _enslavedNPC>>. <</if>>
<<elseif _enslaved > 0>> /*Need more slaves still*/
<br>@@.green;As arcology owner you claimed the slave.@@ <<if $NPCSlaves < _SCD>>
<</if>> <<set _NPCSlavesBought = Math.trunc((_SCD - $NPCSlaves) * 0.75) + 1,
/*Need more slaves still*/ $menialSupplyFactor -= _NPCSlavesBought,
<<if $NPCSlaves < _SCD>> $NPCSlaves += _NPCSlavesBought>>
<<set _NPCSlavesBought = Math.trunc((_SCD - $NPCSlaves) * 0.75) + 1, <<if _NPCSlavesBought > 1>>
$menialSupplyFactor -= _NPCSlavesBought, <br>@@.green;<<print _NPCSlavesBought>> slaves@@ were bought by your inhabitants. They did not have enough of them to satisfy their needs.
$NPCSlaves += _NPCSlavesBought>> <<elseif _NPCSlavesBought > 0>>
<<if _NPCSlavesBought > 1>> <br>@@.green;One slave@@ was bought by your inhabitants. They did not quite have enough of them to satisfy their needs.
<br>@@.green;<<print _NPCSlavesBought>> slaves@@ were bought by your inhabitants. They did not have enough of them to satisfy their needs. <</if>>
<<elseif _NPCSlavesBought > 0>>
<br>@@.green;One slave@@ was bought by your inhabitants. They did not quite have enough of them to satisfy their needs.
<</if>> <</if>>
<</if>> <</if>>
/*Middle Class Citizens*/ /*Middle Class Citizens*/
/*Demand for Middle Class*/ /*Demand for Middle Class*/
<<set _MCD = Math.trunc((($MCBase * ($localEcon / 100)) + $arcologies[0].prosperity + _middleClass + ($NPCSlaves * 0.15) + ($lowerClass * 0.1) + (($upperClass + $visitors * 0.2) * 0.5) + ($topClass * 2.5)) * $rentEffectM * _middleClassP)>> <<set _MCD = Math.trunc((($MCBase * ($localEcon / 100)) + $arcologies[0].prosperity + _middleClass + ($NPCSlaves * 0.15) + ($lowerClass * 0.1) + (($upperClass + $visitors * 0.2) * 0.5) + ($topClass * 2.5)) * $rentEffectM * _middleClassP)>>
/*Middle Class Citizens immigrating*/ <<if isNaN(_MCD)>>
<<if $middleClass < _MCD>> <br>@@.red;MCD is NaN, report this issue!@@
<<set _MCImmigration = Math.trunc((_MCD - $middleClass) * (0.3 * _terrain)) + 1, <<else>> /*Middle Class Citizens immigrating*/
$middleClass += _MCImmigration>> <<if $middleClass < _MCD>>
<<if _MCImmigration > 1>> <<set _MCImmigration = Math.trunc((_MCD - $middleClass) * (0.3 * _terrain)) + 1,
<br>@@.green;<<print _MCImmigration>> middle class citizens@@ moved to your arcology. $middleClass += _MCImmigration>>
<<elseif _MCImmigration > 0>> <<if _MCImmigration > 1>>
<br>@@.green;One middle class citizen@@ moved to your arcology. <br>@@.green;<<print _MCImmigration>> middle class citizens@@ moved to your arcology.
<</if>> <<elseif _MCImmigration > 0>>
/*Middle Class Citizens emigrating*/ <br>@@.green;One middle class citizen@@ moved to your arcology.
<<elseif $middleClass > _MCD>> <</if>>
<<set _MCEmigration = Math.trunc(($middleClass - _MCD) * 0.6), /*Middle Class Citizens emigrating*/
$middleClass -= _MCEmigration>> <<elseif $middleClass > _MCD>>
<<if _MCEmigration > 1>> <<set _MCEmigration = Math.trunc(($middleClass - _MCD) * 0.6),
<br>@@.red;<<print _MCEmigration>> middle class citizens@@ left your arcology. $middleClass -= _MCEmigration>>
<<elseif _MCEmigration > 0>> <<if _MCEmigration > 1>>
<br>@@.red;One middle class citizen@@ left your arcology. <br>@@.red;<<print _MCEmigration>> middle class citizens@@ left your arcology.
<<elseif _MCEmigration > 0>>
<br>@@.red;One middle class citizen@@ left your arcology.
<</if>>
<</if>> <</if>>
<</if>> <</if>>
/*Upper Class Citizens*/ /*Upper Class Citizens*/
/*Demand for Upper Class*/ /*Demand for Upper Class*/
<<set _UCD = Math.trunc((($UCBase * ($localEcon / 100)) + ($arcologies[0].prosperity * 0.2) + _upperClass + ($NPCSlaves * 0.02) + ($lowerClass * 0.025) + (($middleClass + $visitors * 0.6) * 0.05) + ($topClass * 0.3)) * $rentEffectU * _upperClassP)>> <<set _UCD = Math.trunc((($UCBase * ($localEcon / 100)) + ($arcologies[0].prosperity * 0.2) + _upperClass + ($NPCSlaves * 0.02) + ($lowerClass * 0.025) + (($middleClass + $visitors * 0.6) * 0.05) + ($topClass * 0.3)) * $rentEffectU * _upperClassP)>>
/*Upper Class Citizens immigrating*/ <<if isNaN(_UCD)>>
<<if $upperClass < _UCD>> <br>@@.red;UCD is NaN, report this issue!@@
<<set _UCImmigration = Math.trunc((_UCD - $upperClass) * (0.3 * _terrain)) + 1, <<else>> /*Upper Class Citizens immigrating*/
$upperClass += _UCImmigration>> <<if $upperClass < _UCD>>
<<if _UCImmigration > 1>> <<set _UCImmigration = Math.trunc((_UCD - $upperClass) * (0.3 * _terrain)) + 1,
<br>@@.green;<<print _UCImmigration>> upper class citizens@@ moved to your arcology. $upperClass += _UCImmigration>>
<<elseif _UCImmigration > 0>> <<if _UCImmigration > 1>>
<br>@@.green;One upper class citizen@@ moved to your arcology. <br>@@.green;<<print _UCImmigration>> upper class citizens@@ moved to your arcology.
<</if>> <<elseif _UCImmigration > 0>>
/*Upper Class Citizens Emigrating*/ <br>@@.green;One upper class citizen@@ moved to your arcology.
<<elseif $upperClass > _UCD>> <</if>>
<<set _UCEmigration = Math.trunc(($upperClass - _UCD) * 0.6), /*Upper Class Citizens Emigrating*/
$upperClass -= _UCEmigration>> <<elseif $upperClass > _UCD>>
<<if _UCEmigration > 1>> <<set _UCEmigration = Math.trunc(($upperClass - _UCD) * 0.6),
<br>@@.red;<<print _UCEmigration>> upper class citizens@@ left your arcology. $upperClass -= _UCEmigration>>
<<elseif _UCEmigration > 0>> <<if _UCEmigration > 1>>
<br>@@.red;One upper class citizen@@ left your arcology. <br>@@.red;<<print _UCEmigration>> upper class citizens@@ left your arcology.
<<elseif _UCEmigration > 0>>
<br>@@.red;One upper class citizen@@ left your arcology.
<</if>>
<</if>> <</if>>
<</if>> <</if>>
...@@ -922,26 +941,31 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass * ...@@ -922,26 +941,31 @@ _SCD = Math.trunc(($upperClass * ($slaveDemandU + _slaveDemandU)) + ($topClass *
<<if _TCD < 15>> <<if _TCD < 15>>
<<set _TCD = 15>> <<set _TCD = 15>>
<</if>> <</if>>
/*Top Class Citizens immigrating*/ <<if isNaN(_TCD)>>
<<if $topClass < _TCD>> <br>@@.red;TCD is NaN, report this issue!@@
<<set _TCImmigration = Math.trunc((_TCD - $topClass) * (0.3 * _terrain)) + 1, <<else>> /*Top Class Citizens immigrating*/
$topClass += _TCImmigration>> <<if $topClass < _TCD>>
<<if _TCImmigration > 1>> <<set _TCImmigration = Math.trunc((_TCD - $topClass) * (0.3 * _terrain)) + 1,
<br>@@.green;<<print _TCImmigration>> millionaires@@ moved to your arcology. /*Fat Cat? One-Percenter?*/ $topClass += _TCImmigration>>
<<elseif _TCImmigration > 0>> <<if _TCImmigration > 1>>
<br>@@.green;One millionaire@@ moved to your arcology. <br>@@.green;<<print _TCImmigration>> millionaires@@ moved to your arcology. /*Fat Cat? One-Percenter?*/
<</if>> <<elseif _TCImmigration > 0>>
/*Top Class Citizens emigrating*/ <br>@@.green;One millionaire@@ moved to your arcology.
<<elseif $topClass > _TCD>> <</if>>
<<set _TCEmigration = Math.trunc(($topClass - _TCD) * 0.6) + 1, /*Top Class Citizens emigrating*/
$topClass -= _TCEmigration>> <<elseif $topClass > _TCD>>
<<if _TCEmigration > 1>> <<set _TCEmigration = Math.trunc(($topClass - _TCD) * 0.6) + 1,
<br>@@.red;<<print _TCEmigration>> millionaires@@ left your arcology. $topClass -= _TCEmigration>>
<<elseif _TCEmigration > 0>> <<if _TCEmigration > 1>>
<br>@@.red;One millionaire@@ left your arcology. <br>@@.red;<<print _TCEmigration>> millionaires@@ left your arcology.
<<elseif _TCEmigration > 0>>
<br>@@.red;One millionaire@@ left your arcology.
<</if>>
<</if>> <</if>>
<</if>> <</if>>
<</if>> /*ends _weatherFreeze*/ <</if>> /*ends _weatherFreeze*/
<<if $secExp == 1>> <<if $secExp == 1>>
<<set $ASlaves = $NPCSlaves + $helots + $fuckdolls + $menialBioreactors + $secHelots + $slavesEmployedManpower>> <<set $ASlaves = $NPCSlaves + $helots + $fuckdolls + $menialBioreactors + $secHelots + $slavesEmployedManpower>>
<<else>> <<else>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment