Skip to content
Snippets Groups Projects
Verified Commit d7d6273d authored by bcy603's avatar bcy603
Browse files

Fixing unescaped function call

Fixes unescaped function call.
parent 7fdc21e2
No related branches found
No related tags found
1 merge request!7839Fixing unescaped function call
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<<set $nextButton = "Back", $nextLink = "Remote Surgery", $impregnatrix = 0, _eligibility = 0, _eligibilityI = 0>> <<set $nextButton = "Back", $nextLink = "Remote Surgery", $impregnatrix = 0, _eligibility = 0, _eligibilityI = 0>>
//getSlave($AS).slaveName is prepped for fertilization; now you must select a target to harvest sperm from.// //<<= getSlave($AS).slaveName>> is prepped for fertilization; now you must select a target to harvest sperm from.//
<br><br> <br><br>
...@@ -49,4 +49,4 @@ __Select an eligible slave to serve as the semen donatrix:__ ...@@ -49,4 +49,4 @@ __Select an eligible slave to serve as the semen donatrix:__
<br> <br>
[[Use a vial of your own|Surgery Degradation][$impregnatrix = $PC, cashX(forceNeg($surgeryCost), "slaveSurgery", getSlave($AS)), $surgeryType = "insemination", $PC.storedCum--]] [[Use a vial of your own|Surgery Degradation][$impregnatrix = $PC, cashX(forceNeg($surgeryCost), "slaveSurgery", getSlave($AS)), $surgeryType = "insemination", $PC.storedCum--]]
//You have enough sperm stored away to inseminate $PC.storedCum more slave<<if $PC.storedCum > 1>>s<</if>>.// //You have enough sperm stored away to inseminate $PC.storedCum more slave<<if $PC.storedCum > 1>>s<</if>>.//
<</if>> <</if>>
\ No newline at end of file
...@@ -37,7 +37,7 @@ Genetic Modification ...@@ -37,7 +37,7 @@ Genetic Modification
The fabricator is capable of producing treatments to permanently reverse aging. The fabricator is capable of producing treatments to permanently reverse aging.
<br> <br>
<<elseif $cash >= 50000000>> <<elseif $cash >= 50000000>>
[Fund the immortality project|Gene Lab][cashX(forceNeg(50000000), "capEx"), $immortalityFormula = 1]] [[Fund the immortality project|Gene Lab][cashX(forceNeg(50000000), "capEx"), $immortalityFormula = 1]]
//Costs <<print cashFormat(50000000)>>// //Costs <<print cashFormat(50000000)>>//
<br>&nbsp;&nbsp;&nbsp;&nbsp;//Will keep a slave at their prime physical age// <br>&nbsp;&nbsp;&nbsp;&nbsp;//Will keep a slave at their prime physical age//
<br> <br>
...@@ -75,4 +75,4 @@ Genetic Harvesting ...@@ -75,4 +75,4 @@ Genetic Harvesting
<<elseif ($cloningSystem > 0)>> <<elseif ($cloningSystem > 0)>>
The gene lab is capable of implanting a slave's genetic sequence into a blank embryo to produce a basic clone. [[Make a clone|Cloning Workaround][$donatrix = "Undecided", $receptrix = "Undecided"]] The gene lab is capable of implanting a slave's genetic sequence into a blank embryo to produce a basic clone. [[Make a clone|Cloning Workaround][$donatrix = "Undecided", $receptrix = "Undecided"]]
<br> <br>
<</if>> <</if>>
\ No newline at end of file
:: Discard Confirm [nobr] :: Discard Confirm [nobr]
This will permanently remove getSlave($AS).slaveName from the game, and you will not receive any money for $him. This is primarily intended as a way to rid yourself of bugged slaves. Are you certain? This will permanently remove <<= getSlave($AS).slaveName>> from the game, and you will not receive any money for $him. This is primarily intended as a way to rid yourself of bugged slaves. Are you certain?
<br><br> <br><br>
......
...@@ -17,7 +17,7 @@ that are ready be sent down. ...@@ -17,7 +17,7 @@ that are ready be sent down.
<h1>Implant Organs</h1> <h1>Implant Organs</h1>
<<set _F = App.Medicine.OrganFarm>> <<set _F = App.Medicine.OrganFarm>>
<<for _i = 0; _i < $slaves.length; _i++>> <<for _i = 0; _i < $slaves.length; _i++>>
<<set $AS = $slaves[_i].ID>> <<set $AS = $slaves[_i].ID>>
<<set _sortedOrgans = _F.getSortedOrgans(getSlave($AS))>> <<set _sortedOrgans = _F.getSortedOrgans(getSlave($AS))>>
<<if _sortedOrgans.length === 0>><<continue>><</if>> <<if _sortedOrgans.length === 0>><<continue>><</if>>
...@@ -77,7 +77,7 @@ that are ready be sent down. ...@@ -77,7 +77,7 @@ that are ready be sent down.
*/ */
<<if getSlave($AS).health.health - (_prostheticCount * 20) < -75>> <<if getSlave($AS).health.health - (_prostheticCount * 20) < -75>>
<br><hr> <br><hr>
@@.red;Estimated health impact too great; getSlave($AS).slaveName skipped.@@ @@.red;Estimated health impact too great; <<= getSlave($AS).slaveName>> skipped.@@
<<continue>> <<continue>>
<</if>> <</if>>
......
...@@ -1797,7 +1797,7 @@ __Bids Received__ ...@@ -1797,7 +1797,7 @@ __Bids Received__
<<if getSlave($AS).devotion <= 20>> <<if getSlave($AS).devotion <= 20>>
<<if getSlave($AS).trust < 20>> <<if getSlave($AS).trust < 20>>
<<if random(1,100) > 70>> <<if random(1,100) > 70>>
<br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with a strongly held belief that getSlave($AS).race people should not be slaves. He devotes as much of his resources as he can to manumission of such <<= $girl>>s, concentrating on the downtrodden. <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with a strongly held belief that <<= getSlave($AS).race>> people should not be slaves. He devotes as much of his resources as he can to manumission of such <<= $girl>>s, concentrating on the downtrodden.
<<link "Accept bid" "Slave Sold">> <<link "Accept bid" "Slave Sold">>
<<set _Price = 500*Math.trunc((_slaveCost*1.25)/500)>> <<set _Price = 500*Math.trunc((_slaveCost*1.25)/500)>>
<<run cashX(_Price, "slaveTransfer", getSlave($AS))>> <<run cashX(_Price, "slaveTransfer", getSlave($AS))>>
...@@ -1813,7 +1813,7 @@ __Bids Received__ ...@@ -1813,7 +1813,7 @@ __Bids Received__
<<if getSlave($AS).intelligence+getSlave($AS).intelligenceImplant < -50>> <<if getSlave($AS).intelligence+getSlave($AS).intelligenceImplant < -50>>
<<if getSlave($AS).ovaries == 1>> <<if getSlave($AS).ovaries == 1>>
<<if random(1,100) > 70>> <<if random(1,100) > 70>>
<br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of getSlave($AS).race people with natural, unquestioning obedience. He clearly considers $him good stock for the project. <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of <<= getSlave($AS).race>> people with natural, unquestioning obedience. He clearly considers $him good stock for the project.
<<link "Accept bid" "Slave Sold">> <<link "Accept bid" "Slave Sold">>
<<set _Price = 500*Math.trunc((_slaveCost*1.25)/500)>> <<set _Price = 500*Math.trunc((_slaveCost*1.25)/500)>>
<<run cashX(_Price, "slaveTransfer", getSlave($AS))>> <<run cashX(_Price, "slaveTransfer", getSlave($AS))>>
......
This diff is collapsed.
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