Skip to content
Snippets Groups Projects
Commit 815a4ea5 authored by corncobman21's avatar corncobman21
Browse files

Fix error

parent 7c3ffef9
No related branches found
No related tags found
1 merge request!1271Add text and slight rep bonuses/hits for advertising / preference matches.
...@@ -504,7 +504,7 @@ ...@@ -504,7 +504,7 @@
<<if ($arcologies[0].FSAssetExpansionist != "unset") && ($arcologies[0].FSAssetExpansionist >= 80)>> <<if ($arcologies[0].FSAssetExpansionist != "unset") && ($arcologies[0].FSAssetExpansionist >= 80)>>
Most customers prefer stacked girls. Most customers prefer stacked girls.
<<set _pref = 1>> <<set _pref = 1>>
<<elseif ($arcologies[0].FSSlimnessEnthusiast != "unset") && ($arcologies[0].FSSlimnessEnthusiast >= 80) >> <<elseif ($arcologies[0].FSSlimnessEnthusiast != "unset") && ($arcologies[0].FSSlimnessEnthusiast >= 80) >>
Most customers prefer slim girls. Most customers prefer slim girls.
<<set _pref = -1>> <<set _pref = -1>>
<<else>> <<else>>
...@@ -526,13 +526,13 @@ ...@@ -526,13 +526,13 @@
<<elseif (_stacked > (_DL/2))>> <<elseif (_stacked > (_DL/2))>>
<<set _girls = 1>> <<set _girls = 1>>
Most of the the slaves in the brothel are stacked.<br> Most of the the slaves in the brothel are stacked.<br>
<<elseif (_slim > 0) && (_stacked > 0) && (Math.abs(_slim-_stacked) <= (_DL/3))>> <<else>>
<<set _girls = 0>> <<set _girls = 0>>
The slaves in the brothel vary in slimness.<br> The slaves in the brothel vary in slimness.<br>
<</if>> <</if>>
<<if (_pref == 0)>> /*customers don't care*/ <<if (_pref == 0)>> /*customers don't care*/
<<elseif ($brothelAdsSpending > 0)>> <<elseif ($brothelAdsSpending > 0)>>
<<elseif (_ads == _pref) && (_girls == _ads)>> <<if (_ads == _pref) && (_girls == _ads)>>
<<set _adsIncome = _DL*random(20,30), $cash += _adsIncome, $facility.brothel.adsIncome += _adsIncome, _brothelBonuses++>> <<set _adsIncome = _DL*random(20,30), $cash += _adsIncome, $facility.brothel.adsIncome += _adsIncome, _brothelBonuses++>>
Its advertising for <<if _ads == 1>>stacked <<elseif _ads == -1>>slim <</if>>girls matched most customers' preferences and the girls in the brothel matched its advertisements. Your @@.green;reputation@@ increased slightly as a result. Its advertising for <<if _ads == 1>>stacked <<elseif _ads == -1>>slim <</if>>girls matched most customers' preferences and the girls in the brothel matched its advertisements. Your @@.green;reputation@@ increased slightly as a result.
<<set $rep += random(_minBonus,_maxBonus)>> <<set $rep += random(_minBonus,_maxBonus)>>
...@@ -572,7 +572,7 @@ ...@@ -572,7 +572,7 @@
<<if ($arcologies[0].FSRepopulationFocus != "unset") && ($arcologies[0].FSRepopulationFocus >= 80)>> <<if ($arcologies[0].FSRepopulationFocus != "unset") && ($arcologies[0].FSRepopulationFocus >= 80)>>
Most customers prefer girls with big bellies. Most customers prefer girls with big bellies.
<<set _pref = 1>> <<set _pref = 1>>
<<elseif ($arcologies[0].FSRestart != "unset") && ($arcologies[0].FSRestart >= 80) >> <<elseif ($arcologies[0].FSRestart != "unset") && ($arcologies[0].FSRestart >= 80) >>
Most customers prefer girls with flat bellies. Most customers prefer girls with flat bellies.
<<set _pref = -1>> <<set _pref = -1>>
<<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