From 8f20624c6b69d74e28ffc40f8bf3f0214346864c Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Sun, 12 Jan 2020 00:47:50 -0800 Subject: [PATCH] tempSlaveCost --- src/Corporation/corporateMarket.tw | 10 +- src/npc/acquisition.tw | 12 +- src/npc/startingGirls/startingGirls.tw | 16 +- .../JobFulfillmentCenterDelivery.tw | 10 +- src/pregmod/criminalMarkets.tw | 16 +- src/pregmod/eliteSlave.tw | 8 +- src/pregmod/huskSlaveSwap.tw | 4 +- src/pregmod/nuevaUniversidadDeLibertad.tw | 10 +- src/pregmod/pRaped.tw | 6 +- src/pregmod/seFCTVshows.tw | 20 +- src/pregmod/theCattleRanch.tw | 10 +- src/pregmod/theHippolytaAcademy.tw | 10 +- src/pregmod/wetwareCPUs.tw | 6 +- src/uncategorized/bulkSlaveGenerate.tw | 16 +- src/uncategorized/completeCatalog.tw | 12 +- src/uncategorized/genericPlotEvents.tw | 12 +- src/uncategorized/growthResearchInstitute.tw | 10 +- src/uncategorized/householdLiquidator.tw | 30 +- src/uncategorized/lecoleDesEnculees.tw | 10 +- src/uncategorized/pCoupAttempt.tw | 8 +- src/uncategorized/pInvasion.tw | 8 +- src/uncategorized/pMercenaryRomeo.tw | 10 +- src/uncategorized/pRaidResult.tw | 8 +- src/uncategorized/pSnatchAndGrabResult.tw | 4 +- src/uncategorized/prestigiousSlave.tw | 8 +- src/uncategorized/reBoomerang.tw | 10 +- src/uncategorized/reFSAcquisition.tw | 200 +++++----- .../reFSEgyptianRevivalistAcquisition.tw | 6 +- src/uncategorized/reMalefactor.tw | 8 +- src/uncategorized/reRecruit.tw | 12 +- src/uncategorized/reRelativeRecruiter.tw | 12 +- src/uncategorized/reShippingContainer.tw | 8 +- src/uncategorized/recETS.tw | 38 +- src/uncategorized/resFailure.tw | 34 +- src/uncategorized/seCustomSlaveDelivery.tw | 10 +- src/uncategorized/seExpiration.tw | 18 +- src/uncategorized/seRecruiterSuccess.tw | 8 +- src/uncategorized/sellSlave.tw | 376 +++++++++--------- src/uncategorized/slaveMarkets.tw | 10 +- src/uncategorized/slaveShelter.tw | 8 +- src/uncategorized/slaveSold.tw | 6 +- src/uncategorized/specialSlave.tw | 12 +- src/uncategorized/stClaverPreparatory.tw | 10 +- src/uncategorized/theFutanariSisters.tw | 12 +- src/uncategorized/theGymnasiumAcademy.tw | 10 +- src/uncategorized/theSlavegirlSchool.tw | 10 +- src/utility/slaveCreationWidgets.tw | 38 +- 47 files changed, 565 insertions(+), 565 deletions(-) diff --git a/src/Corporation/corporateMarket.tw b/src/Corporation/corporateMarket.tw index 7bb09e73b1c..51e4a883d8b 100644 --- a/src/Corporation/corporateMarket.tw +++ b/src/Corporation/corporateMarket.tw @@ -89,16 +89,16 @@ while you browse. <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += $slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += _slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>><</if>> <<if $corpMarket == 1>> Your own local franchise of your corporation allows you to enjoy a discount. - <<set $slaveCost *= 0.9>> + <<set _slaveCost *= 0.9>> <</if>> -<<set $slaveCost = 500*Math.trunc($slaveCost/500)>> -The offered price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<set _slaveCost = 500*Math.trunc(_slaveCost/500)>> +The offered price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <br> <<setLocalPronouns $activeSlave>> <<buyingFromMarketControls>> diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index 9fb7894707f..9c284ff67bc 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -684,11 +684,11 @@ The previous owner seems to have left in something of a hurry. ERROR: bad arcology type <</switch>> <<set $activeSlave.origin = "You acquired $him along with the arcology.", $activeSlave.career = "a slave">> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <<if ["AztecRevivalist", "ChineseRevivalist", "Eugenics", "SlaveProfessionalism"].includes($targetArcology.type)>> - <<set _valueGiven += $slaveCost*4>> + <<set _valueGiven += _slaveCost*4>> <<else>> - <<set _valueGiven += $slaveCost>> + <<set _valueGiven += _slaveCost>> <</if>> <<run newSlave($activeSlave)>> <</for>> @@ -761,12 +761,12 @@ The previous owner seems to have left in something of a hurry. <</if>> <<set $activeSlave = App.Utils.getHeroSlave($heroSlaves[$j], $baseHeroSlave)>> <<run $heroSlaves.splice($j,1)>> - <<set $slaveCost = slaveCost($activeSlave)>> - <<if _valueGiven + $slaveCost < _valueOwed*2>> + <<set _slaveCost = slaveCost($activeSlave)>> + <<if _valueGiven + _slaveCost < _valueOwed*2>> <<run nationalityToAccent($activeSlave)>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> - <<set _valueGiven += $slaveCost>> + <<set _valueGiven += _slaveCost>> <<run newSlave($activeSlave)>> <<setLocalPronouns $activeSlave>> <<if $activeSlave.fetish == "mindbroken">> diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index 314c928f1b1..91b712e6413 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -1598,8 +1598,8 @@ __You are customizing this slave:__ <</options>> <br> -<<set $slaveCost = startingSlaveCost($activeSlave)>> -<<if $cash >= $slaveCost>> +<<set _slaveCost = startingSlaveCost($activeSlave)>> +<<if $cash >= _slaveCost>> <<if $activeSlave.prestige>> <<set $activeSlave.prestige = Math.clamp($activeSlave.prestige,0,3)>> <<else>> @@ -1620,8 +1620,8 @@ __You are customizing this slave:__ <br> <<link "Add this slave">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 1, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> //This will apply your @@.springgreen;career bonus@@ to her: @@ -1651,16 +1651,16 @@ __You are customizing this slave:__ <br> <<link "Add slave without career bonus">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 0, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> <<else>> <br> <<link "Add this slave">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 0, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> <br> diff --git a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw index 1d44c9aed76..4ce2db4a853 100644 --- a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw +++ b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw @@ -3,8 +3,8 @@ <<set $JFCOrder = 0, $nextButton = "Continue", $nextLink = "Scheduled Event", $returnTo = "Scheduled Event", $showEncyclopedia = 1, $encyclopedia = "Enslaving People">> <<JFCSlave>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost = $slaveCost*6>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = _slaveCost*6>> <<setLocalPronouns $activeSlave>> A slave dealer has submitted a slave to satisfy your ''$Role'' order. @@ -13,12 +13,12 @@ A slave dealer has submitted a slave to satisfy your ''$Role'' order. <br><br><<set $saleDescription = 1, $applyLaw = 0>><<include "Long Slave Description">> -<br><br>$His price is <<print cashFormat($slaveCost)>>. +<br><br>$His price is <<print cashFormat(_slaveCost)>>. <br><br><span id="result"> -<<if $cash >= $slaveCost>> +<<if $cash >= _slaveCost>> <<link "Accept the offered slave">> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<replace "#result">> $He has been very well trained by the dealer that offered $him to you. $He has also picked up on the fact that $he was specially selected, and is a little hopeful that this means $he may be treated well. $He is now eagerly awaiting your instructions. <<include "New Slave Intro">> diff --git a/src/pregmod/criminalMarkets.tw b/src/pregmod/criminalMarkets.tw index 586f4e89943..748463c9075 100644 --- a/src/pregmod/criminalMarkets.tw +++ b/src/pregmod/criminalMarkets.tw @@ -45,19 +45,19 @@ You board the transport to <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -It will cost <<print cashFormat($slaveCost)>> to enslave $him. +It will cost <<print cashFormat(_slaveCost)>> to enslave $him. <br>[[Inspect a different prisoner|Criminal Market][$slavesSeen += 1]] -<<if $cash >= $slaveCost>> - <br>[["Enslave " + $him + " and check out other available prisoners"|Criminal Market][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] +<<if $cash >= _slaveCost>> + <br>[["Enslave " + $him + " and check out other available prisoners"|Criminal Market][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[["Enslave " + $him|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] + <br>[["Enslave " + $him|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> - <br>[["Enslave " + $him + " and finish your inspection"|Bulk Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave)]] + <br>[["Enslave " + $him + " and finish your inspection"|Bulk Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to enslave this criminal.// @@ -69,4 +69,4 @@ It will cost <<print cashFormat($slaveCost)>> to enslave $him. <br><br> <<set $saleDescription = 1>><<include "Long Slave Description">> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> diff --git a/src/pregmod/eliteSlave.tw b/src/pregmod/eliteSlave.tw index 78b94852c06..816c9ebe7df 100644 --- a/src/pregmod/eliteSlave.tw +++ b/src/pregmod/eliteSlave.tw @@ -225,15 +225,15 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.breedingMark = 1>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <br><br> -It will take <<print cashFormat($slaveCost)>> to win the auction. +It will take <<print cashFormat(_slaveCost)>> to win the auction. <br><br> -<<if $cash >= $slaveCost>> - [[Place that bid|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] +<<if $cash >= _slaveCost>> + [[Place that bid|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> //You lack the necessary funds to place a winning bid.// <</if>> diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw index 6acde5a7928..aca2a51ec90 100644 --- a/src/pregmod/huskSlaveSwap.tw +++ b/src/pregmod/huskSlaveSwap.tw @@ -16,8 +16,8 @@ After an honestly impressive procedure, $slaves[_m].slaveName is recovering nice <<BodySwapReaction $slaves[_m] _oldSlave>> <br><br> -<<set $slaveCost = slaveCost(_oldSlave)>> -<<set _payout = Math.trunc($slaveCost/3)>> +<<set _slaveCost = slaveCost(_oldSlave)>> +<<set _payout = Math.trunc(_slaveCost/3)>> $slaves[_m].slaveName's old body was bought by the Flesh Heap for <<print cashFormat(_payout)>>. <<if $slaves[_m].bodySwap > 0>> <<set _myBody = $slaves.findIndex(function(s) { return s.origBodyOwnerID == $slaves[_m].ID; })>> diff --git a/src/pregmod/nuevaUniversidadDeLibertad.tw b/src/pregmod/nuevaUniversidadDeLibertad.tw index 4ca02680770..d37f3781643 100644 --- a/src/pregmod/nuevaUniversidadDeLibertad.tw +++ b/src/pregmod/nuevaUniversidadDeLibertad.tw @@ -12,15 +12,15 @@ <br><br>Nueva Universidad de Libertad offers a fresh graduate for inspection via video call. The interview takes place in said graduate's dormitory. The room is sparse and utilitarian, and immaculately clean. Likely by design, it looks like the set from an old sci-fi movie. <<= generateMarketSlave("NUL")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $NUL.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $NUL.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $NUL "slave" "slaves">> diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index 48ae2849a1a..2d3f02c4856 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -233,10 +233,10 @@ While returning from a meeting with a prospective investor, an unfortunate wrong Now the only question is what to do with the would-be rapist. You could toss them out of the arcology, but it might be more fun to turn the tables on $him. <<set _ContractCost = 1000>> - <<set $slaveCost = slaveCost($activeSlave)>> - <<set $slaveCost -= 1000>> + <<set _slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost -= 1000>> <br> - //Applying enslavement as punishment will cost <<print cashFormat(_ContractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat($slaveCost)>>.// + //Applying enslavement as punishment will cost <<print cashFormat(_ContractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat(_slaveCost)>>.// <br> <<set $saleDescription = 1>> <<include "Long Slave Description">> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index a2880abfa1a..76ae010f85d 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -1,4 +1,4 @@ -:: SE FCTV Shows [nobr] +:: SE FCTV Shows [nobr] <<set $nextButton = "Continue", $nextLink = "Scheduled Event", $returnTo = "Scheduled Event", $showEncyclopedia = 1, $encyclopedia = "FCTV", _MSL = $MastSiIDs.length>> @@ -610,23 +610,23 @@ <<elseif $randShow == 9>> /* mpreg dickgirl */ a strong young $activeSlave.race $girl that retains $his cock and balls. $activeSlave.slaveName has something that makes $him special: thanks to medical science $he's got a @@.pink;functional ass womb.@@ That's right folks, this slave is fertile and can get knocked up if you inseminate $his asshole. That's pretty amazing, to be honest, and exceptionally rare. Don't let this opportunity slip by!" <</if>> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <<if $randShow < 3>> - <<set $slaveCost *= 1.3>> + <<set _slaveCost *= 1.3>> <<elseif $randShow == 4>> - <<set $slaveCost *= 2>> + <<set _slaveCost *= 2>> <<elseif $randShow == 6>> - <<set $slaveCost *= 0.7>> + <<set _slaveCost *= 0.7>> <<elseif $randShow > 6>> - <<set $slaveCost *= 1.3>> + <<set _slaveCost *= 1.3>> <</if>> - <<set $slaveCost = 500*Math.trunc($slaveCost/500)>> - The offered price is <<print cashFormat($slaveCost)>>. + <<set _slaveCost = 500*Math.trunc(_slaveCost/500)>> + The offered price is <<print cashFormat(_slaveCost)>>. - <<if $cash >= $slaveCost>> + <<if $cash >= _slaveCost>> <br> <<link "Buy $his slave contract">> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<set $nextLink = "Scheduled Event", $returnTo = "Scheduled Event">> <<goto "New Slave Intro">> <</link>> diff --git a/src/pregmod/theCattleRanch.tw b/src/pregmod/theCattleRanch.tw index ec16a51415e..ce0cd6693ad 100644 --- a/src/pregmod/theCattleRanch.tw +++ b/src/pregmod/theCattleRanch.tw @@ -12,15 +12,15 @@ <br><br>The Cattle Ranch parades a choice selection of cows for your viewing pleasure. You're free to do as you please to the slaves, as long as you don't cause lasting harm to them.<<if isFertile($PC) && $PC.preg != -1>> You can't help but notice the number of bulls lining up along the fence sniffing at you.<</if>> <<= generateMarketSlave("TCR")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $TCR.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $TCR.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $TCR "cow" "cattle">> diff --git a/src/pregmod/theHippolytaAcademy.tw b/src/pregmod/theHippolytaAcademy.tw index 43c12e34288..a9a3c60c50c 100644 --- a/src/pregmod/theHippolytaAcademy.tw +++ b/src/pregmod/theHippolytaAcademy.tw @@ -21,15 +21,15 @@ The Hippolyta Academy is one of the most famous slave bodyguarding schools in al <br><br>The Hippolyta Academy offers a fresh graduate for inspection. The interview takes place in one of the many training areas of the school, where the physical prowess of the candidate can be easily showcased. <<= generateMarketSlave("HA")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $HA.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.6)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.6)>> <<elseif $HA.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*1.2)>> + <<set _slaveCost = Math.trunc(_slaveCost*1.2)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $HA "slave" "slaves">> diff --git a/src/pregmod/wetwareCPUs.tw b/src/pregmod/wetwareCPUs.tw index ba84230706a..d1970d04a09 100644 --- a/src/pregmod/wetwareCPUs.tw +++ b/src/pregmod/wetwareCPUs.tw @@ -12,10 +12,10 @@ <br><br> <<= generateMarketSlave("wetware")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromMarketControls>> diff --git a/src/uncategorized/bulkSlaveGenerate.tw b/src/uncategorized/bulkSlaveGenerate.tw index f45535b08ee..94900663ec0 100644 --- a/src/uncategorized/bulkSlaveGenerate.tw +++ b/src/uncategorized/bulkSlaveGenerate.tw @@ -84,36 +84,36 @@ <<run generateMarketSlave($slaveMarket, $numArcology)>> <<set $slavesSeen++>> <<if $applyLaw == 0>> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <<else>> <<set _backup = $activeSlave>> /* backup newly generated slave */ <<silently>> <<include "Law Compliance">> /* includes CheckForGingering — slave stats may change, affecting price */ <</silently>> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <<run removeGingering()>> /* remove gingered state, if applied, so we can apply it again later */ <<set $activeSlave = _backup>> /* restore backup so we can apply Law Compliance again later */ <</if>> - /* Adjust $slaveCost according to $slavesSeen */ + /* Adjust _slaveCost according to $slavesSeen */ <<if $slavesSeen > $slaveMarketLimit>> - <<set $slaveCost += $slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>> + <<set _slaveCost += _slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>> <<if $introType == "inStock">> <<break>> <</if>> <</if>> /* Apply discount modifier */ - <<set $slaveCost = $discount*Math.trunc($slaveCost/500)>> + <<set _slaveCost = $discount*Math.trunc(_slaveCost/500)>> /* Charge the Player for the slave, or break out if cannot afford */ - <<if $cash < $slaveCost>> + <<if $cash < _slaveCost>> <<set _i = $numSlaves>> <<break>> <<else>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<set $newSlaves.push($activeSlave)>> - <<set $spent += $slaveCost>> + <<set $spent += _slaveCost>> <</if>> <</for>> diff --git a/src/uncategorized/completeCatalog.tw b/src/uncategorized/completeCatalog.tw index f5b325328aa..486b56209d1 100644 --- a/src/uncategorized/completeCatalog.tw +++ b/src/uncategorized/completeCatalog.tw @@ -82,18 +82,18 @@ <<set $saleDescription = 1>> <<include "Long Slave Description">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost = (10*Math.trunc(($slaveCost/10)*2))>> -<<if $slaveCost < 40000>> - <<set $slaveCost += random(20000,60000)>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = (10*Math.trunc((_slaveCost/10)*2))>> +<<if _slaveCost < 40000>> + <<set _slaveCost += random(20000,60000)>> <</if>> <<set $specialSlavesPriceOverride = 0>> <br><br> -The offered price is <<print cashFormat($slaveCost)>>. +The offered price is <<print cashFormat(_slaveCost)>>. <<link "Buy $his slave contract" "New Slave Intro">> <<set $activeSlave.weekAcquired = $week, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main", $specialSlave = 1>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <</link>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 97f88fba3a4..3553703c7a9 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -82,7 +82,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <<set $activeSlave.skill.anal = 15>> <<set $activeSlave.skill.whoring = 15>> <<set $activeSlave.addict = 2>> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <<elseif $PStrip == 2>> <<set $activeSlave.origin = "$He offered $himself to you, impressed by your handling of $his employment situation.">> <<set $activeSlave.career = "a prostitute">> @@ -108,7 +108,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <<set $activeSlave.nipplesPiercing = 1>> <<set $activeSlave.clitPiercing = 1>> <<set $activeSlave.hStyle = "strip">> - <<set $slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = slaveCost($activeSlave)>> <</if>> <<setLocalPronouns $activeSlave>> <<run Enunciate($activeSlave)>> @@ -117,7 +117,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <br><br> As you pass, a tired-looking streetwalker walking by wearing ripped jeans and a torn top offers $himself to you. $He's halfway through $his clumsy come-on before $he curses and rushes over to kneel at your feet. As $he does, $he shrieks, "You own thi<<s>> arcology! You — you offered to en<<s>>lave u<<s>> <<s>>tripper<<s>> when the old pla<<c>>e clo<<s>>ed down! Plea<<s>>e, plea<<s>>e, can I a<<cc>>ept? I'm <<s>>orry I didn't earlier. I'm <<s>>orry. I'll fucking do anything! Plea<<s>>e!" <br><br> - //Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat($slaveCost)>>.// + //Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat(_slaveCost)>>.// <br><br> <<set $saleDescription = 0>> <<include "Long Slave Description">> @@ -126,7 +126,7 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <br><br> As you pass, a pretty streetwalker walking by wearing an attractive club $girl outfit sidles up to you. $He's halfway through $his first flirty come-on before $he recognizes you. $He gasps and <<say>>s, "You own thi<<s>> arcology! <<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I wa<<s>> a <<s>>tripper here! Thank you <<s>>o much for helping u<<s>>. That money <<s>>et mo<<s>>t of u<<s>> up pretty well." $He hefts $his chest. "It bought me new boob<<s>>, that'<<s>> for <<s>>ure. <<S>>o, um," $he bites $his lip in indecision, "I hear —" $he hesitates and then the words come out in a rush. "I hear your $girl<<s>> do really well. I've <<s>>een them, they look good. Can I come?" You arch an eyebrow and begin to ask whether $he knows what that means. "Yep," $he interrupts. "I'll be your <<s>>e<<x>> <<s>>lave." <br><br> - //Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat($slaveCost)>>.// + //Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell $him. Less costs, this will bring in <<print cashFormat(_slaveCost)>>.// <br><br> <<set $saleDescription = 0>> <<include "Long Slave Description">> @@ -1384,8 +1384,8 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<link "Sell your captures immediately">> <<replace "#result">> <<for _genPlot = 0; _genPlot < _newSlaves.length; _genPlot++>> - <<set $slaveCost = slaveCost(_newSlaves[_genPlot])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_genPlot])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> Prisoners @@.green;sold.@@ <</replace>> diff --git a/src/uncategorized/growthResearchInstitute.tw b/src/uncategorized/growthResearchInstitute.tw index ba1445991f7..869d8babdf9 100644 --- a/src/uncategorized/growthResearchInstitute.tw +++ b/src/uncategorized/growthResearchInstitute.tw @@ -12,16 +12,16 @@ <br><br>GRI offers a fresh graduate for inspection via video call. The interview takes place in the graduate's bare-metal holding cell. Disturbingly, it is strongly reminiscent of an enclosure for a lab animal, only scaled up to contain a lab animal of human dimensions. <<= generateMarketSlave("GRI")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<setLocalPronouns $activeSlave>> <<if $GRI.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $GRI.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $GRI "slave" "slaves">> diff --git a/src/uncategorized/householdLiquidator.tw b/src/uncategorized/householdLiquidator.tw index 650c4b0576f..16a72613898 100644 --- a/src/uncategorized/householdLiquidator.tw +++ b/src/uncategorized/householdLiquidator.tw @@ -27,14 +27,14 @@ The household liquidator is offering a set of siblings for sale. As usual, you will only be permitted to inspect the older, but there is a guarantee that the younger will be similar. <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +The price is <<print cashFormat(_slaveCost*3)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <br><br> -<<if $cash >= $slaveCost*3>> - [[Buy their slave contract|Siblings Workaround][cashX(forceNeg($slaveCost*3), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "Main"]] +<<if $cash >= _slaveCost*3>> + [[Buy their slave contract|Siblings Workaround][cashX(forceNeg(_slaveCost*3), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "Main"]] <<else>> //You lack the necessary funds to buy these slaves.// <</if>> @@ -73,14 +73,14 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL The household liquidator is offering a mother and $his daughter for sale. As usual, you will only be permitted to inspect the mother, but there is a guarantee that the daughter will be similar. <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +The price is <<print cashFormat(_slaveCost*3)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <br><br> -<<if $cash >= $slaveCost*3>> - [[Buy their slave contract|Mother Daughter Workaround][cashX(forceNeg($slaveCost*3), "slaveTransfer", $activeSlave),"Continue",$nextLink = "Main"]] +<<if $cash >= _slaveCost*3>> + [[Buy their slave contract|Mother Daughter Workaround][cashX(forceNeg(_slaveCost*3), "slaveTransfer", $activeSlave),"Continue",$nextLink = "Main"]] <<else>> //You lack the necessary funds to buy these slaves.// <</if>> @@ -116,14 +116,14 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL The household liquidator is offering something special: identical twins. The markup is huge, but the merchandise isn't something you see every day. <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -The price is <<print cashFormat($slaveCost*4)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +The price is <<print cashFormat(_slaveCost*4)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <br><br> -<<if $cash >= $slaveCost*4>> - [[Buy their slave contract|Twins Workaround][cashX(forceNeg($slaveCost*4), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "Main"]] +<<if $cash >= _slaveCost*4>> + [[Buy their slave contract|Twins Workaround][cashX(forceNeg(_slaveCost*4), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "Main"]] <<else>> //You lack the necessary funds to buy these slaves.// <</if>> diff --git a/src/uncategorized/lecoleDesEnculees.tw b/src/uncategorized/lecoleDesEnculees.tw index f8e5d448eab..608f2a2856f 100644 --- a/src/uncategorized/lecoleDesEnculees.tw +++ b/src/uncategorized/lecoleDesEnculees.tw @@ -12,15 +12,15 @@ <br><br>L'École des Enculées offers a fresh graduate for inspection via video call. The interview takes place in the dormitory for the oldest class of girls. Absurdly sexual squeals repeatedly interrupt the call, making it very clear that someone close by the interviewee is experiencing a strong combination of anal pain and anal pleasure. <<= generateMarketSlave("LDE")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $LDE.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $LDE.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $LDE "slave" "slaves">> diff --git a/src/uncategorized/pCoupAttempt.tw b/src/uncategorized/pCoupAttempt.tw index a91ef12f38e..2a5d5360fb8 100644 --- a/src/uncategorized/pCoupAttempt.tw +++ b/src/uncategorized/pCoupAttempt.tw @@ -305,8 +305,8 @@ You are awakened in the middle of the night by a jolt that shakes the entire arc <<link "Sell your prisoners immediately">> <<replace "#result">> <<for _pca = 0; _pca < _newSlaves.length; _pca++>> - <<set $slaveCost = slaveCost(_newSlaves[_pca])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_pca])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> Prisoners sold. <</replace>> @@ -314,8 +314,8 @@ You are awakened in the middle of the night by a jolt that shakes the entire arc <br><<link "Give your prisoners to those who suffered property damage">> <<replace "#result">> <<for _pca = 0; _pca < _newSlaves.length; _pca++>> - <<set $slaveCost = slaveCost(_newSlaves[_pca])>> - <<run repX(Math.trunc($slaveCost/10), "war")>> + <<set _slaveCost = slaveCost(_newSlaves[_pca])>> + <<run repX(Math.trunc(_slaveCost/10), "war")>> <</for>> Prisoners @@.green;given away.@@ <</replace>> diff --git a/src/uncategorized/pInvasion.tw b/src/uncategorized/pInvasion.tw index 0960b0b99d5..24a97fc3a83 100644 --- a/src/uncategorized/pInvasion.tw +++ b/src/uncategorized/pInvasion.tw @@ -115,8 +115,8 @@ The loose militia lately organized by the arcology owners has been called out to <<link "Sell your prisoners immediately">> <<replace "#result">> <<for _i = 0; _i < _newSlaves.length; _i++>> - <<set $slaveCost = slaveCost(_newSlaves[_i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> Prisoners sold. <</replace>> @@ -124,8 +124,8 @@ The loose militia lately organized by the arcology owners has been called out to <br><<link "Give your prisoners to citizens who displayed bravery during the counterattack">> <<replace "#result">> <<for _i = 0; _i < _newSlaves.length; _i++>> - <<set $slaveCost = slaveCost(_newSlaves[_i])>> - <<run repX(Math.trunc($slaveCost/2), "event")>> + <<set _slaveCost = slaveCost(_newSlaves[_i])>> + <<run repX(Math.trunc(_slaveCost/2), "event")>> <</for>> Prisoners @@.green;given away.@@ <</replace>> diff --git a/src/uncategorized/pMercenaryRomeo.tw b/src/uncategorized/pMercenaryRomeo.tw index fa68a5f37fd..5e35069434a 100644 --- a/src/uncategorized/pMercenaryRomeo.tw +++ b/src/uncategorized/pMercenaryRomeo.tw @@ -23,9 +23,9 @@ <</if>> <<if _name == 0>> - <<set $slaveCost = slaveCost($activeSlave)>> - <<set $slaveCost = (random(60,70)*Math.trunc($slaveCost/100))>> - <<set $slaveCost = 100*Math.trunc($slaveCost/100)>> + <<set _slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = (random(60,70)*Math.trunc(_slaveCost/100))>> + <<set _slaveCost = 100*Math.trunc(_slaveCost/100)>> <<setLocalPronouns $activeSlave>> <</if>> <<setNonlocalPronouns $seeDicks>> @@ -61,7 +61,7 @@ proffered by an attentive slave _girlU, he seems almost bashful. <<else>> I've seen <<EventNameLink>> here and there and I can't stop thinking about $him. I feel $he'd make the years sit a little lighter on me. <</if>> - I've scraped together what I can, and I can pay <<print cashFormat($slaveCost)>>." It's a decent price, probably a little less than you could get at auction. It's a huge sum for a mercenary; it's probably his entire savings. You ask what he would do with $him. "Well," he says, actually blushing, "I'd free $him. And marry $him, if $he'd have me." + I've scraped together what I can, and I can pay <<print cashFormat(_slaveCost)>>." It's a decent price, probably a little less than you could get at auction. It's a huge sum for a mercenary; it's probably his entire savings. You ask what he would do with $him. "Well," he says, actually blushing, "I'd free $him. And marry $him, if $he'd have me." <br><br> @@ -104,7 +104,7 @@ proffered by an attentive slave _girlU, he seems almost bashful. As he <<if !isAmputee($activeSlave)>>gives<<else>>picks up $his limbless form to give<</if>> $him a hug, <</if>> $he gives the nearest camera a little nod and silently mouths the words "Thank you, <<= WrittenMaster($activeSlave)>>." Soon the romantic story of The Mercenary and the Slave $Girl is being told in bars and brothels across the Free City, with you naturally playing @@.green;a supporting role.@@ - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <</if>> <<unset $romeoID>> diff --git a/src/uncategorized/pRaidResult.tw b/src/uncategorized/pRaidResult.tw index 0611440099a..c7bbe5c81fd 100644 --- a/src/uncategorized/pRaidResult.tw +++ b/src/uncategorized/pRaidResult.tw @@ -50,8 +50,8 @@ Out ahead of the main body of refugees there is a small knot moving quickly and <<link "Sell your prisoners immediately">> <<replace "#result">> <<for _prr = 0; _prr < _newSlaves.length; _prr++>> - <<set $slaveCost = slaveCost(_newSlaves[_prr])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_prr])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> Prisoners sold. <</replace>> @@ -59,8 +59,8 @@ Out ahead of the main body of refugees there is a small knot moving quickly and <br><<link "Give your prisoners to citizens injured in the recent invasion">> <<replace "#result">> <<for _prr = 0; _prr < _newSlaves.length; _prr++>> - <<set $slaveCost = slaveCost(_newSlaves[_prr])>> - <<run repX(Math.trunc($slaveCost/10), "event")>> + <<set _slaveCost = slaveCost(_newSlaves[_prr])>> + <<run repX(Math.trunc(_slaveCost/10), "event")>> <</for>> Prisoners @@.green;given away.@@ <</replace>> diff --git a/src/uncategorized/pSnatchAndGrabResult.tw b/src/uncategorized/pSnatchAndGrabResult.tw index 4ec7f111c75..c6b31ac1386 100644 --- a/src/uncategorized/pSnatchAndGrabResult.tw +++ b/src/uncategorized/pSnatchAndGrabResult.tw @@ -131,8 +131,8 @@ <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<setLocalPronouns $activeSlave>> <<set $activeSlave.slaveCost = -10000>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index 0a52f1de693..e39942537d3 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -902,13 +902,13 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <</switch>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> -<br><br>It will take <<print cashFormat($slaveCost)>> to win the auction. +<br><br>It will take <<print cashFormat(_slaveCost)>> to win the auction. <br> -<<if $cash >= $slaveCost>> - [[Place that bid|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] +<<if $cash >= _slaveCost>> + [[Place that bid|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> //You lack the necessary funds to place a winning bid.// <</if>> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index d4be928cf5f..4e84a86560d 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -367,8 +367,8 @@ It isn't obvious how $he managed to escape, though no doubt you could review the <</if>> <<set _ContractCost = 5000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= _ContractCost>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= _ContractCost>> <br><br> @@ -378,7 +378,7 @@ It isn't obvious how $he managed to escape, though no doubt you could review the <span id="result"> <<link "Return $him">> - <<run repX(Math.trunc($slaveCost/2), "event", $activeSlave)>> + <<run repX(Math.trunc(_slaveCost/2), "event", $activeSlave)>> <<replace "#result">> $activeSlave.slaveName keeps waiting, but the doors to the penthouse never open. When $his owners arrive a few minutes later to collect $him, $he cries harder, but does not resist. $His weeping has the peculiar ring of utter hopelessness as they restrain $him and drag $him off. A few minutes after that, you receive a businesslike note @@.green;expressing gratitude@@ for your assistance in this matter. <<set $boomerangStats = 0>> @@ -485,12 +485,12 @@ It isn't obvious how $he managed to escape, though no doubt you could review the <</replace>> <</link>> //This will cost in <<print cashFormat(_ContractCost)>>.// <br><<link "Sell $him immediately">> - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<replace "#result">> The penthouse opens, and $activeSlave.slaveName stumbles inside, sobbing $his thanks. $He's immediately conducted to the autosurgery for some quick cosmetic surgery, while you and $assistantName do the necessary work to falsify the arcology records and conceal $his origins. Before $he's even out from under anesthesia, $he's bundled off into one of the hundreds of slave shipments that move between arcologies every day. This time $he'll be sold far enough away that no matter how much of an escape artist $he is, you won't be seeing any more of $him. $He can whine elsewhere. <<set $boomerangStats = 0>> <</replace>> -<</link>> //This will bring in <<print cashFormat($slaveCost)>>.// +<</link>> //This will bring in <<print cashFormat(_slaveCost)>>.// <<else>> //You lack the necessary funds to enslave $him.// <</if>> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index f4408f98fe6..bc12b1b9acd 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -44,8 +44,8 @@ <<set $activeSlave.lactationDuration = 2>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.boobs += 200*random(2,5)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Pastoralist Two">> @@ -64,8 +64,8 @@ <<set $activeSlave.vagina = 1>> <<set $activeSlave.boobs += 200*random(2,5)>> <<set $activeSlave.counter.birthsTotal = random(1,3)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Supremacist">> @@ -81,8 +81,8 @@ <<set $activeSlave.origin = "$He was captured and enslaved in a conflict zone and fenced to you by a mercenary group.">> <<set $activeSlave.devotion -= 40>> <<set $activeSlave.trust = random(-45,-25)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 2000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 2000>> <<case "Supremacist Two">> @@ -98,8 +98,8 @@ <<set $activeSlave.origin = "$He made the mistake of marrying into a $arcologies[0].FSSupremacistRace neighborhood and was kidnapped then sold to you.">> <<set $activeSlave.devotion -= 40>> <<set $activeSlave.trust = random(-45,-25)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 2000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 2000>> <<case "Subjugationist">> @@ -114,8 +114,8 @@ <<set $activeSlave.trust = random(-45,-25)>> <<set $activeSlave.devotion = random(-75,-65)>> <<set $activeSlave.anus = random(1,2)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Subjugationist Two">> @@ -129,8 +129,8 @@ <<set $activeSlave.trust = random(-25,-15)>> <<set $activeSlave.devotion = random(-45,-25)>> <<set $activeSlave.anus = random(1,2)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Gender Radicalist">> @@ -143,8 +143,8 @@ <<set $activeSlave.trust = random(0,10)>> <<set $activeSlave.anus = random(1,2)>> <<set $activeSlave.behavioralFlaw = "hates women">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Gender Radicalist Two">> @@ -160,8 +160,8 @@ <<set $activeSlave.trust = random(0,10)>> <<set $activeSlave.anus = random(1,2)>> <<set $activeSlave.behavioralFlaw = "hates women">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Gender Fundamentalist">> @@ -183,8 +183,8 @@ <<run SetBellySize($activeSlave)>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.trueVirgin = 1>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Gender Fundamentalist Two">> @@ -206,8 +206,8 @@ <<run SetBellySize($activeSlave)>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.counter.birthsTotal = random(1,3)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Paternalist">> @@ -225,8 +225,8 @@ <<if $activeSlave.physicalAge >= 12>> <<set $activeSlave.teeth = "normal">> <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Paternalist Two">> @@ -238,8 +238,8 @@ <<run setHealth($activeSlave, jsRandom(40, 60))>> <<set $activeSlave.devotion = random(25,45)>> <<set $activeSlave.trust = random(25,45)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Degradationist">> @@ -278,8 +278,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 2000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 2000>> <<case "Degradationist Two">> @@ -311,8 +311,8 @@ <<set $activeSlave.earPiercing = 1>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 2000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 2000>> <<case "Intellectual Dependency">> @@ -333,8 +333,8 @@ <<set $activeSlave.weight = random(-10,90)>> <<set $activeSlave.behavioralFlaw = "odd">> <<set $activeSlave.canRecruit = 0>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 2000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 2000>> <<case "Intellectual Dependency Two">> @@ -362,8 +362,8 @@ <<set $activeSlave.attrXY = 100>> <<set $activeSlave.addict = 50>> <<set $activeSlave.canRecruit = 0>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Slave Professionalism">> @@ -400,8 +400,8 @@ <<set $activeSlave.sexualFlaw = "none">> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<case "Slave Professionalism Two">> @@ -431,8 +431,8 @@ <<set $activeSlave.skill.combat = 1>> <<set $activeSlave.behavioralFlaw = "none">> <<set $activeSlave.sexualFlaw = "none">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Body Purist">> @@ -450,8 +450,8 @@ <<run setHealth($activeSlave, jsRandom(-20, 20))>> <<set $activeSlave.devotion = random(-15,15)>> <<set $activeSlave.trust = random(-15,15)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Body Purist Two">> @@ -466,8 +466,8 @@ <<run setHealth($activeSlave, jsRandom(-20, 20), 0, 0, 0, jsRandom(10, 30))>> <<set $activeSlave.devotion = random(-15,15)>> <<set $activeSlave.trust = random(-15,15)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Youth Preferentialist">> @@ -488,8 +488,8 @@ */ <<set $activeSlave.behavioralFlaw = either("anorexic", "devout", "gluttonous", "hates men", "hates women", "odd")>> <<set $activeSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "repressed", "shamefast")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Youth Preferentialist Two">> @@ -510,8 +510,8 @@ <<set $activeSlave.butt -= random(0,1)>> <<set $activeSlave.behavioralFlaw = either("anorexic", "gluttonous", "odd")>> <<set $activeSlave.sexualFlaw = either("apathetic", "repressed")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Maturity Preferentialist">> @@ -539,8 +539,8 @@ <<set $activeSlave.behavioralFlaw = "none">> <<set $activeSlave.sexualFlaw = "none">> <<set $activeSlave.energy = random(80,90)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Maturity Preferentialist Two">> @@ -567,8 +567,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.counter.birthsTotal = 1>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<case "Petite Admiration">> @@ -594,8 +594,8 @@ <<set $activeSlave.waist = -10>> <<set $activeSlave.devotion = random(15,20)>> <<set $activeSlave.trust = random(0,10)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Petite Admiration Two">> @@ -636,8 +636,8 @@ <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.sexualFlaw = "none">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<case "Statuesque Glorification">> @@ -649,8 +649,8 @@ <<set $activeSlave.geneticQuirks.gigantism = 2>> <<set $activeSlave.devotion = random(15,20)>> <<set $activeSlave.trust = random(0,10)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Statuesque Glorification Two">> @@ -662,8 +662,8 @@ <<set $activeSlave.shoes = "extreme heels">> <<set $activeSlave.devotion = random(30,45)>> <<set $activeSlave.trust = random(-20,0)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Transformation Fetishist">> @@ -694,8 +694,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Transformation Fetishist Two">> @@ -722,8 +722,8 @@ <<run setHealth($activeSlave, jsRandom(-60, -40), normalRandInt(10, 3), normalRandInt(10, 3))>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Slimness Enthusiast">> @@ -750,8 +750,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = "arrogant">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<case "Slimness Enthusiast Two">> @@ -773,8 +773,8 @@ <<set $activeSlave.teeth = "normal">> <</if>> <<set $activeSlave.pubicHStyle = "waxed">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<case "Asset Expansionist">> @@ -796,8 +796,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.behavioralFlaw = either("anorexic", "odd")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Asset Expansionist Two">> @@ -819,8 +819,8 @@ <<run setHealth($activeSlave, jsRandom(-60, -50))>> <<set $activeSlave.intelligence = random(0,90)>> <<set $activeSlave.pubicHStyle = "waxed">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Physical Idealist">> @@ -837,8 +837,8 @@ <<set $activeSlave.trust = random(0,15)>> <<set $activeSlave.intelligence = random(-95,-56)>> <<set $activeSlave.intelligenceImplant = 0>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Physical Idealist Two">> @@ -852,8 +852,8 @@ <<set $activeSlave.addict = 1>> <<set $activeSlave.devotion = random(0,15)>> <<set $activeSlave.trust = random(0,15)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Chattel Religionist">> @@ -868,8 +868,8 @@ <<set $activeSlave.trust = -100>> <<set $activeSlave.behavioralFlaw = "devout">> <<set $activeSlave.sexualFlaw = "repressed">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Chattel Religionist Two">> @@ -893,8 +893,8 @@ <</if>> <<set $activeSlave.behavioralFlaw = "devout">> <<set $activeSlave.sexualFlaw = "repressed">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Hedonistic Decadence">> @@ -940,8 +940,8 @@ <<set $activeSlave.shoes = "heels">> <<set $activeSlave.inflation = 3, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>> <<run SetBellySize($activeSlave)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Hedonistic Decadence Two">> @@ -964,8 +964,8 @@ <<set $activeSlave.vagina = 0>> <<set $activeSlave.trueVirgin = 1>> <<set $activeSlave.anus = 0>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Repopulation Efforts">> @@ -990,8 +990,8 @@ <<set $activeSlave.preg = 0>> <<set $activeSlave.pregType = 0>> <<set $activeSlave.fetish = "pregnancy">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Repopulation Efforts Two">> @@ -1013,8 +1013,8 @@ <<set $activeSlave.vagina = 2>> <<set $activeSlave.trueVirgin = 1>> <<set $activeSlave.preg = -2>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Eugenics">> @@ -1040,8 +1040,8 @@ <<set $activeSlave.trueVirgin = 1>> <<set $activeSlave.preg = 0>> <<set $activeSlave.behavioralFlaw = "arrogant">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Eugenics Two">> @@ -1062,8 +1062,8 @@ <<if $activeSlave.physicalAge >= 12>> <<set $activeSlave.teeth = "normal">> <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Roman Revivalist">> @@ -1088,8 +1088,8 @@ <<set $activeSlave.intelligence = random(16,95)>> <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.teeth = "normal">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Aztec Revivalist">> @@ -1114,8 +1114,8 @@ <<set $activeSlave.intelligence = random(16,95)>> <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.teeth = "normal">> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Edo Revivalist">> @@ -1151,8 +1151,8 @@ <</if>> <<set $activeSlave.behavioralFlaw = either("gluttonous", "liberated")>> <<set $activeSlave.sexualFlaw = either("apathetic", "idealistic", "none", "none", "shamefast")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Arabian Revivalist">> @@ -1176,8 +1176,8 @@ <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.teeth = "normal">> <<set $activeSlave.sexualFlaw = either("idealistic")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "Chinese Revivalist">> @@ -1201,8 +1201,8 @@ <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.teeth = "normal">> <<set $activeSlave.behavioralFlaw = either("arrogant")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <</switch>> @@ -1627,7 +1627,7 @@ The call comes in from an office, and you suppress the urge to check whether $as <</replace>> <</link>> //This will cost <<print cashFormat(_ContractCost)>>// <br><<link "Sell $him immediately">> - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<replace "#result">> <<switch $FSAcquisitionEvents>> <<case "Pastoralist">> @@ -1735,7 +1735,7 @@ The call comes in from an office, and you suppress the urge to check whether $as $He arrives and works $his way through the enslavement process, doing $his best to ingratiate $himself. When a buyer's agent arrives, $he immediately understands that $he has been sold. $He looks rueful for a moment, obviously realizing that you made no commitment not to do this, and that such a commitment would have been worthless in any case. $He transfers $his focus to the agent without hesitation, doing $his best to improve $his rapidly changing position. <</switch>> <</replace>> -<</link>> //This will bring in <<print cashFormat($slaveCost)>>// +<</link>> //This will bring in <<print cashFormat(_slaveCost)>>// <<else>> //You lack the necessary funds to enslave $him.// <</if>> diff --git a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw index 796339a312c..5069b96b6b3 100644 --- a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw +++ b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw @@ -18,8 +18,8 @@ <<set $activeSlave.physicalAge = $activeSlave.actualAge>> <<set $activeSlave.ovaryAge = $activeSlave.actualAge>> <<run setHealth($activeSlave, jsRandom(-20, 0))>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 3000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 3000>> <<if $familyTesting == 1>> <<set $activeSlave.mother = $missingParentID>> <<set $missingParentID-->> @@ -40,7 +40,7 @@ You receive so many messages, as a noted titan of the new Free Cities world, tha <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual — the callers seem stressed, but otherwise normal. They haltingly and quietly explain, with many nervous glances off-camera to ensure they are not overheard, that they are both siblings and lovers, and their attempts to keep the truth of the nature of their relationship from their friends, family, and society at large have failed. They had heard of $arcologies[0].name's reverence for incestuous relationships, and have managed to talk themselves into the questionable conclusion that their only chance to be together was for them to sell themselves to someone who would not just accept but encourage their incest — namely, you. <br><br> -//Enslaving them will cost <<print cashFormat($contractCost)>>. Selling them immediately will bring in approximately <<print cashFormat($slaveCost*2)>>.// +//Enslaving them will cost <<print cashFormat($contractCost)>>. Selling them immediately will bring in approximately <<print cashFormat(_slaveCost*2)>>.// <br><br> <<include "Long Slave Description">> <br><br> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index ad28e275c79..fe8eeabc7a8 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -377,10 +377,10 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin <br><br> <<set _ContractCost = 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> -//Applying enslavement as punishment will cost <<print cashFormat(_ContractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat($slaveCost)>>.// +//Applying enslavement as punishment will cost <<print cashFormat(_ContractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat(_slaveCost)>>.// <br><br> @@ -640,7 +640,7 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin <</link>> <</if>> <br><<link "Sell $him immediately">> - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<if $cash4Babies == 1 && $malefactor == "anchorBaby">> <<run cashX(random(20,30), "slaveTransfer")>> <</if>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index f7ba0c92c31..fddf8f0b24d 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -2515,10 +2515,10 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<default>> <<set _ContractCost = 1000>> <</switch>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= _ContractCost>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= _ContractCost>> <<if $recruit == "rogue cyborg">> - <<set $slaveCost += 300000>> + <<set _slaveCost += 300000>> <</if>> <br><br> @@ -2679,13 +2679,13 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "forbidden love">> <<default>> <br><<link "Sell $him immediately">> - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<replace "#result">> <<switch $recruit>> <<case "held POW">> You complete the legalities and biometric scanning quickly and without fuss; $his will to fight has long since broken. Although you do catch a faint glimmer of joy in $his eyes as you tell $him $he's been purchased by a notorious Pit Master and will likely spend the rest of $his life in combat. <<case "embryo appropriation">> - <<set _profit = $slaveCost*$activeSlave.pregType>> + <<set _profit = _slaveCost*$activeSlave.pregType>> <<run cashX(_profit, "slaveTransfer")>> $He sobs as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He tries to resist placing $his biometric signature in testament to the truth of $his debt, but when you observe that the alternative is the death of $him and $his unborn, $he complies. A purchasing agent appears to take $him away, but not after the slave breeder that bought $him paid a ludicrous amount of ¤ per child. An additional @@.yellowgreen;<<print cashFormat(_profit)>>@@ overall. <<case "rogue cyborg">> @@ -2745,7 +2745,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of Hours later, you receive a brief message from the facility that purchased $him. "150. One hundred and fifty babies. That is how many are crammed into that $girl. $He was a mere sixteen weeks along. If $he lives through this, we may have a record breaking breeder on our hands. Felt the need to pass that along, you might have made us quite a profit this year." <</switch>> <</replace>> - <</link>> //This will bring in <<print cashFormat($slaveCost)>>.// + <</link>> //This will bring in <<print cashFormat(_slaveCost)>>.// <</switch>> <<else>> //You lack the necessary funds to enslave $him.// diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw index 4be46e0b8d9..820951e9ef8 100644 --- a/src/uncategorized/reRelativeRecruiter.tw +++ b/src/uncategorized/reRelativeRecruiter.tw @@ -517,7 +517,7 @@ <<set $activeSlave.lastWeeksRepIncome = 0>> <<set $activeSlave.custom.desc = "">> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $activeSlave.slaveSurname>><<set _familyName = $activeSlave.slaveSurname>><</if>> <<set _familyBirthSurname = $activeSlave.birthSurname>> @@ -619,7 +619,7 @@ a<<s>> much a<<s>> I do. $He waits anxiously for your decision. <br><br> -You look up the _relationType. _He2 costs <<print cashFormat($slaveCost)>>, a bargain, but you won't be able to inspect _him2 beyond _his2 likely resemblance to _his2 +You look up the _relationType. _He2 costs <<print cashFormat(_slaveCost)>>, a bargain, but you won't be able to inspect _him2 beyond _his2 likely resemblance to _his2 <<switch _relationType>> <<case "daughter">> mother. _His2 listing states that _he2 was used as a prostitute by _his2 previous owner. @@ -644,7 +644,7 @@ You look up the _relationType. _He2 costs <<print cashFormat($slaveCost)>>, a ba <br><br> <span id="result"> <<link "Buy _him2">> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<switch _relationType>> <<case "daughter">> <<if _tempMF == "father">> @@ -1085,7 +1085,7 @@ You look up the _relationType. _He2 costs <<print cashFormat($slaveCost)>>, a ba <<set $activeSlave.lastWeeksRepIncome = 0>> <<set $activeSlave.custom.desc = "">> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $activeSlave.slaveSurname>><<set _familyName = $activeSlave.slaveSurname>><</if>> <<set _familyBirthSurname = $activeSlave.birthSurname>> @@ -1186,7 +1186,7 @@ $He waits anxiously for your decision. <br><br> -You look up the $activeSlave.relation. _He2 costs <<print cashFormat($slaveCost)>>, a bargain, but you won't be able to inspect _him2 beyond _his2 likely resemblance to _his2 <<print relationTargetWord($activeSlave)>>. +You look up the $activeSlave.relation. _He2 costs <<print cashFormat(_slaveCost)>>, a bargain, but you won't be able to inspect _him2 beyond _his2 likely resemblance to _his2 <<print relationTargetWord($activeSlave)>>. <br><br> @@ -1212,7 +1212,7 @@ You look up the $activeSlave.relation. _He2 costs <<print cashFormat($slaveCost) /* update $slaves[$i] (eventSlave) before calling any widgets */ <<set $slaves[$i].relation = relationTargetWord($activeSlave)>> <<set $slaves[$i].relationTarget = $activeSlave.ID>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<set $desc = SlaveTitle($eventSlave)>> You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName arrives shortly. The two slaves remember each other only dimly — they parted a long time ago — but they embrace. The devoted $desc explains the situation and encourages $his $activeSlave.relation to be a good slave to you. $activeSlave.slaveName looks a little fearful but clearly realizes that _he2's lucky to be here. <<include "New Slave Intro">> diff --git a/src/uncategorized/reShippingContainer.tw b/src/uncategorized/reShippingContainer.tw index b8152ab53ce..70e8dac19a8 100644 --- a/src/uncategorized/reShippingContainer.tw +++ b/src/uncategorized/reShippingContainer.tw @@ -40,8 +40,8 @@ For now, the crowd around you is looking at the helpless human cargo with <<link "Conduct an impromptu auction">> <<replace "#result">> <<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>> - <<set $slaveCost = slaveCost(_newSlaves[_reShip])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_reShip])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> Allowing humor into your voice, you announce an auction, to be held immediately. The crowd appreciates the wit, and @@.green;appreciates it even more@@ when you conduct the auction yourself. It's always good to take an opportunity to show off your understanding of the slave market in public. You @@.yellowgreen;sell them all,@@ sex slaves and menials alike. Welcome to the Free Cities. <<set $menials -= 25>> @@ -90,8 +90,8 @@ For now, the crowd around you is looking at the helpless human cargo with <br><<link "Indulge the crowd's Paternalism">> <<replace "#result">> <<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>> - <<set $slaveCost = slaveCost(_newSlaves[_reShip])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost(_newSlaves[_reShip])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <</for>> You hurry forward, beckoning the crowd to accompany you. The wretched slaves cringe with fear, but soon they're being comforted, offered water, and examined for injury. Once the most pressing needs are attended to, you call for everyone's attention. You pride yourself on knowing your citizens well, and you can pick good Paternalists out of the crowd at will. Calling them by name, you ask whether they'd be willing to take on one of these poor slaves. One by one, you pair slave and Master or Mistress, rewarding your best people with public approbation, not to mention a free slave. The initial gasps of surprise quickly grow into @@.green;thunderous applause.@@ Your people love you. Several of the slaves begin to cry, mostly from confusion or sheer exhaustion; they don't yet know how lucky they are. <<set $menials -= 25>> diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw index fd718ea218a..a47d3633661 100644 --- a/src/uncategorized/recETS.tw +++ b/src/uncategorized/recETS.tw @@ -56,8 +56,8 @@ <<set $activeSlave.relationTarget = $activeSlave.ID + 1000>> <</if>> <<set $activeSlave.counter.birthsTotal += 1>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1000>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1000>> <<case "posh mother daughter">> @@ -99,8 +99,8 @@ <<set $activeSlave.relation = "mother">> <<set $activeSlave.relationTarget = $activeSlave.ID + 1000>> <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1500>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1500>> <<case "incest mother son">> @@ -503,8 +503,8 @@ <</if>> <<set $activeSlave.rivalry = 3>> <<set $activeSlave.rivalryTarget = $activeSlave.ID + 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1500>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1500>> <<case "matched pair">> @@ -555,8 +555,8 @@ <<set $activeSlave.relationTarget = $activeSlave.ID + 1000>> <<set $activeSlave.relationship = 2>> <<set $activeSlave.relationshipTarget = $activeSlave.ID + 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set _ContractCost = $slaveCost*2>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _ContractCost = _slaveCost*2>> <<case "identical pair">> @@ -609,8 +609,8 @@ <</if>> <<set $activeSlave.relationship = 2>> <<set $activeSlave.relationshipTarget = $activeSlave.ID + 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set _ContractCost = $slaveCost*2>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _ContractCost = _slaveCost*2>> <<case "identical herm pair">> @@ -674,8 +674,8 @@ <</if>> <<set $activeSlave.relationship = 4>> <<set $activeSlave.relationshipTarget = $activeSlave.ID + 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set _ContractCost = $slaveCost*2>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _ContractCost = _slaveCost*2>> <<case "desperate broodmother">> @@ -733,8 +733,8 @@ <<set $activeSlave.relation = "mother">> <<set $activeSlave.relationTarget = $activeSlave.ID + 1000>> <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= 1500>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= 1500>> <</switch>> @@ -1393,7 +1393,7 @@ A matronly $woman comes to your penthouse in tears. It seems $he is a tenant of <br><br> -//Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat($slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could manipulate $him to bind both mother and _daughter2, but you wouldn't be able to examine the _daughter2 first.// +//Enslaving $him will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat(_slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could manipulate $him to bind both mother and _daughter2, but you wouldn't be able to examine the _daughter2 first.// <<case "posh mother daughter">> @@ -1401,7 +1401,7 @@ An older $woman comes to see you representing $his family business. $He's pretty <br><br> -//Enslaving the mother will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat($slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could enslave both mother and _daughter2, but you wouldn't be able to examine the _daughter2 first.// +//Enslaving the mother will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat(_slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could enslave both mother and _daughter2, but you wouldn't be able to examine the _daughter2 first.// <<case "incest mother son">> @@ -1507,7 +1507,7 @@ You bring up a video feed of the one-room apartment they share. A man, clearly a <br><br> -//Enslaving the younger, sissy $sister will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat($slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could enslave both <<if $sister == _sister2>>$sister<<else>>sibling<</if>>s, but you wouldn't be able to examine the older one first. _He2'll likely be very rebellious and sexually unskilled.// +//Enslaving the younger, sissy $sister will cost <<print cashFormat(_ContractCost)>>. Alternatively, you could sell your rights to $him. Including costs, this will bring in <<print cashFormat(_slaveCost - _ContractCost)>>. As a third option, for <<print cashFormat((_ContractCost*2))>> you could enslave both <<if $sister == _sister2>>$sister<<else>>sibling<</if>>s, but you wouldn't be able to examine the older one first. _He2'll likely be very rebellious and sexually unskilled.// <<case "matched pair">> @@ -1657,11 +1657,11 @@ This call is coming from a public kiosk, which is usually an indication that the <<switch $RecETSevent>> <<case "addict mother daughter" "mismatched pair" "posh mother daughter">> <br><<link "Sell $him immediately">> - <<run cashX(($slaveCost - _ContractCost), "slaveTransfer", $activeSlave)>> + <<run cashX((_slaveCost - _ContractCost), "slaveTransfer", $activeSlave)>> <<replace "#result">> $activeSlave.slaveName accepts being resold without much fuss. $He's merely exchanged one unknown owner for another. For all $he knows $his new buyer will be less abusive than you would have been. $He would be less complacent if $he knew who $his buyers are; $he'll be immured in an arcade within the hour. <</replace>> -<</link>> //This will bring in <<print cashFormat($slaveCost - _ContractCost)>>// +<</link>> //This will bring in <<print cashFormat(_slaveCost - _ContractCost)>>// <<case "desperate broodmother" "identical herm pair" "identical pair" "incest brother brother" "incest brother sister" "incest father daughter" "incest father son" "incest mother daughter" "incest mother son" "incest sister sister" "incest twin brother" "incest twin sister" "incest twins mixed" "matched pair">> <<default>> diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw index a6e833027fa..3b018ba531d 100644 --- a/src/uncategorized/resFailure.tw +++ b/src/uncategorized/resFailure.tw @@ -865,64 +865,64 @@ The failure of a prominent organization within your arcology has @@.red;affected <<set $activeSlave = $slaves[$i]>> <<if $RESFailure == "TSS">> <<if ($slaves[$i].origin == "$He was given to you by a failed branch campus of the Slavegirl School right after $his majority.") || ($slaves[$i].origin == "$He was given to you by a failed branch campus of the Slavegirl School after $he was retrained as a slave $girl.")>> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "GRI">> <<if $slaves[$i].origin == "$He was given to you by a failed subsidiary lab of the Growth Research Institute right after $his use as a test subject ended.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "SCP">> <<if $slaves[$i].origin == "$He was given to you by a failed branch campus of St. Claver Preparatory after $he served as a plastic surgeon's passing final exam.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "LDE">> <<if $slaves[$i].origin == "$He was given to you by a failed branch campus of the innovative École des Enculées right after $his graduation.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "TGA">> <<if $slaves[$i].origin == "$He was given to you by a failed branch campus of the intense Gymnasium-Academy right after $his majority.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "HA">> <<if $slaves[$i].origin == "$He was given to you by a failed branch campus of the Hippolyta Academy right after $his majority.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "TCR">> <<if $slaves[$i].origin == "$He is a prized dairy cow given to you by a failed local pasture of The Cattle Ranch.">> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<elseif $RESFailure == "NUL">> <<if $slaves[$i].origin == "$He was given to you by a failed branch campus of Nueva Universidad de Libertad right after $his graduation.">> <<slaveCost $slaves[$i]>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> <<else>> <<if ($slaves[$i].origin == "$He was the leader of your arcology's Futanari Sisters until you engineered $his community's failure and enslavement.") || ($slaves[$i].origin == "$He was a Futanari Sister until you engineered $his early enslavement.")>> - <<set $slaveCost = slaveCost($slaves[$i])>> - <<run cashX($slaveCost, "slaveTransfer")>> + <<set _slaveCost = slaveCost($slaves[$i])>> + <<run cashX(_slaveCost, "slaveTransfer")>> <<= removeActiveSlave() >> <<set $i -= 1>> <</if>> diff --git a/src/uncategorized/seCustomSlaveDelivery.tw b/src/uncategorized/seCustomSlaveDelivery.tw index c40faf60525..0fd282767b3 100644 --- a/src/uncategorized/seCustomSlaveDelivery.tw +++ b/src/uncategorized/seCustomSlaveDelivery.tw @@ -207,8 +207,8 @@ <<set $activeSlave.devotion = random(-10,10)>> <<set $activeSlave.trust = random(-10,10)>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost = $slaveCost*2>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = _slaveCost*2>> <<setLocalPronouns $activeSlave>> A slave dealer has submitted a slave to satisfy the order you posted. @@ -223,14 +223,14 @@ A slave dealer has submitted a slave to satisfy the order you posted. <br><br> -$His price is <<print cashFormat($slaveCost)>>. +$His price is <<print cashFormat(_slaveCost)>>. <br><br> <span id="result"> -<<if $cash >= $slaveCost>> +<<if $cash >= _slaveCost>> <<link "Accept the offered slave">> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<replace "#result">> $He has been reasonably broken by the dealer that offered $him to you. $He has also picked up on the fact that $he was specially selected, and is a little hopeful that this means $he may be treated well. $He is now awaiting your instructions. <<include "New Slave Intro">> diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw index eb3775fb2f3..72c109b9b6d 100644 --- a/src/uncategorized/seExpiration.tw +++ b/src/uncategorized/seExpiration.tw @@ -36,7 +36,7 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that <</if>> <<set $activeSlave.indenture = 52>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $activeSlave.fetish == "mindbroken">> @@ -115,8 +115,8 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that <<elseif ($activeSlave.devotion > 50) && ($activeSlave.trust > 50)>> - <<set $slaveCost = Math.trunc(($slaveCost*0.5)/500)*500>> - <<set $slaveCost = Math.clamp($slaveCost, $minimumSlaveCost, 100000)>> + <<set _slaveCost = Math.trunc((_slaveCost*0.5)/500)*500>> + <<set _slaveCost = Math.clamp(_slaveCost, $minimumSlaveCost, 100000)>> $His feelings on this are quite mixed, since $he has come to feel that $he has a place under you. <<if !hasAnyLegs($activeSlave)>> @@ -133,11 +133,11 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that <br><br> <span id="result"> - <<if $cash > $slaveCost>> + <<if $cash > _slaveCost>> <<link "Offer $him a one year supplementary indenture">> <<replace "#result">> $He smiles almost shyly when you offer $him a one year supplementary indenture. The price is reasonable, but definitely favorable to you. $He accepts it anyway, and you transfer the money into an escrow account to be held for $him until $his new indenture is done. Your sex slave once again, $he awaits your pleasure without a hint of fear. - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<set $lowerClass -= 1>> <<set $expired = 0>><<set $expiree = 0>> <<for $i = 0; $i < $slaves.length; $i++>> @@ -147,7 +147,7 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that <</if>> <</for>> <</replace>> - <</link>> //This will cost <<print cashFormat($slaveCost)>>// + <</link>> //This will cost <<print cashFormat(_slaveCost)>>// <<else>> //You cannot afford to do this// <</if>> @@ -165,11 +165,11 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh <br><br> <span id="result"> -<<if $cash > $slaveCost>> +<<if $cash > _slaveCost>> <<link "Offer $him a one year supplementary indenture">> <<replace "#result">> $He looks pensive when you offer $him a one year supplementary indenture. The price reflects the market, and is a reasonable compensation for a year of sexual slavery. $He accepts it after some consideration, and you transfer the money into an escrow account to be held for $him until $his new indenture is done. Your sex slave once again, $he awaits orders with complacency. - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<set $lowerClass -= 1>> <<set $expired = 0>><<set $expiree = 0>> <<for $i = 0; $i < $slaves.length; $i++>> @@ -179,7 +179,7 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh <</if>> <</for>> <</replace>> - <</link>> //This will cost <<print cashFormat($slaveCost)>>// + <</link>> //This will cost <<print cashFormat(_slaveCost)>>// <<else>> //You cannot afford to do this// <</if>> diff --git a/src/uncategorized/seRecruiterSuccess.tw b/src/uncategorized/seRecruiterSuccess.tw index 4e1e7282b6f..ded170cbec9 100644 --- a/src/uncategorized/seRecruiterSuccess.tw +++ b/src/uncategorized/seRecruiterSuccess.tw @@ -209,8 +209,8 @@ <</if>> <<set _ContractCost = 1000>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost -= _ContractCost>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost -= _ContractCost>> <<setLocalPronouns $activeSlave>> <<setLocalPronouns $Recruiter 2>> @@ -255,11 +255,11 @@ Your recruiter $Recruiter.slaveName has succeeded; _he2's convinced a desperate <</replace>> <</link>> //This will cost <<print cashFormat(_ContractCost)>>// <br><<link "Sell $him immediately">> - <<run cashX($slaveCost, "slaveTransfer", $Recruiter)>> + <<run cashX(_slaveCost, "slaveTransfer", $Recruiter)>> <<replace "#result">> $activeSlave.slaveName accepts being resold without much fuss. $He's merely exchanged one unknown owner for another. For all $he knows $his new buyer will be less abusive than you would have been. $He would be less complacent if $he knew who $his buyers are; $he'll be immured in an arcade within the hour. <</replace>> -<</link>> //This will bring in <<print cashFormat($slaveCost)>>// +<</link>> //This will bring in <<print cashFormat(_slaveCost)>>// <<else>> //You lack the necessary funds to enslave $him.// <<set $recruiterProgress = 7>> diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw index d2eec4b60ac..3a51ae2d2e7 100644 --- a/src/uncategorized/sellSlave.tw +++ b/src/uncategorized/sellSlave.tw @@ -38,8 +38,8 @@ You prepare $him for sale. $His response to being put up for purchase is <</if>> <</if>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost = (random(70,80)*Math.trunc($slaveCost/100))>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = (random(70,80)*Math.trunc(_slaveCost/100))>> <<if $activeSlave.breedingMark == 1 && $propOutcome == 1 && $arcologies[0].FSRestart != "unset">> Since you are selling a breeding slave, $he will be sent to auction before other members of the Societal Elite. @@ -736,7 +736,7 @@ __Financial Records__ <<if $activeSlave.breedingMark == 1 && $propOutcome == 1 && $arcologies[0].FSRestart != "unset">> <<set $buyer = 0>> -<<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> +<<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <br>The current offer for $him stands at ''<<print cashFormat(_Price)>>''. <<link "Accept bid" "Slave Sold">> <<run cashX(_Price, "slaveTransfer")>> @@ -747,7 +747,7 @@ __Bids Received__ <br> <<set $buyer = 0>> -<<set _Price = 500*Math.trunc(($slaveCost*1.15)/500)>> +<<set _Price = 500*Math.trunc((_slaveCost*1.15)/500)>> <<if ($activeSlave.visualAge < 20) && ($activeSlave.weight < -10) && (random(1,100) > 80)>> <br>''<<print cashFormat(_Price)>>'' from a citizen who likes his slaves young and slender. @@ -825,9 +825,9 @@ __Bids Received__ <<if $activeSlave.physicalAge > 30>> <<if $activeSlave.devotion > 20>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a polite older citizen looking for a housekeeper and bedwarmer. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*0.9)/500))>>'' from a polite older citizen looking for a housekeeper and bedwarmer. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*0.9)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*0.9)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "housekeeper">> <</link>> @@ -837,11 +837,11 @@ __Bids Received__ <<if isFertile($activeSlave) && $seePreg != 0>> - <<if $slaveCost > 10000>> + <<if _slaveCost > 10000>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using $him to carry his children. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using $him to carry his children. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "preg fetishist">> <</link>> @@ -850,9 +850,9 @@ __Bids Received__ <<if $activeSlave.mpreg == 1>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an organ modifier interested in $his anal womb. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from an organ modifier interested in $his anal womb. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "organ crafter">> <</link>> @@ -862,9 +862,9 @@ __Bids Received__ <<if $seeHyperPreg == 1 && $seeExtreme == 1>> <<if $activeSlave.vagina == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(400*Math.trunc(($slaveCost*1.05)/500))>>'' from a pharmaceuticals corporation looking for fertile virgins for testing extreme fertility drugs. + <br>''<<print cashFormat(400*Math.trunc((_slaveCost*1.05)/500))>>'' from a pharmaceuticals corporation looking for fertile virgins for testing extreme fertility drugs. <<link "Accept bid" "Slave Sold">> - <<set _Price = 400*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 400*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "womb filler">> <</link>> @@ -876,9 +876,9 @@ __Bids Received__ <<if $activeSlave.face >= 55>> <<if $activeSlave.faceShape != "masculine">> <<if random(1,100) > 90>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a fellow arcology owner seeking a smart, pretty slave to use as a breeder to produce superior children. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a fellow arcology owner seeking a smart, pretty slave to use as a breeder to produce superior children. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "eugenics arcology">> <</link>> @@ -890,9 +890,9 @@ __Bids Received__ <<if $activeSlave.hips > 1>> <<if $activeSlave.vagina == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a fellow arcology owner focusing on building a future society based on his genes: he seeks fertile virgins with wide hips, feeling they will be the best mothers. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a fellow arcology owner focusing on building a future society based on his genes: he seeks fertile virgins with wide hips, feeling they will be the best mothers. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "repopulationist arcology">> <</link>> @@ -902,9 +902,9 @@ __Bids Received__ <<if $activeSlave.vagina == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a slave trader with a notorious virgin impregnation fetish: he uses his work to provide himself with an endless supply of virgins to knock up and resell. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.3)/500))>>'' from a slave trader with a notorious virgin impregnation fetish: he uses his work to provide himself with an endless supply of virgins to knock up and resell. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.3)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.3)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "virgin trader">> <</link>> @@ -918,9 +918,9 @@ __Bids Received__ <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> <<if $activeSlave.bellyPreg >= 300000>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a group that takes pleasure in performing abortions on live TV. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a group that takes pleasure in performing abortions on live TV. <<link "Accept bid" "Slave Sold">> - <<set _Price = 400*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 400*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "abortion TV">> <</link>> @@ -932,9 +932,9 @@ __Bids Received__ <<if $activeSlave.nipples == "huge">> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a female citizen with a very specific fetish: she loves breasts to the point of enjoying slaves with nipples large enough to meaningfully penetrate her. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a female citizen with a very specific fetish: she loves breasts to the point of enjoying slaves with nipples large enough to meaningfully penetrate her. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "nipple fetishist">> <</link>> @@ -943,9 +943,9 @@ __Bids Received__ <<if $activeSlave.nipples == "fuckable">> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a male citizen with a kink that's hard to satisfy: he loves nipple fucking, but hates how breasts just don't work that way. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a male citizen with a kink that's hard to satisfy: he loves nipple fucking, but hates how breasts just don't work that way. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "nipple fetishist">> <</link>> @@ -956,9 +956,9 @@ __Bids Received__ <<if $activeSlave.skill.anal > 10>> <<if $activeSlave.devotion > 20>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen who enjoys buttfucking slaves with the necessary equipment, willingness, and anal skill to reward his efforts with messy, hands-free orgasms of their own. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a citizen who enjoys buttfucking slaves with the necessary equipment, willingness, and anal skill to reward his efforts with messy, hands-free orgasms of their own. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "anal fetishist">> <</link>> @@ -970,9 +970,9 @@ __Bids Received__ <<if $activeSlave.skill.oral > 30>> <<if $activeSlave.devotion > 20>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an unusually well-endowed citizen who strongly prefers oral sex with willing partners who can deepthroat him successfully. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from an unusually well-endowed citizen who strongly prefers oral sex with willing partners who can deepthroat him successfully. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "oral fetishist">> <</link>> @@ -983,9 +983,9 @@ __Bids Received__ <<if $activeSlave.fetish != "masochist">> <<if $activeSlave.devotion > 50>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who likes hurting her slaves, dislikes masochists for their enjoyment of her treatment, yet prefers slaves who will not hate her. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a sadistic citizen who likes hurting her slaves, dislikes masochists for their enjoyment of her treatment, yet prefers slaves who will not hate her. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "pain fetishist">> <</link>> @@ -997,9 +997,9 @@ __Bids Received__ <<if $activeSlave.height >= 170>> <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who is looking for an imposing, stupid slave she can train to rape her victims on command. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a sadistic citizen who is looking for an imposing, stupid slave she can train to rape her victims on command. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "sadism fetishist">> <</link>> @@ -1012,9 +1012,9 @@ __Bids Received__ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> <<if $activeSlave.intelligenceImplant >= 15>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a newly wealthy citizen who is expanding his household and is interested in smart, educated, and obedient slaves for leadership roles. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a newly wealthy citizen who is expanding his household and is interested in smart, educated, and obedient slaves for leadership roles. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "dom fetishist">> <</link>> @@ -1026,9 +1026,9 @@ __Bids Received__ <<if $activeSlave.devotion > 50>> <<if $activeSlave.skill.oral >= 100>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen whose job keeps her deskbound; bored, she's looking for a devoted oral slave to occupy the space under the desk and be her constant pussylicking appliance. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.05)/500))>>'' from a citizen whose job keeps her deskbound; bored, she's looking for a devoted oral slave to occupy the space under the desk and be her constant pussylicking appliance. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.05)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.05)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "sub fetishist">> <</link>> @@ -1038,9 +1038,9 @@ __Bids Received__ <<if $activeSlave.anus == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a wealthy citizen infamous for cruelly raping anal virgins in public; he buys and abuses a new one every few weeks. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.3)/500))>>'' from a wealthy citizen infamous for cruelly raping anal virgins in public; he buys and abuses a new one every few weeks. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.3)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.3)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "buttbreaker">> <</link>> @@ -1051,9 +1051,9 @@ __Bids Received__ <<if $activeSlave.skill.anal >= 100>> <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using $him to help train new slaves in the sexual arts. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using $him to help train new slaves in the sexual arts. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "trainer staffing">> <</link>> @@ -1068,9 +1068,9 @@ __Bids Received__ <<if $activeSlave.intelligenceImplant >= 15>> <<if $activeSlave.physicalAge > 35>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.4)/500))>>'' from a skilled slave trainer who feels that MILFs make the best slave trainers. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.4)/500))>>'' from a skilled slave trainer who feels that MILFs make the best slave trainers. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.4)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.4)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D milf staffing">> <</link>> @@ -1086,9 +1086,9 @@ __Bids Received__ <<if $activeSlave.ovaries > 0>> <<if $activeSlave.boobs > 1000>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen with a notorious fetish for fertile, natural cows. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a prominent citizen with a notorious fetish for fertile, natural cows. <<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", $activeSlave)>> <<set $buyer = "D hucow">> <</link>> @@ -1103,9 +1103,9 @@ __Bids Received__ <<if $activeSlave.teeth == "pointy">> <<if $activeSlave.skill.combat > 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin <<= $girl>>s with sharp teeth. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin <<= $girl>>s with sharp teeth. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D startled the witch">> <</link>> @@ -1120,9 +1120,9 @@ __Bids Received__ <<if $activeSlave.skill.anal >= 100>> <<if $activeSlave.physicalAge < 25>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates <<= $girl>>s who are both vaginal virgins and anal veterans. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates <<= $girl>>s who are both vaginal virgins and anal veterans. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D virgin asspussy">> <</link>> @@ -1137,9 +1137,9 @@ __Bids Received__ <<if $activeSlave.skill.entertainment > 30>> <<if $activeSlave.physicalAge < 30>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to $him as "his waifu," whatever that means. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to $him as "his waifu," whatever that means. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D waifu">> <</link>> @@ -1161,16 +1161,16 @@ __Bids Received__ <<if $activeSlave.face >= 20>> <<set _movieDouble = random(1,100)>> <<if _movieDouble > 90 && $seePreg != 0>> - <br>''<<print cashFormat(700*Math.trunc(($slaveCost*1.35)/700))>>'' from a production studio interested in using $him as a double. + <br>''<<print cashFormat(700*Math.trunc((_slaveCost*1.35)/700))>>'' from a production studio interested in using $him as a double. <<link "Accept bid" "Slave Sold">> - <<set _Price = 700*Math.trunc(($slaveCost*1.35)/700)>> + <<set _Price = 700*Math.trunc((_slaveCost*1.35)/700)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "monster movie">> <</link>> <<elseif _movieDouble > 70>> - <br>''<<print cashFormat(700*Math.trunc(($slaveCost*1.35)/700))>>'' from a production studio interested in using $him as a double. + <br>''<<print cashFormat(700*Math.trunc((_slaveCost*1.35)/700))>>'' from a production studio interested in using $him as a double. <<link "Accept bid" "Slave Sold">> - <<set _Price = 700*Math.trunc(($slaveCost*1.35)/700)>> + <<set _Price = 700*Math.trunc((_slaveCost*1.35)/700)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "sex double">> <</link>> @@ -1191,9 +1191,9 @@ __Bids Received__ <<if $activeSlave.height < 160>> <<if $activeSlave.butt > 3>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who likes to provide his favored, well-endowed slaves with subordinate, orally skilled dickgirls with nice butts. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who likes to provide his favored, well-endowed slaves with subordinate, orally skilled dickgirls with nice butts. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D oral servants">> <</link>> @@ -1210,9 +1210,9 @@ __Bids Received__ <<if $activeSlave.boobs < 400>> <<if $activeSlave.weight <= 10>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who prefers slaves that look like demure <<= $girl>>s with their clothes on, and are willing to take cock up their pretty asspussies. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who prefers slaves that look like demure <<= $girl>>s with their clothes on, and are willing to take cock up their pretty asspussies. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D trap lover">> <</link>> @@ -1229,9 +1229,9 @@ __Bids Received__ <<if $activeSlave.buttImplant < 2>> <<if $activeSlave.weight > 10>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from an eccentric citizen notorious for keeping tall slaves with huge soft butts, just so he can bury himself between their cheeks when they're standing. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from an eccentric citizen notorious for keeping tall slaves with huge soft butts, just so he can bury himself between their cheeks when they're standing. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D butt bury">> <</link>> @@ -1249,9 +1249,9 @@ __Bids Received__ <<if $activeSlave.face > 10>> <<if $activeSlave.faceShape != "masculine">> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine $girl with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine $girl with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D milky herm">> <</link>> @@ -1269,9 +1269,9 @@ __Bids Received__ <<if $activeSlave.devotion > 20>> <<if $activeSlave.height > 180>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen whose friends never let him hear the end of his incorrigibly romantic treatment of his apartment full of amazons. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen whose friends never let him hear the end of his incorrigibly romantic treatment of his apartment full of amazons. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D amazon hunter">> <</link>> @@ -1288,9 +1288,9 @@ __Bids Received__ <<if $activeSlave.weight <= 10>> <<if $activeSlave.height < 165>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular <<= $girl>>s to bear him children. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular <<= $girl>>s to bear him children. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D shorty breeder">> <</link>> @@ -1308,9 +1308,9 @@ __Bids Received__ <<if hasAnyArms($activeSlave) && hasAnyLegs($activeSlave)>> <<if $activeSlave.skill.oral > 50>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's looking for a fresh, skilled pair of lips eager to wrap around a thick cock. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a prominent citizen who's looking for a fresh, skilled pair of lips eager to wrap around a thick cock. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.35)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D oral servants">> <</link>> @@ -1327,9 +1327,9 @@ __Bids Received__ <<if $activeSlave.skill.whoring <= 10>> <<if $activeSlave.skill.entertainment <= 10>> <<if random(1,100) > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.15)/500))>>'' from a prominent citizen who's a notoriously inexperienced lover; it's painfully obvious that he prefers inexperienced slaves as they make him feel less insecure. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.15)/500))>>'' from a prominent citizen who's a notoriously inexperienced lover; it's painfully obvious that he prefers inexperienced slaves as they make him feel less insecure. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.15)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.15)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "D r9k">> <</link>> @@ -1343,11 +1343,11 @@ __Bids Received__ <<if $activeSlave.weight > 10>> <<if $activeSlave.muscles > 5>> <<if $activeSlave.health.condition > 60>> - <<if $slaveCost < 10000>> + <<if _slaveCost < 10000>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so. <<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", $activeSlave)>> <<set $buyer = "D cannibal">> <</link>> @@ -1359,18 +1359,18 @@ __Bids Received__ <<if $activeSlave.porn.prestige == 1>> <<if random(1,100) == 69>> - <br>''<<print cashFormat(200*Math.trunc(($slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have $him for himself. + <br>''<<print cashFormat(200*Math.trunc((_slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have $him for himself. <<link "Accept bid" "Slave Sold">> - <<set _Price = 200*Math.trunc(($slaveCost*2)/200)>> + <<set _Price = 200*Math.trunc((_slaveCost*2)/200)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "obsessed fan">> <</link>> <</if>> <<elseif $activeSlave.porn.prestige == 3>> <<if random(1,100) > 90>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a studio interested in continued production of $his porn. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.3)/500))>>'' from a studio interested in continued production of $his porn. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.3)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.3)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "porn studio">> <</link>> @@ -1380,9 +1380,9 @@ __Bids Received__ <<if $arcologies[0].FSDegradationist == "unset">> <<if $activeSlave.intelligenceImplant < 15>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in educating slaves and reselling them at a profit. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in educating slaves and reselling them at a profit. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "teaching trainer">> <</link>> @@ -1393,9 +1393,9 @@ __Bids Received__ <<if $arcologies[0].FSBodyPurist == "unset">> <<if $activeSlave.boobsImplant == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in filling slaves with implants before resale. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in filling slaves with implants before resale. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "implanting trainer">> <</link>> @@ -1406,9 +1406,9 @@ __Bids Received__ <<if $arcologies[0].FSTransformationFetishist == "unset">> <<if $activeSlave.boobsImplant > 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in fixing slaves who have been surgically ruined with overimplantation. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in fixing slaves who have been surgically ruined with overimplantation. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "purifying trainer">> <</link>> @@ -1421,9 +1421,9 @@ __Bids Received__ <<if $activeSlave.butt > 3>> <<if $activeSlave.weight > 10>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim <<= $girl>>s. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim <<= $girl>>s. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "slimming trainer">> <</link>> @@ -1438,9 +1438,9 @@ __Bids Received__ <<if $activeSlave.butt < 3>> <<if $activeSlave.weight < -10>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in improving slaves with disappointing assets; they prefer pharmaceutical means but are not averse to surgical intervention if necessary. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in improving slaves with disappointing assets; they prefer pharmaceutical means but are not averse to surgical intervention if necessary. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "broadening trainer">> <</link>> @@ -1454,9 +1454,9 @@ __Bids Received__ <<if $activeSlave.boobsImplant == 0>> <<if $activeSlave.lactation == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in getting $women ready to be dairy cows by using aggressive hormonal and pharmaceutical treatment to balloon their tits. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in getting $women ready to be dairy cows by using aggressive hormonal and pharmaceutical treatment to balloon their tits. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "cow trainer">> <</link>> @@ -1469,9 +1469,9 @@ __Bids Received__ <<if $activeSlave.balls > 0>> <<if $activeSlave.boobs < 500>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in feminizing imperfect shemales; an orchiectomy is invariably their first step. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in feminizing imperfect shemales; an orchiectomy is invariably their first step. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "clipping trainer">> <</link>> @@ -1482,11 +1482,11 @@ __Bids Received__ <<if $arcologies[0].FSGenderRadicalist == "unset">> <<if $activeSlave.dick > 0>> - <<if $slaveCost > 10000>> + <<if _slaveCost > 10000>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in creating proper slave women from raw material that falls short of that ideal but has potential anyway. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a slave trainer that specializes in creating proper slave women from raw material that falls short of that ideal but has potential anyway. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "reassignment trainer">> <</link>> @@ -1498,9 +1498,9 @@ __Bids Received__ <<if $activeSlave.boobs - $activeSlave.boobsImplant > 2000>> <<if $activeSlave.lactation > 1>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by $his milk productivity. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by $his milk productivity. <<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", $activeSlave)>> <<set $buyer = "pastoralist arcology">> <</link>> @@ -1512,9 +1512,9 @@ __Bids Received__ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> <<if $activeSlave.intelligenceImplant >= 30>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of ancient Egypt. He's in the market for wise and educated slaves willing to pass on their skills. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of ancient Egypt. He's in the market for wise and educated slaves willing to pass on their skills. <<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", $activeSlave)>> <<set $buyer = "egyptian revivalist arcology">> <</link>> @@ -1527,9 +1527,9 @@ __Bids Received__ <<if $activeSlave.health.condition > 40>> <<if $activeSlave.muscles > 25>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire <<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", $activeSlave)>> <<set $buyer = "aztec revivalist arcology">> <</link>> @@ -1542,9 +1542,9 @@ __Bids Received__ <<if $activeSlave.health.condition > 40>> <<if $activeSlave.muscles > 5>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats. <<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", $activeSlave)>> <<set $buyer = "roman revivalist arcology">> <</link>> @@ -1556,9 +1556,9 @@ __Bids Received__ <<if $activeSlave.face > 10>> <<if $activeSlave.counter.anal < 100>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy $him and make $him a holy prostitute. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy $him and make $him a holy prostitute. <<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", $activeSlave)>> <<set $buyer = "chattel religionist arcology">> <</link>> @@ -1570,9 +1570,9 @@ __Bids Received__ <<if $activeSlave.muscles <= 95>> <<if $activeSlave.health.condition > 60>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself. <<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", $activeSlave)>> <<set $buyer = "physical idealist arcology">> <</link>> @@ -1585,9 +1585,9 @@ __Bids Received__ <<if $activeSlave.weight <= 95>> <<if $activeSlave.health.condition > 60>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself. <<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", $activeSlave)>> <<set $buyer = "hedonistic decadence arcology">> <</link>> @@ -1601,9 +1601,9 @@ __Bids Received__ <<if $activeSlave.muscles < 10>> <<if $activeSlave.belly == 0 && $activeSlave.preg < 1>> <<if random(1,100) > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/400))>>'' from a chef that likes stuffing more than just turkeys. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/400))>>'' from a chef that likes stuffing more than just turkeys. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/400)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/400)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "stuffer chef">> <</link>> @@ -1616,9 +1616,9 @@ __Bids Received__ <<if $activeSlave.boobs > 1000>> <<if $activeSlave.boobsImplant == 0>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who loves breast implants. Since large natural breasts can support larger implants, he seems to feel $activeSlave.slaveName has good potential to be implanted up to a truly gigantic size without too much stretching. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner who loves breast implants. Since large natural breasts can support larger implants, he seems to feel $activeSlave.slaveName has good potential to be implanted up to a truly gigantic size without too much stretching. <<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", $activeSlave)>> <<set $buyer = "transformation fetishist arcology">> <</link>> @@ -1630,9 +1630,9 @@ __Bids Received__ <<if $activeSlave.boobsImplant == 0>> <<if $activeSlave.physicalAge < 25>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in $him mostly for growth potential, since $his assets have grown so big, so young. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in $him mostly for growth potential, since $his assets have grown so big, so young. <<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", $activeSlave)>> <<set $buyer = "asset expansionist arcology">> <</link>> @@ -1646,9 +1646,9 @@ __Bids Received__ <<if $activeSlave.physicalAge < 25>> <<if $activeSlave.anus < 2>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with simple tastes. He likes his slaves young, slim, and reasonably innocent. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with simple tastes. He likes his slaves young, slim, and reasonably innocent. <<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", $activeSlave)>> <<set $buyer = "slimness enthusiast arcology">> <</link>> @@ -1662,9 +1662,9 @@ __Bids Received__ <<if $activeSlave.buttImplant > 0>> <<if $activeSlave.lipsImplant > 0>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a hatred of implants that reaches missionary zeal. He buys slaves full of silicone, removes their implants, reconditions them, and resells them whenever his finances will permit. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with a hatred of implants that reaches missionary zeal. He buys slaves full of silicone, removes their implants, reconditions them, and resells them whenever his finances will permit. <<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", $activeSlave)>> <<set $buyer = "body purist arcology">> <</link>> @@ -1675,9 +1675,9 @@ __Bids Received__ <<if $activeSlave.trust > 20>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who runs a terrifyingly degrading society. He prefers slaves who have been well-treated previously; it lends their screams a certain special authenticity. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner who runs a terrifyingly degrading society. He prefers slaves who have been well-treated previously; it lends their screams a certain special authenticity. <<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", $activeSlave)>> <<set $buyer = "degradationist arcology">> <</link>> @@ -1688,9 +1688,9 @@ __Bids Received__ <<if $activeSlave.devotion > 20>> <<if $activeSlave.fetish != "mindbroken">> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with an almost messianic calling to educate and improve slaves, though somewhat hypocritically, he prefers to start with reasonably obedient <<= $girl>>s, which usually means slaves broken by someone else. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with an almost messianic calling to educate and improve slaves, though somewhat hypocritically, he prefers to start with reasonably obedient <<= $girl>>s, which usually means slaves broken by someone else. <<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", $activeSlave)>> <<set $buyer = "paternalist arcology">> <</link>> @@ -1705,9 +1705,9 @@ __Bids Received__ <<if $activeSlave.devotion > 20>> <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who likes willing, uncomplicated young ladies with bouncing boobs and big butts. He's an uncomplicated sort. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner who likes willing, uncomplicated young ladies with bouncing boobs and big butts. He's an uncomplicated sort. <<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", $activeSlave)>> <<set $buyer = "gender fundamentalist arcology">> <</link>> @@ -1722,9 +1722,9 @@ __Bids Received__ <<if $activeSlave.face < -10>> <<if $activeSlave.boobs < 400>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a notorious fetish for the process of feminization. He prefers diamonds in the rough, because the process of polishing is so much fun. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.25)/500))>>'' from a fellow arcology owner with a notorious fetish for the process of feminization. He prefers diamonds in the rough, because the process of polishing is so much fun. <<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", $activeSlave)>> <<set $buyer = "gender radicalist arcology">> <</link>> @@ -1737,9 +1737,9 @@ __Bids Received__ <<if $activeSlave.devotion <= 20>> <<if $activeSlave.trust < 20>> <<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 $activeSlave.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 $activeSlave.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">> - <<set _Price = 500*Math.trunc(($slaveCost*1.25)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.25)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "supremacist arcology">> <</link>> @@ -1753,9 +1753,9 @@ __Bids Received__ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -50>> <<if $activeSlave.ovaries == 1>> <<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 $activeSlave.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 $activeSlave.race people with natural, unquestioning obedience. He clearly considers $him good stock for the project. <<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", $activeSlave)>> <<set $buyer = "subjugationist arcology">> <</link>> @@ -1766,11 +1766,11 @@ __Bids Received__ <</if>> <<if $arcologies[0].FSPaternalist == "unset">> - <<if $slaveCost < 10000>> + <<if _slaveCost < 10000>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a cheap brothel chain that operates a franchise on a lower level of the arcology. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a cheap brothel chain that operates a franchise on a lower level of the arcology. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "cheap brothel">> <</link>> @@ -1779,12 +1779,12 @@ __Bids Received__ <</if>> <<if $arcologies[0].FSPaternalist == "unset">> - <<if $slaveCost < 20000>> + <<if _slaveCost < 20000>> <<if $activeSlave.boobsImplant == 0>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a factory farm notorious for extracting every drop of value from its slaves' bodies. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a factory farm notorious for extracting every drop of value from its slaves' bodies. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "factory farm">> <</link>> @@ -1794,11 +1794,11 @@ __Bids Received__ <</if>> <<if $arcologies[0].FSPaternalist == "unset">> - <<if $slaveCost < 5000>> + <<if _slaveCost < 5000>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a sex arcade that maintains good service quality by rapidly cycling new slaves through their facilities. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a sex arcade that maintains good service quality by rapidly cycling new slaves through their facilities. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "arcade">> <</link>> @@ -1808,13 +1808,13 @@ __Bids Received__ <<if $seePreg != 0>> <<if $arcologies[0].FSPaternalist == "unset">> - <<if $slaveCost < 10000>> + <<if _slaveCost < 10000>> <<if $activeSlave.health.condition > 40>> <<if $activeSlave.ovaries == 1>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "volume breeder">> <</link>> @@ -1826,11 +1826,11 @@ __Bids Received__ <</if>> <<if $arcologies[0].FSDegradationist == "unset">> - <<if $slaveCost > 20000>> + <<if _slaveCost > 20000>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a group of partners that run a handsome brothel off the promenade. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.1)/500))>>'' from a group of partners that run a handsome brothel off the promenade. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "nice brothel">> <</link>> @@ -1839,13 +1839,13 @@ __Bids Received__ <</if>> <<if $arcologies[0].FSDegradationist == "unset">> - <<if $slaveCost < 50000>> + <<if _slaveCost < 50000>> <<if $activeSlave.boobsImplant == 0>> <<if $activeSlave.health.condition > 40>> <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*0.8)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*0.8)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "free range">> <</link>> @@ -1856,11 +1856,11 @@ __Bids Received__ <</if>> <<if $activeSlave.health.condition > 40>> - <<if $slaveCost < 5000>> + <<if _slaveCost < 5000>> <<if random(1,100) > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.2)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.2)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "harvester">> <</link>> @@ -1868,11 +1868,11 @@ __Bids Received__ <</if>> <</if>> -<<if $slaveCost < 5000>> +<<if _slaveCost < 5000>> <<if random(1,100) > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1)/500))>>'' from a manufacturer of large sexual appliances that include a living inmate, drugged into helplessness. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1)/500))>>'' from a manufacturer of large sexual appliances that include a living inmate, drugged into helplessness. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "fuckdoll">> <</link>> @@ -1880,7 +1880,7 @@ __Bids Received__ <</if>> <<if $seeExtreme == 1>> - <<if $slaveCost < 5000>> + <<if _slaveCost < 5000>> <<if $activeSlave.vagina > -1>> <<if $activeSlave.bellyImplant > -1>> <<if random(1,100) > 90>> @@ -1897,18 +1897,18 @@ __Bids Received__ <</if>> <<if random(1,100) > 30>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a reputable slave trader who will likely ship $him out of the arcology. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*0.9)/500))>>'' from a reputable slave trader who will likely ship $him out of the arcology. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*0.9)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*0.9)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <</link>> <</if>> <<if $activeSlave.fetish == "mindbroken">> <<if random(1,100) > 20>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a slave trader who buys vast numbers of mindbroken <<= $girl>>s. His purpose is unknown, and none of them are ever seen again. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*0.9)/500))>>'' from a slave trader who buys vast numbers of mindbroken <<= $girl>>s. His purpose is unknown, and none of them are ever seen again. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*0.9)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*0.9)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <</link>> <</if>> @@ -1916,9 +1916,9 @@ __Bids Received__ <<if ($activeSlave.hears == -2)>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a concert venue that wants a sex slave to keep the stage crew satisfied, but doesn't want to worry about any possible hearing loss. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.3)/500))>>'' from a concert venue that wants a sex slave to keep the stage crew satisfied, but doesn't want to worry about any possible hearing loss. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.3)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.3)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "concert hall">> <</link>> @@ -1927,9 +1927,9 @@ __Bids Received__ <<if ($activeSlave.sexualFlaw == "crude")>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.4)/500))>>'' from a slave trainer that specializes in teaching proper manners and etiquette to low-class slaves. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.4)/500))>>'' from a slave trainer that specializes in teaching proper manners and etiquette to low-class slaves. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*1.4)/500)>> + <<set _Price = 500*Math.trunc((_slaveCost*1.4)/500)>> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <<set $buyer = "etiquette coach">> <</link>> @@ -1941,9 +1941,9 @@ __Bids Received__ <<if $peacekeepers.strength >= 50>> <<if $peacekeepers.attitude < 100>> <<if $activeSlave.skill.oral + $activeSlave.skill.anal + $activeSlave.skill.vaginal > 100>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.5)/500))>>'' from the officer in charge of 'recreational activities' for General $peacekeepers.generalName's forces. This is far less than the slave is worth, but the bid comes with the implicit offer of more influence over the peacekeepers. + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*0.5)/500))>>'' from the officer in charge of 'recreational activities' for General $peacekeepers.generalName's forces. This is far less than the slave is worth, but the bid comes with the implicit offer of more influence over the peacekeepers. <<link "Accept bid" "Slave Sold">> - <<set _Price = 500*Math.trunc(($slaveCost*0.5)/500), $buyer = "peacekeepers">> + <<set _Price = 500*Math.trunc((_slaveCost*0.5)/500), $buyer = "peacekeepers">> <<run cashX(_Price, "slaveTransfer", $activeSlave)>> <</link>> <</if>> @@ -1951,58 +1951,58 @@ __Bids Received__ <<switch $peacekeepers.tastes>> <<case "lusty futanari">> <<if $activeSlave.balls > 0 && $activeSlave.ballType != "sterile" && $activeSlave.scrotum > 0 && $activeSlave.dick > 0 && $activeSlave.vagina > -1 && $activeSlave.energy > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "cum addicts">> <<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishStrength > 95 && $activeSlave.sexualFlaw == "cum addict">> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "horny MILFs">> <<if $activeSlave.physicalAge > 34 && $activeSlave.visualAge > 34 && $activeSlave.energy > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "big-breasted cows">> <<if $activeSlave.boobs > 2000 && $activeSlave.lactation > 1>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "beautiful young sex slaves">> <<if $activeSlave.physicalAge < 25 && $activeSlave.visualAge < 25 && $activeSlave.face > 95>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "fertile virgins">> <<if $activeSlave.vagina == 0 && isFertile($activeSlave)>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "lusty preggos">> <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.energy > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "baby obsessed breeders">> <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.fetish == "pregnancy" && $activeSlave.sexualFlaw == "breeder">> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "bellies with girls attached">> <<if $activeSlave.belly >= 300000>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "flesh balloons">> <<if $activeSlave.boobs > 20000 && $activeSlave.butt > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <<case "oppai loli">> <<if $activeSlave.boobs > 2000 && $activeSlave.physicalAge < 13 && $activeSlave.visualAge < 13>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> + <br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price = 500*Math.trunc((_slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveTransfer", $activeSlave)>><</link>> <</if>> <</switch>> <</if>> diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw index 150e248f1ad..8aa8fd387d2 100644 --- a/src/uncategorized/slaveMarkets.tw +++ b/src/uncategorized/slaveMarkets.tw @@ -141,7 +141,7 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex You're in the area of the slave market that specializes in slaves from within the Free City, viewing slaves from ''<<print "$arcologies[$numArcology].name">>''. Some were trained there, specifically for sale, while others are simply being sold. <<set _opinion = arcologyOpinion($arcologies[0], $arcologies[$numArcology])>> <<if _opinion != 0>> - <<set $slaveCost -= Math.trunc($slaveCost*$opinion*0.05)>> + <<set _slaveCost -= Math.trunc(_slaveCost*$opinion*0.05)>> <<if _opinion > 2>> Your cultural ties with '' $arcologies[$numArcology].name'' helps keep the price reasonable. <<elseif _opinion < -2>> @@ -175,11 +175,11 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex <br><br> -<<set $slaveCost = slaveCost($activeSlave)>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += $slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>><</if>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += _slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1)>><</if>> -<<set $slaveCost = 500*Math.trunc($slaveCost/500)>> -The offered price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<set _slaveCost = 500*Math.trunc(_slaveCost/500)>> +The offered price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromMarketControls>> diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw index c24d26bb8ac..ea9c22f03b0 100644 --- a/src/uncategorized/slaveShelter.tw +++ b/src/uncategorized/slaveShelter.tw @@ -368,11 +368,11 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <</switch>> <<set $shelterSlave.origin = "You got $him at the Slave Shelter. " + $shelterSlave.origin>> <</if>> -<<set $slaveCost = 1000>> +<<set _slaveCost = 1000>> <<setLocalPronouns $shelterSlave>> -The placement fee is <<print cashFormat($slaveCost)>>. +The placement fee is <<print cashFormat(_slaveCost)>>. <br><br> @@ -386,10 +386,10 @@ The placement fee is <<print cashFormat($slaveCost)>>. <span id="result"> -<<if $cash >= $slaveCost>> +<<if $cash >= _slaveCost>> <<link "Buy $his slave contract">> <<replace "#result">> - <<set cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), $shelterSlaveBought = 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main">> + <<set cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), $shelterSlaveBought = 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main">> <<include "New Slave Intro">> <</replace>> <</link>> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index 55f18e48cea..fb0d0139d4f 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -1167,7 +1167,7 @@ <<case "peacekeepers">> $activeSlave.slaveName is delivered to General $peacekeepers.generalName's forces, to serve as a barracks whore. Several days later, the purchasing officer forwards a short shot of $activeSlave.slaveName <<if $peacekeepers.tastes == 0>> - <<if $slaveCost > random(10000,50000) || $peacekeepers.attitude > 90>><<set _influential = 1>><<else>><<set _influential = 0>><</if>> + <<if _slaveCost > random(10000,50000) || $peacekeepers.attitude > 90>><<set _influential = 1>><<else>><<set _influential = 0>><</if>> <<if _influential && $activeSlave.belly >= 300000>> <<set _belly = bellyAdjective($activeSlave)>> smiling as $his _belly belly is used as the center of a large bukkake party. You can just barely make out the figure of someone taking $him from behind beyond $his immensity. There's a note attached, stating superfluously that $his exotic feature makes $him very popular. General $peacekeepers.generalName's buyer is going to be looking for more massive bellied <<= $girl>>s in the future. @@ -1241,9 +1241,9 @@ giving paizuri at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for top-heavy little <<= $girl>>s. <</switch>> <</if>> - <<if $peacekeepers.attitude+Math.ceil($slaveCost/10000) < 100>> + <<if $peacekeepers.attitude+Math.ceil(_slaveCost/10000) < 100>> $His presence will influence General $peacekeepers.generalName's troops in favor of a closer relationship with the Free City; old world mores are difficult to maintain while inside an arcology-trained sex slave. - <<set $peacekeepers.attitude += Math.ceil($slaveCost/10000)>> + <<set $peacekeepers.attitude += Math.ceil(_slaveCost/10000)>> <<elseif $peacekeepers.attitude < 100>> With $activeSlave.slaveName added to their stable of sex slaves, General $peacekeepers.generalName's troops will be fully converted to the idea of aligning with the slaveowning Free Cities, and the general will no longer have to maintain even plausible deniability. @@.yellow;General $peacekeepers.generalName's little empire is now effectively a client state of $arcologies[0].name.@@ <<set $peacekeepers.attitude = 100>> diff --git a/src/uncategorized/specialSlave.tw b/src/uncategorized/specialSlave.tw index 3c1c4e60664..f85ea2eeb36 100644 --- a/src/uncategorized/specialSlave.tw +++ b/src/uncategorized/specialSlave.tw @@ -74,10 +74,10 @@ <</if>> <<run nationalityToAccent($activeSlave)>> <<set $specialSlavesPriceOverride = 1>> - <<set $slaveCost = slaveCost($activeSlave)>> - <<set $slaveCost = (10*Math.trunc(($slaveCost/10)*2))>> - <<if $slaveCost < 20000>> - <<set $slaveCost += random(5000,30000)>> + <<set _slaveCost = slaveCost($activeSlave)>> + <<set _slaveCost = (10*Math.trunc((_slaveCost/10)*2))>> + <<if _slaveCost < 20000>> + <<set _slaveCost += random(5000,30000)>> <</if>> <<setLocalPronouns $activeSlave>> @@ -85,9 +85,9 @@ <br><br> - The offered price is <<print cashFormat($slaveCost)>>. + The offered price is <<print cashFormat(_slaveCost)>>. - [["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main",$specialSlave = 1]] + [["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main",$specialSlave = 1]] <br><br> diff --git a/src/uncategorized/stClaverPreparatory.tw b/src/uncategorized/stClaverPreparatory.tw index 9259e49a45b..d2431778c12 100644 --- a/src/uncategorized/stClaverPreparatory.tw +++ b/src/uncategorized/stClaverPreparatory.tw @@ -12,15 +12,15 @@ <br><br>St. Claver Preparatory offers a fresh graduate for inspection via video call. The interview takes place in a very obviously medical office, with medical supply robots wheeling past its glass walls and nurses hurrying to and fro. <<= generateMarketSlave("SCP")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $SCP.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $SCP.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $SCP "slave" "slaves">> diff --git a/src/uncategorized/theFutanariSisters.tw b/src/uncategorized/theFutanariSisters.tw index 551c1f2a244..d0329f3220d 100644 --- a/src/uncategorized/theFutanariSisters.tw +++ b/src/uncategorized/theFutanariSisters.tw @@ -133,16 +133,16 @@ The Sisters offer a member selected for sale into slavery for inspection via vid <br><br> <<= generateMarketSlave("TFS")>> -<<set $slaveCost = slaveCost($activeSlave)>> -<<set $slaveCost = Math.trunc($slaveCost*0.8)>> +<<set _slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <<if $TFS.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $TFS.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $TFS "slave" "slaves">> diff --git a/src/uncategorized/theGymnasiumAcademy.tw b/src/uncategorized/theGymnasiumAcademy.tw index 090d8185523..6a8926ece9e 100644 --- a/src/uncategorized/theGymnasiumAcademy.tw +++ b/src/uncategorized/theGymnasiumAcademy.tw @@ -12,15 +12,15 @@ <br><br>The Gymnasium-Academy offers a fresh graduate for inspection via video call. The interview takes place in an office overlooking an expansive workout room, in which a large number of naked, fit young bodies are performing punishing workout routines. <<= generateMarketSlave("TGA")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $TGA.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $TGA.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $TGA "slave" "slaves">> diff --git a/src/uncategorized/theSlavegirlSchool.tw b/src/uncategorized/theSlavegirlSchool.tw index 942c5d2b52b..169ca27671c 100644 --- a/src/uncategorized/theSlavegirlSchool.tw +++ b/src/uncategorized/theSlavegirlSchool.tw @@ -12,15 +12,15 @@ <br><br>The Slavegirl School offers a fresh graduate for inspection via video call. The interview takes place in a faculty member's office. Absurdly, it's barely distinguishable from an office at any traditional institution of higher education. The only giveaway is the profusion of sex toys on the desk and the pornography on the walls. <<= generateMarketSlave("TSS")>> -<<set $slaveCost = slaveCost($activeSlave)>> +<<set _slaveCost = slaveCost($activeSlave)>> <<if $TSS.schoolSale != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.5)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.5)>> <<elseif $TSS.schoolUpgrade != 0>> - <<set $slaveCost = Math.trunc($slaveCost*0.8)>> + <<set _slaveCost = Math.trunc(_slaveCost*0.8)>> <</if>> -<<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> +<<if $slavesSeen > $slaveMarketLimit>><<set _slaveCost += Math.trunc(_slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> -<br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<br><br>The price is <<print cashFormat(_slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <<setLocalPronouns $activeSlave>> <<buyingFromSchoolControls $TSS "slave" "slaves">> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 509caff1f58..427e5da8fba 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -42,12 +42,12 @@ <</widget>> <<widget "SlaveCostDescription">> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<if $slaveCost > $cash>> - @@.red;This slave will cost ''<<print cashFormat($slaveCost)>>.''<br> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<if _slaveCost > $cash>> + @@.red;This slave will cost ''<<print cashFormat(_slaveCost)>>.''<br> You only have: <<print cashFormat($cash)>>@@ <<else>> - This slave will cost @@.yellowgreen;''<<print cashFormat($slaveCost)>>.''@@<br> + This slave will cost @@.yellowgreen;''<<print cashFormat(_slaveCost)>>.''@@<br> You have <<print cashFormat($cash)>>. <</if>> <</widget>> @@ -59,7 +59,7 @@ <<replace "#cost">> <<SlaveCostDescription>> <</replace>> -<<if $cash >= $slaveCost>> +<<if $cash >= _slaveCost>> <<set $activeSlave.actualAge = Number($activeSlave.actualAge) || 18>> <<set $activeSlave.devotion = Number($activeSlave.devotion) || 0>> <<set $activeSlave.trust = Number($activeSlave.trust) || 0>> @@ -73,8 +73,8 @@ <br> <<link "Add this slave">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 1, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> //This will apply your @@.springgreen;career bonus@@ to $him: @@ -104,16 +104,16 @@ <br> <<link "Add slave without career bonus">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 0, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> <<else>> <br> <<link "Add slave">> <<set $returnTo = "Commit Starting Girl", $createRelatedSlave = 0, $applyCareerBonus = 0, $careerBonusApplied = 0>> - <<set $slaveCost = startingSlaveCost($activeSlave)>> - <<run cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave)>> + <<set _slaveCost = startingSlaveCost($activeSlave)>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> <<goto "RG AS Dump">> <</link>> <br> @@ -900,12 +900,12 @@ %/ <<widget "buyingFromMarketControls">> <br>[["Decline to purchase " + $him + " and check out another slave"|passage()][$slavesSeen += 1]] -<<if $cash >= $slaveCost>> - <br>[["Buy " + $him + " and check out other slaves to order"|passage()][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] +<<if $cash >= _slaveCost>> + <br>[["Buy " + $him + " and check out other slaves to order"|passage()][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave),$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> - <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), $newSlaves.push($activeSlave)]] <</if>> <<else>> <br>//You lack the necessary funds to buy this slave.// @@ -930,13 +930,13 @@ %/ <<widget "buyingFromSchoolControls">> <br>[["Decline to purchase " + $him + " and check out another " + $args[1]|passage()][$slavesSeen += 1]] -<<if $cash >= $slaveCost>> +<<if $cash >= _slaveCost>> <<set _schoolToBuyFrom = $args[0]>> - <br>[["Buy " + $him + " and check out other " + $args[2] + " to order"|passage()][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other " + $args[2] + " to order"|passage()][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[["Buy " + $him + " and finish your order of " + $args[2]|Bulk Slave Intro][cashX(forceNeg($slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of " + $args[2]|Bulk Slave Intro][cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave), _schoolToBuyFrom.schoolSale = 0, _schoolToBuyFrom.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> <br>//You lack the necessary funds to buy this $args[1].// -- GitLab