diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw index 8b6bac4a1f9c954b065e0c8bb963d5688c8a7a3e..d15bc24c08d455fb7e4dde327e3c1e782d151d54 100644 --- a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw +++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw @@ -76,7 +76,7 @@ <<else>> <<set $activeSlave.pregKnown = 0, $activeSlave.pregWeek = 0>> <</if>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> You perform the dark rituals, pray to the dark gods and sold your soul for the power to change and mold slaves to your will. diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw index f985e7caa270b9d3241ddbe71087352dca8f284e..711fd432a3b27f1fb7826038a07a223a54b9e7c9 100644 --- a/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw +++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanupNew.tw @@ -467,9 +467,9 @@ <</if>> <<if $tempSlave.breedingMark == 1 && ["whore", "serve the public", "work a glory hole", "work in the dairy", "serve in the club", "be the DJ", "be the Madam", "live with your Head Girl", "be confined in the arcade", "work in the brothel", "be a subordinate slave"].includes($tempSlave.assignment)>> <<print "Eugenics Breeding Marked slave detected in questionable use, defaulting slave assignment to 'rest'">><br> - <<assignJob $tempSlave "rest">> + <<= assignJob($tempSlave, "rest")>> <</if>> -<<SetBellySize $tempSlave>> +<<run SetBellySize($tempSlave)>> <br> You perform the dark rituals, pray to the dark gods and sold your soul for the power to change and mold slaves to your will. diff --git a/src/js/rulesAutosurgery.tw b/src/js/rulesAutosurgery.tw index a9eaac71443c98d2fd766b86ca92910d279fc368..957d3289b7c2f992fbf3f98b5ff28ac2575cf678 100644 --- a/src/js/rulesAutosurgery.tw +++ b/src/js/rulesAutosurgery.tw @@ -3,11 +3,12 @@ window.rulesAutosurgery = (function() { "use strict"; let V; - let r = ""; + let r; return rulesAutoSurgery; function rulesAutoSurgery(slave) { V = State.variables; + r = ""; const surgeries = []; const thisSurgery = ProcessHGTastes(slave); if (slave.health > 20) diff --git a/src/npc/abort.tw b/src/npc/abort.tw index 42f9e0d2a88934b8de3b78bd4ba8a2caca906e39..984f90f1966b8a80dd37889435c03c151bd69b93 100644 --- a/src/npc/abort.tw +++ b/src/npc/abort.tw @@ -1,7 +1,7 @@ :: Abort [nobr] <<set $nextButton = "Back", $nextLink = "Slave Interact">> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> The remote surgery makes aborting a pregnancy quick and efficient. $activeSlave.slaveName is <<if $activeSlave.fetish == "pregnancy">> @@ -34,4 +34,4 @@ The remote surgery makes aborting a pregnancy quick and efficient. $activeSlave. <<set $activeSlave.pregKnown = 0>> <<set $activeSlave.pregWeek = -2>> <<set WombFlush($activeSlave)>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index 2b3378e91c94f500d09a1ca958575eb72516d43b..942d6670a7173c28d8da8dbab99aa1251edb2dae 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -248,7 +248,7 @@ The previous owner seems to have left in something of a hurry. <<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(55,65)>> <<set $activeSlave.face = random(15,100)>> <<set $activeSlave.preg = random(1,40), $activeSlave.lactation = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<if $activeSlave.vagina > -1>> <<if $activeSlave.vagina == 0>><<set $activeSlave.vagina++>><</if>> <<set $activeSlave.vaginalSkill = random(15,35)>> @@ -502,7 +502,7 @@ The previous owner seems to have left in something of a hurry. <<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(55,65)>> <<set $activeSlave.face = random(15,100)>> <<set $activeSlave.preg = random(10,40), $activeSlave.pregType = random(3,8), $activeSlave.lactation = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.birthsTotal = 5>> <<set $activeSlave.bellySag = 20, $activeSlave.bellySagPreg = 20>> <<if $activeSlave.vagina > -1>> diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index 8dbdbb326495e5a560d0a2e00ffd9bfaf721ca10..a02fa49f93e115746898f50b076df9fe6fb015a4 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -2,7 +2,7 @@ <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Neighbor Interact", _ID = $activeSlave.ID>> -<<assignJob $activeSlave "live with your agent">> +<<= assignJob($activeSlave, "live with your agent")>> <<if $activeSlave.reservedChildren > 0>> <<set $reservedChildren -= $activeSlave.reservedChildren>> diff --git a/src/npc/agent/agentRetrieve.tw b/src/npc/agent/agentRetrieve.tw index 831f39bae863a59db4702d2b8365e0f7ba6bb5d7..f0ce24aaef92010e5ed159c5fe8d27a4872918d3 100644 --- a/src/npc/agent/agentRetrieve.tw +++ b/src/npc/agent/agentRetrieve.tw @@ -4,7 +4,7 @@ <<set _i = $slaveIndices[_ID]>> <<if def _i>> - <<removeJob $slaves[_i] "be your agent">> + <<= removeJob($slaves[_i], "be your agent")>> <</if>> <<set $activeArcology.leaderID = 0, $activeArcology.government = "your trustees">> diff --git a/src/npc/agent/agentWorkaround.tw b/src/npc/agent/agentWorkaround.tw index dce564424e8a30da5c507006e0d9dd5333549838..bb38dcbd44fff5b397132b39d489de9b3d5bca7d 100644 --- a/src/npc/agent/agentWorkaround.tw +++ b/src/npc/agent/agentWorkaround.tw @@ -2,7 +2,7 @@ <<set $nextButton = "Continue", $nextLink = "Neighbor Interact", _ID = $slaves[$i].ID>> -<<assignJob $slaves[$i] "be your agent">> +<<= assignJob($slaves[$i], "be your agent")>> <<if $slaves[$i].reservedChildren > 0>> <<set $reservedChildren -= $slaves[$i].reservedChildren>> diff --git a/src/npc/asDump.tw b/src/npc/asDump.tw index 859039ff36af09af7815273b7b957ee474f7ab65..48774cf58f9f5307f9ef85c8a5097521d42c4e0d 100644 --- a/src/npc/asDump.tw +++ b/src/npc/asDump.tw @@ -39,7 +39,7 @@ <<case $Collectrix.ID>><<set $Collectrix = $activeSlave>> <</switch>> - <<ClearSummaryCache $activeSlave>> + <<run clearSummaryCache($activeSlave)>> <</silently>> diff --git a/src/npc/descriptions/fAnus.tw b/src/npc/descriptions/fAnus.tw index d4d7710c218757e59099e4d9980623b89eb85281..da0ee38046aa68999f544004eaac28cb6f09cd76 100644 --- a/src/npc/descriptions/fAnus.tw +++ b/src/npc/descriptions/fAnus.tw @@ -1,7 +1,7 @@ :: FAnus [nobr] <<set $activeSlave.analCount++, $analTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You call $him over so you can diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 2a606505ad937dc5db8d5f30d50af1ec58925158..444f28e827959a39eca73b3bc54532bb741be63e 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -1,7 +1,7 @@ :: FBoobs [nobr] <<set $activeSlave.mammaryCount++, $mammaryTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You call $him over so you can play with $his diff --git a/src/npc/descriptions/fButt.tw b/src/npc/descriptions/fButt.tw index 626f63e8485fd33e65b58ccce09dd6cf4557c7b8..2a29f1dfad1ba9d1901f840a72671c57ebd9f8bb 100644 --- a/src/npc/descriptions/fButt.tw +++ b/src/npc/descriptions/fButt.tw @@ -1,6 +1,6 @@ :: FButt [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You call $him over so you can diff --git a/src/npc/descriptions/fFuckdollWidgets.tw b/src/npc/descriptions/fFuckdollWidgets.tw index 33ef519ed0f7df2a74f57234ddb657a41dbb218d..8a0ae55acb9862d1acb7d36cbec2c17316dd33cd 100644 --- a/src/npc/descriptions/fFuckdollWidgets.tw +++ b/src/npc/descriptions/fFuckdollWidgets.tw @@ -3,7 +3,7 @@ <<widget "FFuckdollOral">> <<set $activeSlave.oralCount++, $oralTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.lips > 95>>facepussy<<else>>face hole<</if>>. <<if $activeSlave.fuckdoll <= 10>> Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>shove it into a kneeling position<<else>>set it on the couch<</if>> and straddle its face. @@ -40,7 +40,7 @@ You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving <<widget "FFuckdollVaginal">> <<set $activeSlave.vaginalCount++, $vaginalTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.vagina > 3>>cavernous<<elseif $activeSlave.vagina == 3>>soft<<elseif $activeSlave.vagina == 2>>inviting<<elseif $activeSlave.vagina == 1>>tight<</if>> front hole. <<if $activeSlave.fuckdoll <= 10>> Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push it down to lie on the couch<<else>>set it on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside its vagina. @@ -95,7 +95,7 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its <<widget "FFuckdollImpreg">> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set _bonus = random(6,20)>> <<if $activeSlave.mpreg == 1>> @@ -183,7 +183,7 @@ You repeat this ritual throughout the week, ensuring that it will be an @@.lime; <<widget "FFuckdollAnal">> <<set $activeSlave.analCount++, $analTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.anus > 3>>gaping<<elseif $activeSlave.anus == 3>>loose<<elseif $activeSlave.anus == 2>>relaxed<<elseif $activeSlave.anus == 1>>tight<</if>> rear hole. <<if $activeSlave.fuckdoll <= 10>> Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>walk over to it<<else>>flip it over<</if>> and ram <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up its rear hole. diff --git a/src/npc/descriptions/fLips.tw b/src/npc/descriptions/fLips.tw index cc5ce1f2f96ff5f400f68a2bfaabdf74d8a50edb..4e86b3fcc94d5388c91fee3977348bc1a96428da 100644 --- a/src/npc/descriptions/fLips.tw +++ b/src/npc/descriptions/fLips.tw @@ -2,7 +2,7 @@ <<set $activeSlave.oralCount++, $oralTotal++>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You tell $activeSlave.slaveName to diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw index 73ff17a85cdd8eeb0d40198e51b7503f1a95035e..76bba90f62b457a78474402bc6549bf36e0e9085 100644 --- a/src/npc/descriptions/fVagina.tw +++ b/src/npc/descriptions/fVagina.tw @@ -1,7 +1,7 @@ :: FVagina [nobr] <<SlaveTitle $activeSlave>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You call $him over so you can diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index 7fe29af33a8a364c1bc69d7f0237dc55f74b21ce..b4a73504009bca6a8973726c464d3326b5771e4f 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -1,6 +1,6 @@ :: FAbuse [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<if ($activeSlave.ID == $Bodyguard.ID)>> <<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 95)>> @@ -58,11 +58,11 @@ <<if $activeSlave.inflationMethod == 2>> which causes $him to discharge $his contained $activeSlave.inflationType all over $himself before collapsing into $his puddle on the floor in agony. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.cumSource = 0, $activeSlave.milkSource = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<else>> which causes $him to vomit up $his contained $activeSlave.inflationType all over $himself before collapsing into $his puddle on the floor in agony. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.cumSource = 0, $activeSlave.milkSource = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<elseif $activeSlave.bellyFluid >= 5000>> <<if random(1,100) > $activeSlave.devotion>> @@ -71,11 +71,11 @@ <<if $activeSlave.inflationMethod == 2>> which causes $him to discharge $his contained $activeSlave.inflationType all over $himself before collapsing into $his puddle on the floor in agony. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.cumSource = 0, $activeSlave.milkSource = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<else>> which causes $him to vomit up $his contained $activeSlave.inflationType all over $himself before collapsing into $his puddle on the floor in agony. <<set $activeSlave.inflation = 0, $activeSlave.inflationType = "none", $activeSlave.inflationMethod = 0, $activeSlave.cumSource = 0, $activeSlave.milkSource = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> <<else>> diff --git a/src/npc/fPCImpreg.tw b/src/npc/fPCImpreg.tw index 704849f2ff9f0b29e4b7b285494036fdae92c9fa..ef6e7577d4d2aa532dee793661e1420892d3f559 100644 --- a/src/npc/fPCImpreg.tw +++ b/src/npc/fPCImpreg.tw @@ -1,6 +1,6 @@ :: FPCImpreg [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set _bonus = random(6,20)>> <<if $activeSlave.mpreg == 1>> diff --git a/src/npc/fRelation.tw b/src/npc/fRelation.tw index 8eda66e062dce886dbe9391c0779dc3128483636..ffc5e76b56b0bae8429e49aa7300481214aec9b4 100644 --- a/src/npc/fRelation.tw +++ b/src/npc/fRelation.tw @@ -44,10 +44,10 @@ <</switch>> <</if>> <<Enunciate $activeSlave>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $slaves[$partner]>> +<<run clearSummaryCache($slaves[$partner])>> <<setLocalPronouns $slaves[$partner] 2>> You call both $activeSlave.slaveName and $slaves[$partner].slaveName to your office. diff --git a/src/npc/fRival.tw b/src/npc/fRival.tw index 20c7d39baf07d8963d7c01efe350fb03b1c86265..ac91bdb4c39260ebe4ccd974a123b845a03c16e6 100644 --- a/src/npc/fRival.tw +++ b/src/npc/fRival.tw @@ -1,9 +1,9 @@ :: FRival [nobr] <<set $partner = $slaveIndices[$activeSlave.rivalryTarget]>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $slaves[$partner]>> +<<run clearSummaryCache($slaves[$partner])>> <<setLocalPronouns $slaves[$partner] 2>> You call $activeSlave.slaveName to your office and let $him know you'll be abusing $slaves[$partner].slaveName together. diff --git a/src/npc/fSlaveImpregConsummate.tw b/src/npc/fSlaveImpregConsummate.tw index c9a0417fc5f053b8efbb338e97d02776f5366e4d..dd13e6fa8288f7f83ef2e78d4fa54a22cb654714 100644 --- a/src/npc/fSlaveImpregConsummate.tw +++ b/src/npc/fSlaveImpregConsummate.tw @@ -4,9 +4,9 @@ The first necessary step is to prepare the donatrix. <<set _penCountBonus = random(6,20), _analCountBonus = _penCountBonus, _vagCountBonus = _penCountBonus>> <<set $impregnatrix.penetrativeCount += _penCountBonus+1, $penetrativeTotal += _penCountBonus+1>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $impregnatrix>> +<<run clearSummaryCache($impregnatrix)>> <<setLocalPronouns $impregnatrix 2>> <<if ($impregnatrix.fetish == "pregnancy") && ($impregnatrix.fetishKnown == 1) && ($impregnatrix.fetishStrength > 60) && ($impregnatrix.devotion >= -20)>> diff --git a/src/npc/removeActiveSlave.tw b/src/npc/removeActiveSlave.tw index 9d2dd987304b54c96ca950f1599eab25460f46a6..44976f116e7395cd94fd4dcad01461eacec4d195 100644 --- a/src/npc/removeActiveSlave.tw +++ b/src/npc/removeActiveSlave.tw @@ -110,7 +110,7 @@ <</if>> /% Remove from facility array or leadership role, if needed %/ - <<removeJob $activeSlave $activeSlave.assignment>> + <<= removeJob($activeSlave, $activeSlave.assignment)>> <<if $traitor != 0>> <<if _ID == $traitor.pregSource>> diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw index e61e4ac35fd7e812d2a56d9b9e8f60beed9b70f8..f4c00a50aaa084067cf544ad708ec5e2cb785056 100644 --- a/src/pregmod/birthStorm.tw +++ b/src/pregmod/birthStorm.tw @@ -71,4 +71,4 @@ The remote surgery allows the removal of the pregnancy generator through convent <<set $activeSlave.pregKnown = 0>> <<set WombFlush($activeSlave)>> <<set $activeSlave.broodmother = 0>> -<<SetBellySize $activeSlave>> \ No newline at end of file +<<run SetBellySize($activeSlave)>> diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw index 4f6756e3f4a7945b910d0da1a4150c15f0da18a7..13ac02332b8227072f137e97a23af817ac421d65 100644 --- a/src/pregmod/csec.tw +++ b/src/pregmod/csec.tw @@ -2,7 +2,7 @@ <<set $nextButton = "Back", $nextLink = "Slave Interact">> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set _getFather = getSlave($activeSlave.pregSource)>> <<if def _getFather>> @@ -361,10 +361,10 @@ Since her <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared from <<set $activeSlave.bellyImplant = 130000>> <</if>> <<set $activeSlave.preg = -2>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</replace>> <</link>> <</if>> <</if>> <<set $activeSlave.cSec = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw index 501a1e057bd72ab7b4b3973ae5842c799cfde144..9e1203922189939bb23f57435478451e74a55acb 100644 --- a/src/pregmod/fDick.tw +++ b/src/pregmod/fDick.tw @@ -1,6 +1,6 @@ :: FDick [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> <<set _belly = bellyAdjective($activeSlave)>> diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index 906f4e1aa720fd7c5d36fbf82d6d3317f6ac1df3..ce4b3d058787e4c4f75dee3328f55101f9a144f5 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -1,6 +1,6 @@ :: FFeet [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<SlavePronouns $activeSlave>> <<set _footSeed = random(1,100)>> diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 51122926761bcbdd395580002a6d6ac7e4e7e37f..310c7eef2b3e159fddd8499f262a95450874b320 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -3,7 +3,7 @@ <<set $nextButton = "Back", $nextLink = "Slave Interact", $weddingSlaveID = $activeSlave.ID>> <<Enunciate $activeSlave>> <<set _belly = bellyAdjective($activeSlave)>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> <<setLocalPronouns $assistantPronouns 2>> diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw index 545bfb511f1a69f6035b8e74140a8fdcb0cb0640..dbf9a1019b7c46baf425f18706ebca1a5a8ed6f6 100644 --- a/src/pregmod/fPat.tw +++ b/src/pregmod/fPat.tw @@ -1,7 +1,7 @@ :: FPat [nobr] <<Enunciate $activeSlave>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> You tell $activeSlave.slaveName to diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index 7592aec7e94a10ae7c403989fa06bc21f7311ebc..200333011f19330ed7c37d3e1ac33add66708358 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -5,10 +5,10 @@ <<if $activeSlave.inflationType == "milk">> <<set $activeSlave.milkSource = $milkTap.ID>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $milkTap>> +<<run clearSummaryCache($milkTap)>> <<setLocalPronouns $milkTap 2>> The first necessary step is to prepare the milk cow and _his2 udders. @@ -765,6 +765,6 @@ Next, you see to $activeSlave.slaveName. <</if>> <</if>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $slaves[$slaveIndices[$milkTap.ID]] = $milkTap>> -<<set $milkTap = 0>> \ No newline at end of file +<<set $milkTap = 0>> diff --git a/src/pregmod/fSlaveSelfImpreg.tw b/src/pregmod/fSlaveSelfImpreg.tw index a21022959418def5e9f15d00b8a95328c333192e..ede8365bd639f6b0dea2f9d63c3446a43f729f44 100644 --- a/src/pregmod/fSlaveSelfImpreg.tw +++ b/src/pregmod/fSlaveSelfImpreg.tw @@ -1,6 +1,6 @@ :: FSlaveSelfImpreg [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> <<set _pfh = ($activeSlave.fetish == "pregnancy" && $activeSlave.fetishStrength > 50)>> diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw index 8e1344eefa774c5a17baa9840108d51eb0ed1fc0..3fe71925d893f9ffc55e362a3b65fdeca5521fce 100644 --- a/src/pregmod/fSlaveSlaveDickConsummate.tw +++ b/src/pregmod/fSlaveSlaveDickConsummate.tw @@ -1,9 +1,9 @@ :: FSlaveSlaveDick Consummate [nobr] <<set $nextButton = "Continue", $returnTo = $nextLink, $nextLink = "AS Dump">> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $slaverapistx>> +<<run clearSummaryCache($slaverapistx)>> <<setLocalPronouns $slaverapistx 2>> <<if $activeSlave.dick>> diff --git a/src/pregmod/fSlaveSlaveVagConsummate.tw b/src/pregmod/fSlaveSlaveVagConsummate.tw index 2d631559a12eecf6d1563a0965d360cbe708b74d..07f8af205eb65963b7584043af2caccddbd42183 100644 --- a/src/pregmod/fSlaveSlaveVagConsummate.tw +++ b/src/pregmod/fSlaveSlaveVagConsummate.tw @@ -1,8 +1,8 @@ :: FSlaveSlaveVag Consummate [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<ClearSummaryCache $slaverapistx>> +<<run clearSummaryCache($slaverapistx)>> <<setLocalPronouns $slaverapistx 2>> <<set $activeSlave.vaginalCount += 1>> diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw index caea3166e10302e02f269285b768fcff5a9d2394..d0dc27030a9079bd6de63fae64d8912bfd93c11a 100644 --- a/src/pregmod/fillUpButt.tw +++ b/src/pregmod/fillUpButt.tw @@ -1,6 +1,6 @@ :: FillUpButt [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set $activeSlave.bellyAccessory = "none">> <<set _pregDiscovery = 0>> You @@ -334,5 +334,5 @@ You look at $his rear while you squeeze $his cheeks and rub them with your firm <<elseif $activeSlave.inflation == 1>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his distended belly as $he goes<<else>>$His belly wobbles as $he is helped from your office<</if>>. <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw index 943f640d92682b3b642574ce5366d0c40ac4cc50..d87ae13647b13dabd82ddc65770d5fd9eb35b0c2 100644 --- a/src/pregmod/fillUpFace.tw +++ b/src/pregmod/fillUpFace.tw @@ -1,6 +1,6 @@ :: FillUpFace [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set $activeSlave.bellyAccessory = "none">> <<set _pregDiscovery = 0>> <<set _belly = bellyAdjective($activeSlave)>> @@ -228,5 +228,5 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <<elseif $activeSlave.inflation == 1>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his distended belly as $he goes<<else>>$His belly wobbles as $he is helped from your office<</if>>. <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw index bdb770da4e7ef8c7c33293603e3f5e9cf915f207..d6c961cc651849f440b611e80fd856da5887b370 100644 --- a/src/pregmod/forceFeeding.tw +++ b/src/pregmod/forceFeeding.tw @@ -1,6 +1,6 @@ :: forceFeeding [nobr] -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> <<set _belly = bellyAdjective($activeSlave)>> @@ -438,5 +438,4 @@ buckets overflowing with slave food. $He is going to eat it all and you're going <</if>> <<if $activeSlave.fetish == "mindbroken">>You question if the broken $girl understood your commands, but relish the idea of forcefeeding $him even more should $he fail you.<</if>> <</if>> -<<SetBellySize $activeSlave>> - +<<run SetBellySize($activeSlave)>> diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw index a45266e0aa6eb69d2d0fa8cce30e89c1d17571f3..33011f09dd1e34c426467309ddd2b3ddf85e5726 100644 --- a/src/pregmod/huskSlaveSwap.tw +++ b/src/pregmod/huskSlaveSwap.tw @@ -3,7 +3,7 @@ <<set $nextButton = "Continue">> <<set _oldSlave = clone($swappingSlave)>> <<set _m = $slaveIndices[$swappingSlave.ID]>> -<<ClearSummaryCache $slaves[_m]>> +<<run clearSummaryCache($slaves[_m])>> You strap $slaves[_m].slaveName, and the body to which $pronoun will be transferred, into the remote surgery and stand back as it goes to work. <<BodySwap $slaves[_m] $activeSlave>> @@ -25,12 +25,12 @@ $slaves[_m].slaveName's old body was bought by the Flesh Heap for <<print cashFo <<set $slaves[_myBody].origBodyOwnerID = 0>> <<if $slaves[_myBody].fetish != "mindbroken" && $slaves[_myBody].fuckdoll == 0>> <<if $slaves[_myBody].devotion > 20>> - $slaves[_myBody].slaveName is somwhat saddened to see her body leave forever. + $slaves[_myBody].slaveName is somewhat saddened to see her body leave forever. <<elseif $slaves[_myBody].devotion >= -50>> - $slaves[_myBody].slaveName is @@.medimorchid;disturbed@@ to find her body is gone for good, damaging her @@.gold;ability to trust you.@@ + $slaves[_myBody].slaveName is @@.mediumorchid;disturbed@@ to find her body is gone for good, damaging her @@.gold;ability to trust you.@@ <<set $slaves[_myBody].devotion -= 30, $slaves[_myBody].trust -= 30>> <<else>> - $slaves[_myBody].slaveName is @@.medimorchid;deeply upset@@ that she'll never see her body again. With so little left, she finds it easy to take vengeance by @@.orangered;completely rejecting your ownership of her.@@ + $slaves[_myBody].slaveName is @@.mediumorchid;deeply upset@@ that she'll never see her body again. With so little left, she finds it easy to take vengeance by @@.orangered;completely rejecting your ownership of her.@@ <<set $slaves[_myBody].devotion -= 50, $slaves[_myBody].trust = 100>> <</if>> <</if>> diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index b64ac6b40fd174d7bb5b223babc311136cd59d94..ef88765aadcc69c4b472361ba46c74c9d7b147b8 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -1028,7 +1028,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <<set $activeSlave.anus = Math.clamp($activeSlave.anus, 3, 4)>> <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina = Math.clamp($activeSlave.vagina, 3, 4)>><</if>> <<set $activeSlave.analCount += 10, $analTotal += 10>> - <<assignJob $activeSlave "dairy">> + <<= assignJob($activeSlave, "dairy")>> <<replace "#result">> You order <<if $HeadGirl == 0>>another slave<<else>>$HeadGirl.slaveName<</if>> to get $activeSlave.slaveName set up in $dairyName. The new slave does not know what $dairyName is, not really, and she doesn't know what being set up there means, either. If she knew that you are able to send her there so blithely only because it is equipped with a special preparatory raper that will seize her, <<if $activeSlave.vagina > -1>>mercilessly fuck her pussy and ass until both are gaped<<else>>ream her anus until it's cavernously gaped<</if>>, and then consign her to constant fucking by gargantuan machine phalli, she might resist. But she doesn't, so she does not. <</replace>> @@ -1044,7 +1044,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <<set $activeSlave.vaginalCount += 10, $vaginalTotal += 10>> <</if>> <<set $activeSlave.analCount += 10, $analTotal += 10>> - <<assignJob $activeSlave "dairy">> + <<= assignJob($activeSlave, "dairy")>> <<replace "#result">> Making use of her blissful ignorance, you restrain her on one of the chairs in your office in an approximation of the position she'll occupy in $dairyName. Then you put a mask on her, like the ones the machines there feature, and turn it on, watching the slave squirm against her restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed her, and to keep your office reasonably quiet. Then, for the rest of the day, you use her vulnerable <<if $activeSlave.vagina > -1>>holes<<else>>asshole<</if>> as an outlet for your sexual energy. You are not gentle; in fact, the point of the whole exercise is to gape her. By the evening she's been fucked so hard that she's stopped jerking against the chair when you pound <<if $PC.dick == 1>>your huge cock<<else>>a huge strap-on<</if>> in and out of her, so you're obliged to get creative, sliding fingers in alongside <<if $PC.dick == 1>>yourself<<else>>it<</if>> to really blow her out. Once that gets too easy, you start adding dildos for double penetration. By the night she's properly prepared to take $dairyName's giant phalli, and you're bored, so you consign her to her fate. She might have some opinion on how she's spent her day, but it's unlikely she'll remember it by tomorrow, what with the forearm-sized dildos sliding in and out of her<<if $activeSlave.vagina > -1>> cunt,<</if>> throat, and asshole. <</replace>> @@ -1063,7 +1063,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <</link>> <<if ($arcade > $arcadeSlaves) || ($arcadeUpgradeFuckdolls != 0)>> <br><<link "Send her straight to the Arcade">> - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.assignmentVisible = 0>> <<set $activeSlave.choosesOwnAssignment = 0>> <<replace "#result">> @@ -1286,7 +1286,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <<set $activeSlave.bellyImplant = 200000>> <<set $cash -= $surgeryCost>> <<set $activeSlave.health -= 50>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<replace "#result">> You escort her to the remote surgery, strap her in, and put her under. When she awakes from her induced coma, she nearly faints at the sight of her immense middle. She's @@.hotpink;deliriously happy@@ at her hugeness and @@.mediumaquamarine;squirms happily@@ when she hears you can make it bigger, despite the fact that it is nearly as large as she is and pins her to the bed she lies upon. As it was an invasive surgery, @@.red;her health has been greatly affected.@@ <</replace>> @@ -1298,7 +1298,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s <<set $activeSlave.bellyImplant = 2000>> <<set $cash -= $surgeryCost>> <<set $activeSlave.health -= 10>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<replace "#result">> You escort her to the remote surgery, strap her in, and put her under. When she awakes, she can't keep her hands off her new bulbous middle. She's @@.hotpink;deliriously happy@@ that she has her own round belly and @@.mediumaquamarine;bounces cheerfully@@ when she hears you can make it bigger. As with all surgery @@.red;her health has been slightly affected.@@ <</replace>> //This option costs <<print cashFormat($surgeryCost)>>// diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index 06f53c0a2127e768c7b5d121c046c6c05a816935..2eb32e8b27081f190f2199bf08da28bcbf4b2214 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -171,7 +171,7 @@ Now the only question is what to do with the would-be rapist. You could toss the <</link>> <<if $arcade > 0>> <br><<link "Enslave her and sentence her to a month in the arcade">> - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <<set $cash -= $contractCost>> <<replace "#result">> @@ -183,7 +183,7 @@ Now the only question is what to do with the would-be rapist. You could toss the <<if $dairy > 0>> <<if $dairyRestraintsSetting > 1>> <br><<link "Enslave her and send her straight to the industrial dairy">> - <<assignJob $activeSlave "work in the dairy">> + <<= assignJob($activeSlave, "work in the dairy")>> <<set $cash -= $contractCost>> <<replace "#result">> You complete the legalities and biometric scanning quickly and cautiously. The idiot will wake up <<if $dairyStimulatorsSetting > 1>>in agony as her anus takes the rectal hydration dildo<<else>>to find her chest has begun swelling with milk<</if>>. diff --git a/src/pregmod/saAgent.tw b/src/pregmod/saAgent.tw index 7d7401cdd889060fd9d9f559fb0fca949c5c49d7..56736a4be2e39d00d49733f5abaa328b4dacde3f 100644 --- a/src/pregmod/saAgent.tw +++ b/src/pregmod/saAgent.tw @@ -384,7 +384,7 @@ <</if>> <</if>> -<<SetBellySize $slaves[$i]>> /*Actually it's now better to set belly size without checking of any conditions. Just to be sure. Should correct forgotten variables too. */ +<<run SetBellySize($slaves[$i])>> /*Actually it's now better to set belly size without checking of any conditions. Just to be sure. Should correct forgotten variables too. */ <<if ($slaves[$i].hStyle != "shaved" && $slaves[$i].bald != 1 && $slaves[$i].haircuts == 0) && ($slaves[$i].hLength < 150)>> <<set $slaves[$i].hLength += 1>> diff --git a/src/pregmod/saInflation.tw b/src/pregmod/saInflation.tw index 7ed3e4f88b203a022d99f65dd87739e91552fef3..bd836d5e62469d473fb5858d429439b5248281c5 100644 --- a/src/pregmod/saInflation.tw +++ b/src/pregmod/saInflation.tw @@ -1,15 +1,15 @@ :: SA inflation [nobr] <<if $slaves[$i].assignment == "be confined in the arcade" || $slaves[$i].assignment == "work in the dairy">> - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].bellyImplant >= 1500>> <<if $slaves[$i].inflation > 1>> Due to the mounting pressure from $possessive filled abdominal implant, $pronoun can no longer fill herself as large as $pronoun used to. <<set $slaves[$i].inflation = 1>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<else>> <<set $slaves[$i].bellyFluid = 2000>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <</if>> @@ -104,7 +104,7 @@ <</if>> <<if $slaves[$i].health >= 90>> $pronounCap is as healthy as $object can be. @@.yellow;$possessiveCap enema regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <</if>> <<set $slaves[$i].chem += 2, $slaves[$i].health += $curativeUpgrade*6>> @@ -176,7 +176,7 @@ $possessiveCap hole<<if $slaves[$i].vagina >= 0>>s are<<else>> is<</if>> as tight as the drugs can get <<if $slaves[$i].vagina >= 0>>them<<else>>it<</if>>, but given $possessive assignment, $pronoun is likely to be stretched out again so $possessive enema regimen continues. <<else>> $possessiveCap hole<<if $slaves[$i].vagina >= 0>>s are<<else>> is<</if>> as tight as the drugs can get <<if $slaves[$i].vagina >= 0>>them<<else>>it<</if>>. @@.yellow;$possessiveCap enema regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <</if>> <</if>> <<set $slaves[$i].chem += 2>> @@ -186,7 +186,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap struggles to keep $possessive fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -200,7 +200,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ fills $possessive rectum from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap struggles to keep the fattening load inside $object, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -215,7 +215,7 @@ <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap struggles to keep $possessive fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -231,7 +231,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;eagerly@@ sucks from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap rubs $possessive full belly @@.mediumaquamarine;contently@@, anticipating $possessive next gorging. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> @@ -245,7 +245,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;happily@@ fills $possessive rectum from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap rubs $possessive taut belly @@.mediumaquamarine;contently@@, though $pronoun wishes $pronoun could have swallowed it instead. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> @@ -260,7 +260,7 @@ <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap rubs $possessive full belly @@.mediumaquamarine;contently@@, anticipating $possessive next gorging. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> @@ -276,7 +276,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure to keep herself filled with nearly two gallons of milk, leaving $object looking ready to burst. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> @@ -288,7 +288,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure to fill $possessive rear with nearly two gallons of milk, leaving $object looking ready to burst, whenever $pronoun leaks or needs to release $possessive load. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> @@ -301,7 +301,7 @@ <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure keep suckling from $slaves[_saf].slaveName until $pronoun is filled with nearly two gallons of milk, leaving $object looking ready to give birth. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> @@ -318,7 +318,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap struggles to keep $possessive liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -332,7 +332,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ fills $possessive rectum from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap struggles to keep the massive cumshot inside $object, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -347,7 +347,7 @@ <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap struggles to keep $possessive liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> @@ -363,7 +363,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;eagerly@@ sucks from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap rubs $possessive full belly @@.mediumaquamarine;contently@@, anticipating $possessive next gorging. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> @@ -377,7 +377,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;happily@@ fills $possessive rectum from the dairy tap until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap rubs $possessive taut belly @@.mediumaquamarine;contently@@, though $pronoun wishes $pronoun could have swallowed it instead. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> @@ -392,7 +392,7 @@ <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $possessive stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap rubs $possessive full belly @@.mediumaquamarine;contently@@, anticipating $possessive next gorging. <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> @@ -408,7 +408,7 @@ <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure to keep herself filled with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> @@ -420,7 +420,7 @@ <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure to fill $possessive rear with nearly two gallons of cum, leaving $object looking ready to burst, whenever $pronoun leaks or needs to release $possessive load. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> @@ -433,7 +433,7 @@ <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> $slaves[$j].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ - <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $pronoun makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $pronoun is filled with nearly two gallons of cum, leaving $object looking ready to burst. $pronounCap keeps herself @@.red;painfully full@@ for you. <<set $slaves[$i].health -= 10>> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index 4d9b411055834057dc0e2cc011f9ddb3f63469d5..5cac0d35f072ffb38aff53fe9bc99d8f6473a99a 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -184,7 +184,7 @@ Tired after a long day, you tell <<if $Concubine != 0>>@@.pink;$Concubine.slaveN <</if>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.pregAdaptation = 300>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.lips = random(20,50)>> diff --git a/src/pregmod/slaveSlaveSwap.tw b/src/pregmod/slaveSlaveSwap.tw index 1a77380e29c0abf040ab11902a96919e0de54a6c..8073429dc45c541a83f3e8b4dd62e20137a0a598 100644 --- a/src/pregmod/slaveSlaveSwap.tw +++ b/src/pregmod/slaveSlaveSwap.tw @@ -10,8 +10,8 @@ <<set _gps2 = $genePool.findIndex(function(s) { return s.ID == $slaves[_ss2].ID; })>> <<set _gps2Clone = clone($genePool[_gps2])>> -<<ClearSummaryCache $slaves[_ss1]>> -<<ClearSummaryCache $slaves[_ss2]>> +<<run clearSummaryCache($slaves[_ss1])>> +<<run clearSummaryCache($slaves[_ss2])>> You strap $activeSlave.slaveName and $swappingSlave.slaveName into the remote surgery and stand back as it goes to work. <<BodySwap $slaves[_ss1] _ss2Clone 1>> /* passing a third argument just to detect if it's a slave from the genepool */ diff --git a/src/pregmod/slaveSlaveSwapWorkaround.tw b/src/pregmod/slaveSlaveSwapWorkaround.tw index 76b90510f118182c4eff0f459eb4ae0ea45e5a51..8c6bf16bc64d1a80ee962218ab1d76ac29554129 100644 --- a/src/pregmod/slaveSlaveSwapWorkaround.tw +++ b/src/pregmod/slaveSlaveSwapWorkaround.tw @@ -1,6 +1,7 @@ :: Slave Slave Swap Workaround [nobr] <<set $nextButton = "Abort Operation", $nextLink = "Main">> +<<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>> The surgeon awaits the pair of slaves to be strapped into the surgery. So far only $activeSlave.slaveName is prepped: <br> diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index 33e74f67602a86e0b16d4154f9294fb7e89c6070..caf2df129710053339f13ab2d24d2807183fbc46 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -171,7 +171,7 @@ <<set $args[0].canRecruit = 0>> /* <<if def $args[2]>> - <<assignJob $args[0] "rest">> + <<= assignJob($args[0], "rest")>> <</if>> */ diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index 3da276b8be27d254628e0eb568ba4a2e9beb8f1a..12f38c950000cba25ef75190fe93d49403e6d426 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -240,7 +240,7 @@ <<set $args[0].pregWeek = 0>> <</if>> <</if>> -<<SetBellySize $args[0]>> +<<run SetBellySize($args[0])>> <<if ndef $args[0].pubertyXX>> <<if $args[0].physicalAge >= $args[0].pubertyAgeXX>> @@ -757,7 +757,7 @@ $activeSlave.slaveName is up for review: <<set $activeSlave.breedingMark = 1, $activeSlave.pregControl = "none">> <</if>> <br>@@.yellowgreen;<<print cashFormat(5000)>>@@ has been deducted from your account as agreed. -<<removeJob $activeSlave $activeSlave.assignment>> +<<= removeJob($activeSlave, $activeSlave.assignment)>> <</widget>> <<widget "PlayerRace">> diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index 91f876f50ceb42e214674c33078298f46da8dee5..2d9c0c027334bff99fa420ec771b94607f9df8da 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -987,7 +987,7 @@ All in all, <</if>> <<set $csec = 0>> -<<SetBellySize $slaves[$i]>> +<<run SetBellySize($slaves[$i])>> <</widget>> diff --git a/src/pregmod/widgets/slaveSummaryWidgets.tw b/src/pregmod/widgets/slaveSummaryWidgets.tw index 3a0877f83de0b8730d748a80a8c2514c8cc1faed..0d44465022795f0633466c212c456c2774889a25 100644 --- a/src/pregmod/widgets/slaveSummaryWidgets.tw +++ b/src/pregmod/widgets/slaveSummaryWidgets.tw @@ -24,10 +24,6 @@ <</if>> <</widget>> -<<widget "ClearSummaryCache">> - <<run clearSummaryCache($args[0])>> -<</widget>> - <<widget "SlaveSummaryUncached">> <<set _Slave = $args[0]>> <<if $abbreviateDevotion == 1>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 13b31abb99eaef2fbbcf5b5ef442a21d6a2a7558..59c1a5496af640c3b61f947061b936bf6bd56a15 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -7054,7 +7054,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -7067,7 +7067,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<replace "#result">> You order $activeSlave.slaveName confined until further notice. $activeSlave.slaveName is @@.hotpink;a little crushed@@ by her failure to escape. However, every single one of your other slaves not already obedient to you is slightly @@.mediumaquamarine;encouraged in her trust that you won't hurt her@@ by this moderate punishment of an escape attempt. <<set $activeSlave.devotion += 4>> - <<assignJob $activeSlave "stay confined">> + <<= assignJob($activeSlave, "stay confined")>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust += 4; } })>> <</replace>> <</link>> @@ -7159,7 +7159,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -7242,7 +7242,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -8625,7 +8625,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -8877,7 +8877,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -10994,7 +10994,7 @@ You tell her kindly that you understand, and that she'll be trained to address t Her thin form makes immuring her in the arcade pathetically easy. <</if>> After she's properly confined, the only sign of her discomfiture is a slight movement of her butt as she wriggles desperately against her restraints. - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> <</link>> @@ -13029,7 +13029,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<else>> <<set $activeSlave.inflation = 3>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</replace>> <</link>> <<if ($cumSlaves >= 5) && (($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown == 0))>> @@ -13038,7 +13038,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<replace "#result">> You meet her in time for her next meal and tell her that you're aware of her stealing. You tell her that you understand her need to eat, and that for the rest of the week you'll mercifully be allowing her to try a new diet on which she can eat as much as she wants. She's overjoyed to hear it, though this pleasure is replaced with extreme disgust when she learns that her only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and she spends most of the week going around with a @@.hotpink;preoccupied@@ look on her face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, she's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate. <<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</replace>> <</link>> <</if>> diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw index 2554f855138309bf5b357901bc190bbf9cebd42e..71284883363cdabb9c89247445885fa2048b2dfe 100644 --- a/src/uncategorized/REroyalblood.tw +++ b/src/uncategorized/REroyalblood.tw @@ -121,7 +121,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = 7>> <<set $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.shoulders = random(-1,1)>> diff --git a/src/uncategorized/arcade.tw b/src/uncategorized/arcade.tw index 8ff694c94ba674fca4960bcedcbfda46ca30c982..a982751c35b203c68bd1f496b650b5fcd2b4dd40 100644 --- a/src/uncategorized/arcade.tw +++ b/src/uncategorized/arcade.tw @@ -79,7 +79,7 @@ $arcadeNameCaps <<set _NewPop = $arcadeSlaves+$dormitoryPopulation>> <<link "Remove all slaves" "Arcade">> <<for $arcadeSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$ArcadeiIDs[0]]] "work a glory hole">> + <<= assignJob($slaves[$slaveIndices[$ArcadeiIDs[0]]], "work a glory hole")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw index e9ea3a90660f29028fcc1d743e8bbfd174fa5793..3278b4a0f15b15ccef081b9cbe402fe737c029d6 100644 --- a/src/uncategorized/arcadeReport.tw +++ b/src/uncategorized/arcadeReport.tw @@ -128,7 +128,7 @@ <</if>> <<if ($slaves[$i].inflation > 0)>> <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <<if $showEWD != 0>> <br> diff --git a/src/uncategorized/assign.tw b/src/uncategorized/assign.tw index 8123183ad6c51bb1f90e9d88eaa47c4a942f8593..c8d5757e3160dcc63b0637e6eab6b9f3db0a68cb 100644 --- a/src/uncategorized/assign.tw +++ b/src/uncategorized/assign.tw @@ -18,7 +18,7 @@ <<goto $returnTo>> <<default>> - <<assignJob $activeSlave $assignTo>> + <<= assignJob($activeSlave, $assignTo)>> <<if ($showAssignToScenes == 1) && ($activeSlave.fetish != "mindbroken")>> <<if ($assignTo == "Dairy") && (($dairyStimulatorsSetting >= 2) || ($dairyFeedersSetting >= 2) || ($dairyPregSetting >= 2))>> diff --git a/src/uncategorized/attendantWorkaround.tw b/src/uncategorized/attendantWorkaround.tw index a9e497b65f737c4d430d8769b8ebf4f10fc15f2b..025ad2641be7ef284625d585151d0e2003e73aa4 100644 --- a/src/uncategorized/attendantWorkaround.tw +++ b/src/uncategorized/attendantWorkaround.tw @@ -1,10 +1,10 @@ :: Attendant Workaround [silently] <<if $Attendant != 0>> - <<removeJob $Attendant "be the Attendant">> + <<= removeJob($Attendant, "be the Attendant")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Attendant">> + <<= assignJob($slaves[$i], "be the Attendant")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Attendant = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 49f24ac6e0a3165ac62c850548fdbd1c80cf9f9e..190faad1cbd905140e622a7e73de350c0bbc540f 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -1,7 +1,7 @@ :: Body Modification [nobr] <<set $nextButton = "Continue", $nextLink = "Slave Interact">> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<SlavePronouns $activeSlave>> <<Enunciate $activeSlave>> diff --git a/src/uncategorized/bodyguardWorkaround.tw b/src/uncategorized/bodyguardWorkaround.tw index bcb310087145bf7c19a54cf977d5535fcf569246..6da994d4579960b33dc260e48a862e6d4cd4f403 100644 --- a/src/uncategorized/bodyguardWorkaround.tw +++ b/src/uncategorized/bodyguardWorkaround.tw @@ -1,10 +1,10 @@ :: Bodyguard Workaround [silently] <<if $Bodyguard != 0>> - <<removeJob $Bodyguard "guard you">> + <<= removeJob($Bodyguard, "guard you")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "guard you">> + <<= assignJob($slaves[$i], "guard you")>> <<set $Bodyguard = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw index f6975eac09f8f32426be3953be2a8e7f83f6519f..6255219b18d7a8d81c4e3aa2637432b34a5aec8c 100644 --- a/src/uncategorized/brothel.tw +++ b/src/uncategorized/brothel.tw @@ -148,10 +148,10 @@ $brothelNameCaps <<set _NewPop = $brothelSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Brothel">> <<if $Madam != 0>> - <<assignJob $Madam "rest">> + <<= assignJob($Madam, "rest")>> <</if>> <<for $brothelSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$BrothiIDs[0]]] "whore">> + <<= assignJob($slaves[$slaveIndices[$BrothiIDs[0]]], "whore")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw index bfc18c7395a30a02d3647e17e811c33e2a3ee3d7..450f46a28a181f53afc9a1b9a985c8d65bf0c00a 100644 --- a/src/uncategorized/cellblock.tw +++ b/src/uncategorized/cellblock.tw @@ -75,10 +75,10 @@ $cellblockNameCaps <<set _NewPop = $cellblockSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Cellblock">> <<if $Wardeness != 0>> - <<assignJob $Wardeness "rest">> + <<= assignJob($Wardeness, "rest")>> <</if>> <<for $cellblockSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$CellBiIDs[0]]] "stay confined">> + <<= assignJob($slaves[$slaveIndices[$CellBiIDs[0]]], "stay confined")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw index 777c866c236b919062fcd37e340fb08baea1dec1..8aec90cd1e84dde16510fc3e4d31103021dadeb2 100644 --- a/src/uncategorized/cellblockReport.tw +++ b/src/uncategorized/cellblockReport.tw @@ -191,7 +191,7 @@ <<set $slaves[$i].livingRules = "normal">> <<if ($slaves[$i].inflation > 0)>> <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <<case "Pastoralist">> <<set $slaves[$i].livingRules = "spare">> @@ -201,7 +201,7 @@ <<else>> <<set $slaves[$i].inflation = 1, $slaves[$i].inflationType = "milk", $slaves[$i].inflationMethod = 1>> <</if>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <<case "Hedonistic">> <<set $slaves[$i].livingRules = "spare">> @@ -217,13 +217,13 @@ <<else>> <<set $slaves[$i].inflation = 1, $slaves[$i].inflationType = "food", $slaves[$i].inflationMethod = 1>> <</if>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <<default>> <<set $slaves[$i].livingRules = "spare">> <<if ($slaves[$i].inflation > 0)>> <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <</switch>> <<if $cellblockUpgrade == 1>> diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw index 86f76f53f56f26788eeb832ef548cd040fde4886..55e03c049f848f4033086dd265fd7be76f953320 100644 --- a/src/uncategorized/clinic.tw +++ b/src/uncategorized/clinic.tw @@ -75,10 +75,10 @@ $clinicNameCaps <<set _NewPop = $clinicSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Clinic">> <<if $Nurse != 0>> - <<assignJob $Nurse "rest">> + <<= assignJob($Nurse, "rest")>> <</if>> <<for $clinicSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$CliniciIDs[0]]] "rest">> + <<= assignJob($slaves[$slaveIndices[$CliniciIDs[0]]], "rest")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw index 19cc8771556908a8889178943801c7701930e725..27fa4a83ea888510493c5cc74e302b0b2406a18b 100644 --- a/src/uncategorized/clinicReport.tw +++ b/src/uncategorized/clinicReport.tw @@ -277,7 +277,7 @@ <<elseif ($Nurse != 0) && ($clinicInflateBelly > 0) && ($slaves[$i].bellyImplant >= 0) && ($slaves[$i].bellyImplant <= ($arcologies[0].FSTransformationFetishistResearch ? 800000 : 130000))>> <<else>> <br><br>''__@@.pink;$slaves[$i].slaveName@@__'' has been returned to health<<if ($Nurse != 0) && ($clinicUpgradeFilters == 1)>> and purity<</if>>, so @@.yellow;her assignment has defaulted to rest.@@ - <<removeJob $slaves[$i] "get treatment in the clinic">> + <<= removeJob($slaves[$i], "get treatment in the clinic")>> <<set _restedSlaves++, _dI--, _DL-->> <<continue>> <</if>> diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw index eb61cebaf7bb3ee8288ada639cff7409de47f162..8e3741a3e1bc7cd895434971aa3bb41e8df78844 100644 --- a/src/uncategorized/club.tw +++ b/src/uncategorized/club.tw @@ -148,10 +148,10 @@ $clubNameCaps <<set _NewPop = $clubSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Club">> <<if $DJ != 0>> - <<assignJob $DJ "rest">> + <<= assignJob($DJ, "rest")>> <</if>> <<for $clubSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$ClubiIDs[0]]] "serve the public">> + <<= assignJob($slaves[$slaveIndices[$ClubiIDs[0]]], "serve the public")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/completeCatalog.tw b/src/uncategorized/completeCatalog.tw index 73b2f6ac899f8aa33e4baa6d0a0b100fa71ef8c9..e4c3e6123d23f86ba6a0b8b004bc417be5887acd 100644 --- a/src/uncategorized/completeCatalog.tw +++ b/src/uncategorized/completeCatalog.tw @@ -11,7 +11,7 @@ <<print "[[$heroSlaves[$i].slaveName|Complete Catalog][$activeSlave = getHeroSlave($heroSlaves[" + $i + "], $baseHeroSlave)]]">> <</for>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $specialSlavesPriceOverride = 1>> <<NationalityToAccent $activeSlave>> <<if $familyTesting == 1>> diff --git a/src/uncategorized/concubineWorkaround.tw b/src/uncategorized/concubineWorkaround.tw index 92d6e9901aab01716e2545d676399c5fcd76359d..e7dd5de3e750d8b9869ccd8714d39e891b8939fa 100644 --- a/src/uncategorized/concubineWorkaround.tw +++ b/src/uncategorized/concubineWorkaround.tw @@ -1,10 +1,10 @@ :: Concubine Workaround [silently] <<if $Concubine != 0>> - <<removeJob $Concubine "be your Concubine">> + <<= removeJob($Concubine, "be your Concubine")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be your Concubine">> + <<= assignJob($slaves[$i], "be your Concubine")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Concubine = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw index 89ed7378d28aca424cd27289746ea8f0fba83b6e..a811c9d641e686b599c15ac2f53602f7f58a1232 100644 --- a/src/uncategorized/dairy.tw +++ b/src/uncategorized/dairy.tw @@ -27,7 +27,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<if ($Milkmaid != 0) && ($dairyRestraintsSetting == 2)>> $Milkmaid.slaveName has been removed from her position as Milkmaid, since an industrialized dairy automates her duties. - <<removeJob $Milkmaid "be the Milkmaid">> + <<= removeJob($Milkmaid, "be the Milkmaid")>> <br><br> <</if>> @@ -42,7 +42,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set _i = $slaveIndices[$DairyiIDs[_Di]]>> <<if ($slaves[_i].vagina > -1) && ($slaves[_i].vagina < 3)>> $slaves[_i].slaveName's milking machine ejects her, since it cannot fit the mandated dildo into her tight cunt. - <<removeJob $slaves[_i] "work in the dairy">> + <<= removeJob($slaves[_i], "work in the dairy")>> <<set _DL--, _Di-->> <</if>> <<if ($dairyPregSetting > 0)>> @@ -50,7 +50,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $slaves[_i].reservedChildren = 0>> <<if (($slaves[_i].broodmother > 0) || ($slaves[_i].bellyImplant != -1))>> $slaves[_i].slaveName's milking machine ejects her, since it detected a foreign body in her womb blocking its required functions. - <<removeJob $slaves[_i] "work in the dairy">> + <<= removeJob($slaves[_i], "work in the dairy")>> <<set _DL--, _Di-->> <</if>> <</if>> @@ -76,7 +76,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set _i = $slaveIndices[$DairyiIDs[_Di]]>> <<if ($slaves[_i].anus < 3)>> $slaves[_i].slaveName's milking machine ejects her, since it cannot fit its massive anal dildo up her tight asshole. - <<removeJob $slaves[_i] "work in the dairy">> + <<= removeJob($slaves[_i], "work in the dairy")>> <<set _DL--, _Di-->> <</if>> <</for>> @@ -102,7 +102,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set _i = $slaveIndices[$DairyiIDs[_Di]]>> <<if ($slaves[_i].indentureRestrictions >= 2)>> $slaves[_i].slaveName's milking machine declines to restrain her, since she is encoded as an indentured servant protected from restraint for milking. - <<removeJob $slaves[_i] "work in the dairy">> + <<= removeJob($slaves[_i], "work in the dairy")>> <<set _DL--, _Di-->> <</if>> <</for>> @@ -117,7 +117,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set _i = $slaveIndices[$DairyiIDs[_Di]]>> <<if ($slaves[_i].indentureRestrictions >= 1)>> $slaves[_i].slaveName's milking machine declines to restrain her, since she is encoded as an indentured servant protected from being restrained for milking. - <<removeJob $slaves[_i] "work in the dairy">> + <<= removeJob($slaves[_i], "work in the dairy")>> <<set _DL--, _Di-->> <</if>> <</for>> @@ -309,10 +309,10 @@ $dairyNameCaps <<set _NewPop = $dairySlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Dairy">> <<if $Milkmaid != 0>> - <<assignJob $Milkmaid "rest">> + <<= assignJob($Milkmaid, "rest")>> <</if>> <<for $dairySlaves > 0>> - <<assignJob $slaves[$slaveIndices[$DairyiIDs[0]]] "get milked">> + <<= assignJob($slaves[$slaveIndices[$DairyiIDs[0]]], "get milked")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw index 0cd3ccc4fc753c4ecb20a15874c4a14dadb582de..88e5f99a4144d751281ea6e8cdc38937444f79bb 100644 --- a/src/uncategorized/dairyReport.tw +++ b/src/uncategorized/dairyReport.tw @@ -404,7 +404,7 @@ <</if>> <<if ($slaves[$i].inflation > 0)>> <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <<if ($slaves[$i].lactation > 0) && (($dairySlimMaintain == 0) || ($slaves[$i].boobs > 700))>> <<if ($slaves[$i].boobs < 2000)>> diff --git a/src/uncategorized/djWorkaround.tw b/src/uncategorized/djWorkaround.tw index f41e43e0ca1104f44f8839609e5567d52fc26be0..90f00e21c8170382b041d39d7d867e7250205126 100644 --- a/src/uncategorized/djWorkaround.tw +++ b/src/uncategorized/djWorkaround.tw @@ -1,10 +1,10 @@ :: DJ Workaround [silently] <<if $DJ != 0>> - <<removeJob $DJ "be the DJ">> + <<= removeJob($DJ, "be the DJ")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the DJ">> + <<= assignJob($slaves[$i], "be the DJ")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $DJ = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/fullReport.tw b/src/uncategorized/fullReport.tw index 47d165bc6c3963e79cd355b576d6494960165dd8..a94cdf59bdc72bc9d6ac296bdcac644af7be2434 100644 --- a/src/uncategorized/fullReport.tw +++ b/src/uncategorized/fullReport.tw @@ -39,7 +39,7 @@ <<case "recruit girls">> <<include "SA recruit girls">> <<default>> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <<= saRest($slaves[$i])>> <</switch>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 7af245f0071a517eb8135b4a88189a85e8124bf7..5900f1789764120eea65a5f77c4f4638db5aef76 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -339,7 +339,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.pregType = either(1, 1, 1, 1, 1, 1, 2)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.health = random(-10,10)>> <<set $activeSlave.vagina = random(1,3)>> <<set $activeSlave.boobs += 100*random(0,2)>> @@ -605,7 +605,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $slaves[$i].pregType = random(10,25)>> <<set $slaves[$i].pregKnown = 1>> <<set $slaves[$i].pregWeek = 1>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<elseif $slaves[$i].drugs == "breast injections">> <<set $slaves[$i].lactation = 1>> <<if ($slaves[$i].inducedNCS == 0) && ($slaves[$i].hips < 1)>> @@ -637,7 +637,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $slaves[$i].pregType = random(15,35)>> <<set $slaves[$i].pregKnown = 1>> <<set $slaves[$i].pregWeek = 1>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<elseif $slaves[$i].drugs == "intensive breast injections">> <<set $slaves[$i].lactation = 1>> <<if ($slaves[$i].inducedNCS == 0) && ($slaves[$i].hips < 1)>> @@ -669,7 +669,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $slaves[$i].pregType = random(20,45)>> <<set $slaves[$i].pregKnown = 1>> <<set $slaves[$i].pregWeek = 1>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<elseif $slaves[$i].drugs == "hyper breast injections">> <<set $slaves[$i].lactation = 1>> <<if ($slaves[$i].inducedNCS == 0) && ($slaves[$i].hips < 1)>> diff --git a/src/uncategorized/hgWorkaround.tw b/src/uncategorized/hgWorkaround.tw index a87de77ce3d6264a62c088b79137ef2fab3cec66..5f0a3889f47cad372bee79a089de31eeb5f69488 100644 --- a/src/uncategorized/hgWorkaround.tw +++ b/src/uncategorized/hgWorkaround.tw @@ -1,10 +1,10 @@ :: HG Workaround [silently] <<if $HeadGirl != 0>> - <<removeJob $HeadGirl "be your Head Girl">> + <<= removeJob($HeadGirl, "be your Head Girl")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be your Head Girl">> + <<= assignJob($slaves[$i], "be your Head Girl")>> <<set $HeadGirl = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index d10f4dc8b9a5d0e3bacd2635628762d66cd3d41c..87010a844626525c98e0850c9ae426fae75e3ca6 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -22,7 +22,7 @@ <<set $activeSlave.preg = random(5,38)>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> If she was unable to become pregnant before, she has been made to now. She is fertilized surgically to insure a healthy pregnancy. <</if>> @@ -87,7 +87,7 @@ <<set $activeSlave.pregType = 0>> <<set $activeSlave.pregKnown = 0>> <<set WombFlush($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.balls = 0>> <<set $activeSlave.ovaries = 0>> As a member of the lowest class,<<if $activeSlave.preg > 0>> her pregnancy is immediately terminated, and<</if>> she is promptly sterilized to prevent her from passing on her useless genes. @@ -455,7 +455,7 @@ a physical exam, and more. <<set $activeSlave.pregType = 0>> <<set $activeSlave.pregKnown = 0>> <<set WombFlush($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.devotion -= 10>> <<set $activeSlave.trust -= 10>> <<else>> diff --git a/src/uncategorized/madamWorkaround.tw b/src/uncategorized/madamWorkaround.tw index 4c3d6432a10662bc775c4486c8dd3cbc4a1a5f58..241a97c7fb5af68a87fc51877d7db53c9916ae74 100644 --- a/src/uncategorized/madamWorkaround.tw +++ b/src/uncategorized/madamWorkaround.tw @@ -1,10 +1,10 @@ :: Madam Workaround [silently] <<if $Madam != 0>> - <<removeJob $Madam "be the Madam">> + <<= removeJob($Madam, "be the Madam")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Madam">> + <<= assignJob($slaves[$i], "be the Madam")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Madam = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index 4e257d325d93d00791fe1e78ad82431ed94504bc..80b3291e3a17c2ba6df691655bc13e80b7f763a0 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -306,10 +306,10 @@ $masterSuiteNameCaps is furnished <<set _NewPop = $masterSuiteSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Master Suite">> <<if $Concubine != 0>> - <<assignJob $Concubine "rest">> + <<= assignJob($Concubine, "rest")>> <</if>> <<for $masterSuiteSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$MastSiIDs[0]]] "please you">> + <<= assignJob($slaves[$slaveIndices[$MastSiIDs[0]]], "please you")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/milkmaidWorkaround.tw b/src/uncategorized/milkmaidWorkaround.tw index 64a1b6c64cb9ad695e0a6c905ac3a24f1f63e544..d61d15e12dafbb72907d23952b8abc64575ca7db 100644 --- a/src/uncategorized/milkmaidWorkaround.tw +++ b/src/uncategorized/milkmaidWorkaround.tw @@ -1,10 +1,10 @@ :: Milkmaid Workaround [silently] <<if $Milkmaid != 0>> - <<removeJob $Milkmaid "be the Milkmaid">> + <<= removeJob($Milkmaid, "be the Milkmaid")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Milkmaid">> + <<= assignJob($slaves[$i], "be the Milkmaid")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Milkmaid = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/motherDaughterWorkaround.tw b/src/uncategorized/motherDaughterWorkaround.tw index a40afe838f5f023270b878c53f03c019461a0950..61ad947e89deccf594764083d169b69613784e3c 100644 --- a/src/uncategorized/motherDaughterWorkaround.tw +++ b/src/uncategorized/motherDaughterWorkaround.tw @@ -38,7 +38,7 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea <<set _secondSlave.pregKnown = 1>> <<set _secondSlave.pregType = setPregType(_secondSlave)>> <</if>> -<<SetBellySize _secondSlave>> +<<run SetBellySize(_secondSlave)>> <<set _secondSlave.attrXX += random(-20,20)>> <<set _secondSlave.attrXX = Math.clamp(_secondSlave.attrXX, 0, 100)>> diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw index a1b4d5f481af520aed55f7a9509db42afefa32e5..344e73d7f4c2b756dd13fe157d0cac84176dc632 100644 --- a/src/uncategorized/neighborsDevelopment.tw +++ b/src/uncategorized/neighborsDevelopment.tw @@ -53,7 +53,7 @@ <<set _agentIndex = $slaveIndices[$leaders[_k].ID]>> <<if def _agentIndex && $slaves[_agentIndex].assignment != "be your agent">> @@.red;BUG: $slaves[_agentIndex].slaveName also was <<print $slaves[_agentIndex].assignment>>!@@ - <<assignJob $slaves[_agentIndex] "be your agent">> + <<= assignJob($slaves[_agentIndex], "be your agent")>> <</if>> <<if $agentBonus > 0>>@@.green;She does an excellent job this week.@@<</if>> The arcology @@ -82,7 +82,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol <<if def _agentIndex && _agentIndex != -1>> @@.deeppink;$slaves[_agentIndex].slaveName@@ manages to escape with the help of a few loyal citizens and returns to you @@.gold;fearing your displeasure at her failure.@@ <<set $slaves[_agentIndex].trust -= 40>> - <<assignJob $slaves[_agentIndex] "rest">> /* this takes care of necessary cleanup for agent and agent companion (if any) */ + <<= assignJob($slaves[_agentIndex], "rest")>> /* this takes care of necessary cleanup for agent and agent companion (if any) */ <</if>> A controlling interest has been taken by a single individual, leaving the arcology ruled like yours is. <<set $arcologies[$i].government = "an individual">> diff --git a/src/uncategorized/newGamePlus.tw b/src/uncategorized/newGamePlus.tw index 483dfaccc19aee04c915ca12e82f9088bc13a164..9b2a62feea0393e843686c586f91edb789c5d8d1 100644 --- a/src/uncategorized/newGamePlus.tw +++ b/src/uncategorized/newGamePlus.tw @@ -46,7 +46,7 @@ You have the funds to bring $slavesToImportMax slaves with you (or your equivale <br><br> -<<if $cheatMode == 1>><<link "DEBUG: Add all slaves to import list">><<for _ngi = 0; _ngi < $slaves.length; _ngi++>><<assignJob $slaves[_ngi] "be imported">><</for>><<goto "New Game Plus">><</link>><br><</if>> +<<if $cheatMode == 1>><<link "DEBUG: Add all slaves to import list">><<for _ngi = 0; _ngi < $slaves.length; _ngi++>><<= assignJob($slaves[_ngi], "be imported")>><</for>><<goto "New Game Plus">><</link>><br><</if>> Select up to $slavesToImportMax slaves to be imported into a new game and then [[click here.|init][$saveImported = 1]] diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index d9e34e9b2ef3a3e90fc4bb351621689fb1d476d3..9b2fc5599b2f4bea6af0a7658100ce220f04d1bc 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -595,7 +595,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <<set $activeSlave.pregSource = 0>> <<set $activeSlave.pregKnown = 0>> <<set $activeSlave.pregWeek = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</link>> <br> @@ -1089,7 +1089,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <<set $activeSlave.pregType = 0>> <<set $activeSlave.pregWeek = 0>> <<set $activeSlave.pregKnown = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 0>> <<set $activeSlave.health -= 10>> <</link>> @@ -1139,7 +1139,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <</replace>> <<set $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.vagina = -1, $activeSlave.preg = -2, $activeSlave.ovaries = 0, $activeSlave.pregSource = 0, $activeSlave.vaginalSkill = 0>> <<set $activeSlave.pregWeek = 0, $activeSlave.pregType = 0, $activeSlave.pregKnown = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.health -= 10, $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>> <</link>> <</if>> @@ -1528,10 +1528,6 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <</link>> <</if>> -<</if>> /* CLOSES MINDBROKEN CHECK*/ - - -<<if $activeSlave.fetish != "mindbroken">> <<if ($activeSlave.accent >= 3) && ($activeSlave.anus < 2) && ($activeSlave.intelligence < 2) && ($activeSlave.devotion < 10) && ($activeSlave.amp != 1)>> <br> <<link "Force understanding of her situation past the language barrier">> @@ -1585,11 +1581,12 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <</if>> Given the availability of the slave treats and her burgeoning addiction to them, she'll likely keep herself stuffed unless you force her to stop. <<set $activeSlave.inflation = 2, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</replace>> <</link>> <</if>> -<</if>> + +<</if>> /* CLOSES MINDBROKEN CHECK*/ <br> @@ -1781,7 +1778,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <<set $activeSlave.anus = Math.clamp($activeSlave.anus, 3, 4)>> <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina = Math.clamp($activeSlave.vagina, 3, 4)>><</if>> <<set $activeSlave.analCount += 10, $analTotal += 10>> - <<assignJob $activeSlave "dairy">> + <<= assignJob($activeSlave, "dairy")>> <<replace "#introResult">> You order <<if $HeadGirl == 0>>another slave<<else>>$HeadGirl.slaveName<</if>> to get $activeSlave.slaveName set up in $dairyName. The new slave does not know what $dairyName is, not really, and she doesn't know what being set up there means, either. If she knew that you are able to send her there so blithely only because it is equipped with a special preparatory raper that will seize her, <<if $activeSlave.vagina > -1>>mercilessly fuck her pussy and ass until both are gaped<<else>>ream her anus until it's cavernously gaped<</if>>, and then consign her to constant fucking by gargantuan machine phalli, she might resist. But she doesn't, so she does not. <</replace>> @@ -1797,7 +1794,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <<set $vaginalTotal += 10>> <</if>> <<set $activeSlave.analCount += 10, $analTotal += 10>> - <<assignJob $activeSlave "dairy">> + <<= assignJob($activeSlave, "dairy")>> <<replace "#introResult">> Making use of <<if ($activeSlave.trust < -20) || ($activeSlave.devotion > 20)>>her obedience<<else>>the compliance systems<</if>>, you restrain her on one of the chairs in your office in an approximation of the position she'll occupy in $dairyName. Then you put a mask on her, like the ones the machines there feature, and turn it on, watching the slave squirm against her restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed her, and to keep your office reasonably quiet. Then, for the rest of the day, you use her vulnerable <<if $activeSlave.vagina > -1>>holes<<else>>asshole<</if>> as an outlet for your sexual energy. You are not gentle; in fact, the point of the whole exercise is to gape her. By the evening she's been fucked so hard that she's stopped jerking against the chair when you pound <<if $PC.dick == 1>>your huge cock<<else>>a huge strap-on<</if>> in and out of her, so you're obliged to get creative, sliding fingers in alongside <<if $PC.dick == 1>>yourself<<else>>it<</if>> to really blow her out. Once that gets too easy, you start adding dildos for double penetration. By the night she's properly prepared to take $dairyName's giant phalli, and you're bored, so you consign her to her fate. She might have some opinion on how she's spent her day, but it's unlikely she'll remember it by tomorrow, what with the forearm-sized dildos sliding in and out of her<<if $activeSlave.vagina > -1>> cunt,<</if>> throat, and asshole. <</replace>> @@ -1844,7 +1841,7 @@ The legalities completed, ''__@@.pink;<<SlaveFullName $activeSlave>>@@__'' <<if <</if>> <</if>> <<set $activeSlave.inflation = 3, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</replace>> <</link>> <</if>> diff --git a/src/uncategorized/nextSlaveInLine.tw b/src/uncategorized/nextSlaveInLine.tw index 8149ceb874272eefd16d1b25f04427b722d09daa..bd5229daa423d94161862931d6c3af927fb5ed99 100644 --- a/src/uncategorized/nextSlaveInLine.tw +++ b/src/uncategorized/nextSlaveInLine.tw @@ -3,7 +3,7 @@ <<silently>> <<set $i = $slaveIndices[$activeSlave.ID]>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set $slaves[$i] = $activeSlave>> /* save changes before switching */ <<set $activeSlave = $slaves[$slavesInLine[1]]>> diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index 876ed4f8404297a6949118d9f131d7ea9df5e5b0..9700e8529920d878310f02da00c2e3bc84663e27 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -54,7 +54,7 @@ <<if $slaves[_i].sentence > 1>> <<set $slaves[_i].sentence -= 1>> <<elseif $slaves[_i].sentence == 1>> - <<removeJob $slaves[_i] $slaves[_i].assignment>> + <<= removeJob($slaves[_i], $slaves[_i].assignment)>> <</if>> <<if $slaves[_i].weekAcquired < 0>> <<set $slaves[_i].weekAcquired = 0>> @@ -116,8 +116,8 @@ <<set $enduringDevotion = ($averageDevotion+($enduringDevotion*3))/4>> <<if (_OldHG != -1) && (_NewHG != -1)>> - <<removeJob $slaves[_NewHG] "live with your Head Girl">> - <<assignJob $slaves[_OldHG] "live with your Head Girl">> + <<= removeJob($slaves[_NewHG], "live with your Head Girl")>> + <<= assignJob($slaves[_OldHG], "live with your Head Girl")>> <<set $HeadGirl = $slaves[_NewHG], $slaves[_NewHG].assignment = "be your Head Girl", $slaves[_NewHG].diet = "healthy">> <</if>> @@ -267,7 +267,7 @@ <<set $analSkinDesc = "", $applyDesc = "", $bellyAccessory = "", $buyer = "", $desc = "", $event = "", $goto = "", $malefactor = "", $nickname = "", $notApplyDesc = "", $oldName = "", $oldSurname = "", $situationDesc = "", $skinDesc = "", $k = "">> /% Done with zeroing out, what should be for the most part Temps %/ -<<ClearSummaryCache>> +<<run clearSummaryCache()>> /*HACKY EVENT WORKAROUNDS*/ <<if $eventID != -1>> diff --git a/src/uncategorized/ngpWorkaround.tw b/src/uncategorized/ngpWorkaround.tw index c120d4b2dcdd5a61a0daafe67a00636c8c9ad17b..41b7dc063d4fb24caad9b464fe0fdd8ee86d4b76 100644 --- a/src/uncategorized/ngpWorkaround.tw +++ b/src/uncategorized/ngpWorkaround.tw @@ -1,9 +1,9 @@ :: NGP Workaround [silently] <<if $slavesToImport == 1>> - <<assignJob $slaves[$i] "be imported">> + <<= assignJob($slaves[$i], "be imported")>> <<else>> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <</if>> <<goto "New Game Plus">> diff --git a/src/uncategorized/nurseWorkaround.tw b/src/uncategorized/nurseWorkaround.tw index 846407e35b4e41215ea5c4afd38ec2cd87b0923f..503e1bba468bac817fa57088ddef0d89ead5da19 100644 --- a/src/uncategorized/nurseWorkaround.tw +++ b/src/uncategorized/nurseWorkaround.tw @@ -1,10 +1,10 @@ :: Nurse Workaround [silently] <<if $Nurse != 0>> - <<removeJob $Nurse "be the Nurse">> + <<= removeJob($Nurse, "be the Nurse")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Nurse">> + <<= assignJob($slaves[$i], "be the Nurse")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Nurse = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index ba52666917c65490ef7af70cb2b3f3b1040fea5d..21543ecdebd00005c39975bd5cc241e15ae2072a 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -60,7 +60,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 2>> <<set $hostage.oralCount += 50>> <<set $hostage.vaginalCount += 50>> @@ -77,7 +77,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 2>> <<set $hostage.oralCount += 50>> <<set $hostage.vaginalCount += 50>> @@ -284,7 +284,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.oralCount += 50>> <<set $hostage.vaginalCount += 50>> <<set $hostage.analCount += 50>> @@ -299,7 +299,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.boobs += 100>> <<set $hostage.oralCount += 50>> <<set $hostage.vaginalCount += 50>> @@ -499,7 +499,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set WombImpregnate($hostage, $hostage.pregType, 0, 1)>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 1>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<case "Hedonistic Decadence">> <<set $hostage.trust -= 5>> @@ -556,7 +556,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 12>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</if>> <<if $hostage.vagina < 3>> <<set $hostage.vagina = 3>> @@ -592,7 +592,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 3>> <<set $hostage.boobs += 100>> <<set $hostage.lactation = 1>> @@ -614,7 +614,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 3>> <<set $hostage.boobs += 300>> <<set $hostage.lactation = 1>> @@ -803,7 +803,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $hostage.preg>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<case "Hedonistic Decadence">> <<set $hostage.trust -= 5>> @@ -867,7 +867,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $hostage.preg>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</if>> <<if $hostage.vagina < 4>> <<set $hostage.vagina = 4>> @@ -899,7 +899,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 4>> <<set $hostage.boobs += 100>> <<set $hostage.lactation = 1>> @@ -918,7 +918,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $rivalryDuration>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 4>> <<set $hostage.boobs += 400>> <<set $hostage.lactation = 1>> @@ -1065,7 +1065,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<case "Hedonistic Decadence">> <<set $hostage.trust -= 5>> @@ -1110,7 +1110,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = $hostage.preg>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</if>> <<set $hostage.oralCount += 50>> <<set $hostage.vaginalCount += 50>> @@ -1133,7 +1133,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 1>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 5>> <<if $hostage.births < 1>> <<set $hostage.births = 1>> @@ -1150,7 +1150,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 1>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.vagina = 5>> <<if $hostage.births < 50>> <<set $hostage.births = 20>> @@ -1170,7 +1170,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 8>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> giving an interview. She gushes over how great it feels knowing that someone is always watching out for her safety and health as a traditional woman, as well as how terrible it is that some people want to blur the lines between the genders. <<case "Gender Fundamentalism">> <<set $hostage.analCount += 10>> @@ -1211,7 +1211,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek = 14>> <<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> and her owner at the altar during their wedding. It seems she couldn't wait, since her belly already shows signs of an early pregnancy. <<case "Body Purism">> <<set $hostage.boobs = 50000>> @@ -1289,7 +1289,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <<set $hostage.sexualFlaw = "breeder">> <</switch>> <<case "Hedonistic Decadence">> @@ -1968,7 +1968,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> relaxing in her comfy bed carefully exploring her food stuffed belly and new curves. She's certainly getting soft. <<elseif $rivalryDuration <= 15>> @@ -1990,7 +1990,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> relaxing in her comfy bed sucking on her feeding tube. One hand is fondling her plush body while the other is teasing her clit. Her body has become notably plush, made even more obvious when an orgasm sends ripples through her soft flesh. <<elseif $rivalryDuration <= 20>> @@ -2011,7 +2011,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> relaxing in her comfy bed surrounded by mountains of molded slave food. She is eagerly shoving handfuls of the fattening treats into her mouth while simultaneously begging for someone to fill her neglected pussy. She has become quite fat; her body jiggles with every motion. <<else>> @@ -2030,7 +2030,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> relaxing in her comfy bed surrounded by mountains of molded slave food. She is greedily shoving handfuls of the fattening treats into her mouth as fast as she can. She has grown enormously fat and her belly is jiggling oddly. When she repositions herself, you catch sight of a quartet of large vibrating dildos crammed into her stretched cunt. <</if>> @@ -2762,7 +2762,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> crying as she rubs her uncomfortably swollen and soft belly as yet another guy fucks her loosening cunt. <<elseif $rivalryDuration <= 15>> @@ -2784,7 +2784,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> humming as she soothes her full belly as she enjoys a good fucking. <<elseif $rivalryDuration <= 20>> @@ -2805,7 +2805,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> happily stuffing her face as another guy fucks her fat body. <<else>> @@ -2828,7 +2828,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> She takes time between bites to hungrily fondle her pregnancy. <</switch>> <</if>> @@ -3569,7 +3569,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<elseif $rivalryDuration <= 15>> <<set $hostage.trust -= 5>> @@ -3605,7 +3605,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<elseif $rivalryDuration <= 20>> <<set $hostage.trust -= 5>> @@ -3640,7 +3640,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <<else>> <<set $hostage.weight += 5>> @@ -3673,7 +3673,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.preg++>> <<set $hostage.pregKnown = 1>> <<set $hostage.pregWeek++>> - <<SetBellySize $hostage>> + <<run SetBellySize($hostage)>> <</switch>> <</if>> <<case "Hedonistic Decadence">> diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index a903b24a808229be31196d93839dfe4894ef99ec..089cf664273ebfe6874d2d2d76772b443f49401b 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -268,7 +268,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <</if>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.vaginalSkill = 100>> <<set $activeSlave.oralSkill = 15>> <<set $activeSlave.analSkill = 15>> @@ -399,7 +399,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.vaginalSkill = 100>> <<set $activeSlave.oralSkill = 100>> <<set $activeSlave.analSkill = 100>> diff --git a/src/uncategorized/penthouseReport.tw b/src/uncategorized/penthouseReport.tw index 8be58f71c5c8952392380fac3f3ccd2df08b437d..c4aec477423f94f2dd3f92abd0b13753766615ca 100644 --- a/src/uncategorized/penthouseReport.tw +++ b/src/uncategorized/penthouseReport.tw @@ -20,7 +20,7 @@ <<if $slaves[$i].assignment != "live with your Head Girl">> <br>@@.red;$slaves[$i].slaveName had been assigned to live with your Head Girl, but this week she was assigned to $slaves[$i].assignment. She has been released to your penthouse for reassignment.@@ - <<removeJob $slaves[$i] "live with your Head Girl">> + <<= removeJob($slaves[$i], "live with your Head Girl")>> <<else>> ''__@@.pink;<<SlaveFullName $slaves[$i]>>@@__'' <<if $slaves[$i].choosesOwnAssignment == 2>> diff --git a/src/uncategorized/previousSlaveInLine.tw b/src/uncategorized/previousSlaveInLine.tw index 008ccb819a4a11d80f23e05299820fb4256d5d66..9df0c2e9e303b8e340eb038d4c7434cfabc3a56d 100644 --- a/src/uncategorized/previousSlaveInLine.tw +++ b/src/uncategorized/previousSlaveInLine.tw @@ -3,7 +3,7 @@ <<silently>> <<set $i = $slaveIndices[$activeSlave.ID]>> -<<ClearSummaryCache $activeSlave>> +<<run clearSummaryCache($activeSlave)>> <<set $slaves[$i] = $activeSlave>> /* save changes before switching */ <<set $activeSlave = $slaves[$slavesInLine[0]]>> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index eed3b7efbf8f25bc2c6e61b373739b5d0362cdd4..79a2d96a12f1e103ec913aeed1b5445bc9235c54 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -3,7 +3,7 @@ <<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", $returnTo = "RIE Eligibility Check", $showEncyclopedia = 1, $encyclopedia = "Enslaving People">> <<set $activeSlave = $boomerangSlave, _weeks = $boomerangWeeks, _pregWeeks = $boomerangWeeks, $boomerangWeeks = 0, _buyer = $boomerangBuyer, $boomerangBuyer = 0>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> Your work is interrupted by $assistantName with an alert from the entrance to the penthouse. <<if $assistant>> @@ -32,12 +32,12 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<set $activeSlave.preg = WombMaxPreg($activeSlave)>> /*most ready fetus is a base*/ <<set $activeSlave.pregWeek = WombMaxPreg($activeSlave)>> /*most ready fetus is a base*/ <</if>> -<<SetBellySize $activeSlave>> /*In any case it's useful to do.*/ +<<run SetBellySize($activeSlave)>> /*In any case it's useful to do.*/ /* old code, commented out. <<if $activeSlave.broodmother > 0>> <<set $activeSlave.preg = -1, $activeSlave.birthsTotal += $activeSlave.pregType, $activeSlave.pregType = 0, $activeSlave.pregSource = 0, $activeSlave.pregWeek = 0, $activeSlave.pregKnown = 0, $activeSlave.broodmother == 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<if $activeSlave.preg > 0>> <<set $activeSlave.preg += _weeks>> @@ -45,7 +45,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<if $activeSlave.preg > 40>> <<set $activeSlave.preg = -1, $activeSlave.birthsTotal += $activeSlave.pregType, $activeSlave.pregType = 0, $activeSlave.pregSource = 0, $activeSlave.pregWeek = 0, $activeSlave.pregKnown = 0>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> */ @@ -102,7 +102,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<set $activeSlave.lactation = 2, $activeSlave.lactationAdaptation = 100>> <<set $activeSlave.boobs = Math.clamp($activeSlave.boobs+2000+50*random(-20,20),0,10000)>> <<set $activeSlave.boobShape = "saggy">> - <<if $seePreg != 0>><<if $activeSlave.ovaries>><<set $activeSlave.preg = random(5,_pregWeeks-1), $activeSlave.pregtype = random(2,4), $activeSlave.vagina = 4, $activeSlave.pregWeek = $activeSlave.preg, $activeSlave.pregKnown = 1>><<SetBellySize $activeSlave>><</if>><</if>> + <<if $seePreg != 0>><<if $activeSlave.ovaries>><<set $activeSlave.preg = random(5,_pregWeeks-1), $activeSlave.pregtype = random(2,4), $activeSlave.vagina = 4, $activeSlave.pregWeek = $activeSlave.preg, $activeSlave.pregKnown = 1, SetBellySize($activeSlave)>><</if>><</if>> <<if $activeSlave.balls>> <<set $activeSlave.balls = Math.clamp($activeSlave.balls+random(1,2),0,10)>> <<if $activeSlave.dick>><<set $activeSlave.dick = Math.clamp($activeSlave.dick+random(1,2),0,10)>><</if>> @@ -122,7 +122,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<else>> <<set $activeSlave.pregtype = 5>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<case "pain fetishist">> "They whip me. A-actually," she sniffles, "I'm glad when they whip me b-becau<<s>>e e-everything el<<s>>e they d-do is w-wor<<s>>e. The only break I get i-i<<s>> when I'm hurt bad and th-they have to f-fix me." After all, you did sell her into a life as a pain slave. <<set $activeSlave.behavioralFlaw = "odd", $activeSlave.sexualFlaw = "apathetic">> @@ -144,7 +144,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<case "subjugationist arcology">> "They were breeding me with idiot<<s>>." You sold her to a Subjugationist arcology; it's nothing short of incredible that she managed to get back here. She must have sold and traded herself without hesitation. "I d-don't want thi<<s>> pregnan<<c>>y." <<set $activeSlave.preg = _pregWeeks-1, $activeSlave.pregtype = random(2,4), $activeSlave.pregWeek = $activeSlave.preg, $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<case "gender radicalist arcology">> "They <<if $activeSlave.balls>> cut my ball<<s>> off and then<</if>> j-ju<<s>>t kind of t-turned me loo<<s>>e in the corridor<<s>>," she moans. You sold her to a Gender Radicalist arcology. "Naked, <<s>>o everyone could u<<s>>e my a<<ss>>. Plea<<s>>e, I don't want to be an entire arcology'<<s>> bitch." <<set $activeSlave.balls = 0>> @@ -159,7 +159,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against "It wa<<s>> horrible." You sold her to a Degradationist arcology; it's nothing short of incredible that she managed to get back here. She must have sold and traded herself without hesitation. <<if $activeSlave.ovaries>> <<set $activeSlave.ovaries = 0, $activeSlave.preg = 0, WombFlush($activeSlave), $activeSlave.pregType = 0, $activeSlave.vagina = 4, $activeSlave.pregWeek = 0, $activeSlave.pregKnown = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> "They f-fixed me, t-to '<<s>>ave on maintenan<<c>>e of my cunt,' <<elseif $activeSlave.balls>> <<set $activeSlave.balls = 0, $activeSlave.anus = 4>> @@ -277,7 +277,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<case "harvester">> "I'm ju<<s>>t kept in a pen unle<<ss>> they're d-doing <<s>>urgery on me." It's not surprising; you did sell her to an organ farm. What's unexpected is that she's still alive. They must be removing the less essential parts gradually. "I'm going to die," she <<say>>s hollowly. "Next <<s>>urgery, I won't wake up." <<set $activeSlave.balls = 0, $activeSlave.ovaries = 0, $activeSlave.preg = -2, $activeSlave.pregType = 0, $activeSlave.pregWeek = 0, $activeSlave.pregKnown = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.behavioralFlaw = "hates men", $activeSlave.sexualFlaw = "crude">> <<case "D butt bury">> "My kind butt loving Ma<<s>>ter had to <<s>>ell me, and the brothel who bought me u<<s>>e<<s>> my behind a<<s>> an adverti<<s>>ement." She shifts uncomfortably. "I can barely feel my anu<<s>>." diff --git a/src/uncategorized/reBusyArcade.tw b/src/uncategorized/reBusyArcade.tw index 2da960dff381892b7037505fbc156cc1a4f18068..8e8904286058bdd8f0fda2ab99951bceb53191af 100644 --- a/src/uncategorized/reBusyArcade.tw +++ b/src/uncategorized/reBusyArcade.tw @@ -30,7 +30,7 @@ Facing the ground, <<if !canTalk($activeSlave)>>she gestures with shaking hands <<replace "#result">> When you accept, $activeSlave.slaveName looks up at you in incomprehension, expecting you to correct yourself or reveal that this is a cruel trick. When you do neither, she scrabbles spastically to your feet, kisses them as she cries, and then clings to your knees, sobbing. She is so relieved by this reprieve that she is now on the cusp of @@.hotpink;devotion to you,@@ and will obey out of near-paralytic fear of being sent back to the arcade. <<set $activeSlave.devotion = 45>> - <<removeJob $activeSlave "be confined in the arcade">> + <<= removeJob($activeSlave, "be confined in the arcade")>> <</replace>> <</link>> <br><<link "Refuse">> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 83f2ffb187347ace120a93ca6b01b45b0bb85926..4a525fef05d21a9823833c9a4c79b763cdf5bd9f 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -41,7 +41,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.lactation = 1>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.boobs += 200*random(2,5)>> @@ -231,7 +231,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.vagina = 1>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> @@ -251,7 +251,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.pregTotal = random(1,3)>> <<slaveCost $activeSlave>> @@ -734,7 +734,7 @@ <<set $activeSlave.clothes = "a slutty outfit">> <<set $activeSlave.shoes = "heels">> <<set $activeSlave.inflation = 3, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index b17ae65c18daa109743961efaf2491cee104ac5d..286e90c5b38a16986d58cd25133c372eb3f5d350 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -317,7 +317,7 @@ <</link>> <<if $arcade > 0>> <br><<link "Enslave her and sentence her to a month in the arcade">> - <<assignJob $activeSlave "be confined in the arcade">> + <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.choosesOwnAssignment = 0>> <<set $activeSlave.sentence = 4>> <<set $cash -= $contractCost>> @@ -347,7 +347,7 @@ <<if $dairy > 0>> <<if $dairyRestraintsSetting > 1>> <br><<link "Enslave her and send her straight to the industrial dairy">> - <<assignJob $activeSlave "work in the dairy">> + <<= assignJob($activeSlave, "work in the dairy")>> <<set $cash -= $contractCost>> <<replace "#result">> <<if $malefactor == "addict">> diff --git a/src/uncategorized/reRebels.tw b/src/uncategorized/reRebels.tw index c181aaea957afa0893265024c4027407496ca534..f10a88128e886025e5e247d28442eca1606527d0 100644 --- a/src/uncategorized/reRebels.tw +++ b/src/uncategorized/reRebels.tw @@ -90,9 +90,9 @@ You have a rebel problem. $slaves[_i].slaveName and $slaves[_j].slaveName are bo <br><<link "Sentence them to a month in the arcade">> <<replace "#result">> They scream and beg when they realize what their punishment is to be, but you are obdurate. Each tries to inform on the other to avoid such a fate, but to no avail. After they're properly confined, the only sign of their discomfiture is a slight movement of their butts as they wriggle desperately against their restraints. - <<assignJob $slaves[_j] "be confined in the arcade">> + <<= assignJob($slaves[_j], "be confined in the arcade")>> <<set $slaves[_j].sentence = 4>> - <<assignJob $slaves[_i] "be confined in the arcade">> + <<= assignJob($slaves[_i], "be confined in the arcade")>> <<set $slaves[_i].sentence = 4>> <</replace>> <</link>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index ecdc9d936b2d8fe085b66ec0d238c5783eb2a58f..71d0e4a3d7627590979ee0b8ca25e46727b0415a 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -178,7 +178,7 @@ One of the tenants in your arcology has not paid rent in some time. In the Free <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.fetish = "none">> <<set $activeSlave.fetishKnown = 0>> <<set $activeSlave.health = random(-40,-20)>> @@ -208,7 +208,7 @@ A young woman comes to your penthouse for an interview. You accepted her request <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.eyes = -2>> <<set $activeSlave.weight = -100>> <<set $activeSlave.fetish = "none">> @@ -843,7 +843,7 @@ After the fighting died down, they found a dickgirl inside the compound, harshly <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.dick = random(1,3)>> <<set $activeSlave.balls = 0>> @@ -895,7 +895,7 @@ After the fighting died down, they found a woman inside the compound, harshly us <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.weight = random(-80,20)>> <<set $activeSlave.pubicHStyle = "waxed">> @@ -1289,7 +1289,7 @@ The current sale offer by the company was taken from a businesswoman's apartment <<set $activeSlave.pregType = either(1, 2)>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.birthsTotal += 3>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> @@ -1732,7 +1732,7 @@ Your desk flags a video message as having potential. It's a desperate refugee fr <<set $activeSlave.pregType = 3>> <<set $activeSlave.pregWeek = 30>> <<set $activeSlave.pregKnown = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> As you are heading back to your penthouse from overseeing a promising new store's opening, you noticed a feminine face peeking around a nearby corner. It quickly darts out of sight before a hand beckons you in. The alley isn't particularly out of sight, so no harm looking in. The girl is young, with silver hair, blue eyes, dark skin and<<if $activeSlave.preg > 0>>is enormously pregnant<<else>>a waifish build<</if>>; certainly an eye-catching display. She doesn't seem to speak much $language at all, and judging by her gesturing, is trying to ask you to purchase her. @@ -1867,7 +1867,7 @@ While digging through the database of a POW camp for anything of value, you find <<set $activeSlave.preg = 2>> <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = 2>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> Her odd behaviour suggests that her will to live has nearly been snuffed out. She likely wouldn't have lasted much longer, though it's questionable if she still will if you let her walk free. @@ -1896,7 +1896,7 @@ Her odd behaviour suggests that her will to live has nearly been snuffed out. Sh <<else>> <<set $activeSlave.pregType = random(2,8)>> <</if>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<if $arcologies[0].FSSupremacist != "unset">> <<set $activeSlave.race = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationist != "unset" && $activeSlave.race == $arcologies[0].FSSubjugationistRace>> @@ -1988,7 +1988,7 @@ While digging through the highest security and clearance level database of a pow <<set $activeSlave.pregWeek = 40>> <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregKnown = 1>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.anus = 0>> @@ -2034,7 +2034,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.bellySag = 100>> <<set $activeSlave.bellySagPreg = 100>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.weight = 90>> @@ -2199,7 +2199,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua <<set $activeSlave.preg = 16>> <<set $activeSlave.pregType = 150>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</switch>> <<switch $recruit>> <<case "desperate birth" "blessed vessel">> diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw index 2747bc4df700d8e9c49f71c762582c59884dadcd..ffa9e7636b5b0253a25d6491c276960b93034716 100644 --- a/src/uncategorized/reRelativeRecruiter.tw +++ b/src/uncategorized/reRelativeRecruiter.tw @@ -131,7 +131,7 @@ <<set $activeSlave.pregWeek = 0>> <<set $activeSlave.pregKnown = 0>> <<set WombFlush($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> $eventSlave.slaveName requests an interview with you. She's a devoted slave, and you grant it, and are happy you did when you see the troubled expression on her face. She explains<<if !canTalk($eventSlave)>> with desperate gestures<</if>> that <<switch _relationType>> @@ -235,7 +235,7 @@ She waits anxiously for your decision. <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.weight = random(30,135)>> <<set $activeSlave.muscles = random(0,15)>> @@ -519,7 +519,7 @@ She waits anxiously for your decision. <<set $activeSlave.bodySwap = 0>> <<set $activeSlave.pregControl = "none">> <<set $activeSlave.buttplugAttachment = "none">> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<slaveCost $activeSlave>> diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index c4c2e5d6b87462a13dafc9948c03e92b9d3c783b..40b5f2941521468f0f58f368fb97a1ccb93e383e 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -99,7 +99,7 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <</link>> //This will cost <<print cashFormat($contractCost)>>// <<if ($dairy > 0) && ($dairyRestraintsSetting > 1) && ($subSlave.assignment == "work in the dairy")>> <br><<link "The slave is attached to a milking machine, and so will be the inspector">> - <<assignJob $activeSlave "work in the dairy">> + <<= assignJob($activeSlave, "work in the dairy")>> <<set $activeSlave.clothes = "no clothing">> <<set $cash -= $contractCost/2>> <<replace "#result">> diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw index da839225c8fa25d158a463e449f010a10e0d2ac2..d0a9fd0ac3528103b0f4f6cf820d966da9712fb7 100644 --- a/src/uncategorized/recETS.tw +++ b/src/uncategorized/recETS.tw @@ -123,7 +123,7 @@ An older woman comes to see you representing her family business. She's pretty e <<set $activeSlave.pregSource = $activeSlave.ID + 1000>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.birthsTotal += 1>> <<set $activeSlave.face = 15>> @@ -217,7 +217,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<set $activeSlave.pregSource = $activeSlave.ID + 1000>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.face = random(15,40)>> <<set $activeSlave.vaginalSkill = 15>> @@ -753,7 +753,7 @@ One of them speaks up. "We're twins, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if> <<set $activeSlave.pregSource = $activeSlave.ID + 1000>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.pubertyXY = 1>> <<set $activeSlave.hStyle = "in twin tails">> @@ -816,7 +816,7 @@ The other blurts out. "But we kinda got too into each other, in more ways than o <<set $activeSlave.pregType = random(25,29)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.labor = 1>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.birthsTotal = 5>> diff --git a/src/uncategorized/recETSWorkaround.tw b/src/uncategorized/recETSWorkaround.tw index a62f4b7ec9fa00cf624c1658dbd1ddfe8f520c1f..2c7f80d956532cd7533c8042053488c5e5f976ef 100644 --- a/src/uncategorized/recETSWorkaround.tw +++ b/src/uncategorized/recETSWorkaround.tw @@ -142,7 +142,7 @@ The son cheers happily and hugs his relieved mother. She leans in and kisses him <<set $activeSlave.pregKnown = 0>> <<set $activeSlave.pregWeek = 0>> <<set WombFlush($activeSlave)>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.dick = 2>> <<set $activeSlave.foreskin = 3>> <<set $activeSlave.ovaries = 0>> @@ -205,7 +205,7 @@ The daughter cheers happily and hugs her relieved father. He leans in and kisses <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.pregSource = $activeSlave.ID - 1000>> <<set $activeSlave.faceShape = "cute">> <<set $activeSlave.behavioralQuirk = "none">> @@ -238,7 +238,7 @@ They cheer happily and hug each other tightly. They ought to be an interesting a <<set $activeSlave.pregKnown = 0>> <<set $activeSlave.pregWeek = 0>> <<set WombFlush($activeSlave)>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.dick = 2>> <<set $activeSlave.foreskin = 2>> <<set $activeSlave.ovaries = 0>> @@ -527,7 +527,7 @@ You turn to the child clutching her mother's grotesque belly. <<set $activeSlave.pregKnown = 0>> <<set $activeSlave.pregWeek = 0>> <<set WombFlush($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.labor = 0>> <<set $activeSlave.ovaries = 0>> <<set $activeSlave.birthsTotal = 0>> @@ -623,7 +623,7 @@ You turn to the child clutching her mother's grotesque belly. You notice her belly is slightly distended. It could be hunger, but upon closer inspection, you realize her hymen has been torn. She's likely been servicing men alongside her mother and has a bun in the oven too. <</if>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.actualAge = 3>> <<if $familyTesting == 1>> <<set $activeSlave.mother = $activeSlave.ID - 1000>> diff --git a/src/uncategorized/recruiterWorkaround.tw b/src/uncategorized/recruiterWorkaround.tw index 009c781e34017e93a22d42688fc2208e2fbd1353..04d089f201b1e3f0512f87f6fb369ee608c77805 100644 --- a/src/uncategorized/recruiterWorkaround.tw +++ b/src/uncategorized/recruiterWorkaround.tw @@ -1,10 +1,10 @@ :: Recruiter Workaround [silently] <<if $Recruiter != 0>> - <<removeJob $Recruiter "recruit girls">> + <<= removeJob($Recruiter, "recruit girls")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "recruit girls">> + <<= assignJob($slaves[$i], "recruit girls")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Recruiter = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw index 57105b49ef6c3352fdb1e164a6bb1f5bb2c4d731..fe139e58ff251c2b2b6f30cf909810dce3774348 100644 --- a/src/uncategorized/resFailure.tw +++ b/src/uncategorized/resFailure.tw @@ -116,7 +116,7 @@ <<set $activeSlave.pregType = random(3,6)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.bellySag = 10>> <<set $activeSlave.bellySagPreg = 10>> <<set $activeSlave.hips = either(2, 2, 2, 2, 3)>> @@ -429,7 +429,7 @@ <<set $activeSlave.butt = random(2,4)>> <<set $activeSlave.boobs = (random(30,60) * 10)>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.health = random(60,80)>> <<set $activeSlave.muscles = random(40,60)>> <<set _minHeight = random(170,180)>> @@ -578,7 +578,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> <<set $activeSlave.intelligenceImplant = 1>> @@ -654,7 +654,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> <<set $activeSlave.intelligenceImplant = 1>> diff --git a/src/uncategorized/retrieve.tw b/src/uncategorized/retrieve.tw index 0c60b3c0ef847c5ba7c34b6299609885ed052458..952ced5cdcfe71d06f643f4bd1d130b69d31bb46 100644 --- a/src/uncategorized/retrieve.tw +++ b/src/uncategorized/retrieve.tw @@ -6,7 +6,7 @@ <<case "Coursing Association">> <<set $Lurcher = 0>> <<default>> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <</switch>> <<goto $returnTo>> diff --git a/src/uncategorized/saChoosesOwnJob.tw b/src/uncategorized/saChoosesOwnJob.tw index a19695ac30e5da34402dd6df6c34f408cc9975d0..dc8a1b0aa971b05e5936b7606c48463572611e90 100644 --- a/src/uncategorized/saChoosesOwnJob.tw +++ b/src/uncategorized/saChoosesOwnJob.tw @@ -18,38 +18,38 @@ <<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to rest, taking advantage of your permission to @@.mediumorchid;remain indolent@@.">> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <<set $slaves[$i].devotion -= 5>> <<elseif ($slaves[$i].health < 20)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($clinic > $clinicSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is unhealthy, so $pronoun decides to get treatment at $clinicName.">> - <<assignJob $slaves[$i] "get treatment in the clinic">> + <<= assignJob($slaves[$i], "get treatment in the clinic")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is unhealthy, so $pronoun decides to rest.">> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <</if>> <<elseif ($slaves[$i].intelligenceImplant != 1)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($schoolroom > $schoolroomSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is uneducated, so $pronoun sits _oself down in $schoolroomName.">> - <<assignJob $slaves[$i] "learn in the schoolroom">> + <<= assignJob($slaves[$i], "learn in the schoolroom")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is uneducated, so $pronoun sits _oself down to learn.">> - <<assignJob $slaves[$i] "take classes">> + <<= assignJob($slaves[$i], "take classes")>> <</if>> <<elseif ($Attendant != 0) && ($universalRulesAssignsSelfFacility == 1) && (($slaves[$i].devotion < 45) || ($slaves[$i].trust < 45) || ($slaves[$i].sexualFlaw != "none") || ($slaves[$i].behavioralFlaw != "none"))>> <<set $slaves[$i].choosesOwnAssignmentText += " could use some counseling, so $pronoun decides to visit $spaName.">> - <<assignJob $slaves[$i] "rest in the spa">> + <<= assignJob($slaves[$i], "rest in the spa")>> <<elseif ($slaves[$i].devotion <= 50) && canWalk($slaves[$i]) && canSee($slaves[$i])>> <<if ($universalRulesAssignsSelfFacility == 1) && ($servantsQuarters > $servantsQuartersSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is obedient but not devoted, so $pronoun decides to work from $servantsQuartersName since it's the least sexually demanding job available.">> - <<assignJob $slaves[$i] "work as a servant">> + <<= assignJob($slaves[$i], "work as a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is obedient but not devoted, so $pronoun decides to work as a servant since it's the least sexually demanding job available.">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <</if>> <<elseif ($slaves[$i].relationship == -1)>> @@ -58,19 +58,19 @@ <<set $slaves[$i].choosesOwnAssignmentText += " and doesn't mind being a whore, so $pronoun prostitutes _oself">> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " in $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " on the streets.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun eagerly decides to slut around">> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " in $clubName.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " on the streets.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <</if>> @@ -80,47 +80,47 @@ <<set $slaves[$i].choosesOwnAssignmentText += " but insecure, so $pronoun decides to make you money by prostituting _oself">> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " in $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " on the streets.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($slaves[$i].behavioralQuirk == "advocate")>> <<set $slaves[$i].choosesOwnAssignmentText += " and an advocate for slavery, so $pronoun decides to burnish your reputation by slutting it up">> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " in $clubName.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " on the streets.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<elseif ($slaves[$i].energy > 60)>> <<set $slaves[$i].choosesOwnAssignmentText += " and $pronoun thinks of little but sex with you,">> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $masterSuiteName.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully designates _oself one of your fucktoys.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif canSee($slaves[$i]) && canWalk($slaves[$i])>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun decides to work">> <<if ($universalRulesAssignsSelfFacility == 1) && ($servantsQuarters > $servantsQuartersSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " from $servantsQuartersName">> - <<assignJob $slaves[$i] "work as a servant">> + <<= assignJob($slaves[$i], "work as a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " as a servant">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <</if>> <<set $slaves[$i].choosesOwnAssignmentText += " to make your penthouse as clean and homelike as possible.">> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " but unable to do much on $possessive own,">> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $masterSuiteName to await your caress.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully designates _oself one of your fucktoys to be close to you.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <</if>> @@ -139,66 +139,66 @@ <<set $slaves[$i].choosesOwnAssignmentText += " and $pronoun thinks of little but sex with you,">> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $masterSuiteName.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully designates _oself one of your fucktoys.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif canSee($slaves[$i]) && canWalk($slaves[$i])>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun decides to work">> <<if ($universalRulesAssignsSelfFacility == 1) && ($servantsQuarters > $servantsQuartersSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " from $servantsQuartersName">> - <<assignJob $slaves[$i] "work as a servant">> + <<= assignJob($slaves[$i], "work as a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " as a servant">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <</if>> <<set $slaves[$i].choosesOwnAssignmentText += " to make your penthouse as clean and homelike as possible.">> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " but unable to do much on $possessive own">> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $masterSuiteName to await your caress.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully designates _oself one of your fucktoys to be close to you.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <</if>> <<elseif $slaves[$i].devotion < -20 && $slaves[$i].trust > 20>> <<set $slaves[$i].choosesOwnAssignmentText += " and $pronoun thinks of all the ways $pronoun can take advantage of this,">> <<if ($universalRulesAssignsSelfFacility == 1) && ($spa > $spaSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $spaName to relax.">> - <<assignJob $slaves[$i] "rest in the spa">> + <<= assignJob($slaves[$i], "rest in the spa")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully decides to lounge about the penthouse.">> - <<assignJob $slaves[$i] "rest">> + <<= assignJob($slaves[$i], "rest")>> <</if>> <<elseif $slaves[$i].devotion < -20>> <<set $slaves[$i].choosesOwnAssignmentText += " and $pronoun is scared of you, so $pronoun chooses to work as a servant so that $pronoun may serve you without "serving" you.">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <<else>> <<if ($slaves[$i].energy > 60)>> <<set $slaves[$i].choosesOwnAssignmentText += " and $pronoun thinks of little but sex,">> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun heads straight to $masterSuiteName.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun cheerfully designates _oself one of your fucktoys.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif canSee($slaves[$i]) && canWalk($slaves[$i])>> <<set $slaves[$i].choosesOwnAssignmentText += " so $pronoun decides to work">> <<if ($universalRulesAssignsSelfFacility == 1) && ($servantsQuarters > $servantsQuartersSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " from $servantsQuartersName">> - <<assignJob $slaves[$i] "work as a servant">> + <<= assignJob($slaves[$i], "work as a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " as a servant">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <</if>> <<set $slaves[$i].choosesOwnAssignmentText += " to make your penthouse as clean and homelike as possible.">> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " but unable to do much on $possessive own, so $pronoun designates _oself one of your fucktoys to get more intimate with you.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <</if>> @@ -206,275 +206,275 @@ <<if ($slaves[$i].fetish == "submissive") && canWalk($slaves[$i]) && canSee($slaves[$i])>> <<if ($universalRulesAssignsSelfFacility == 1) && ($servantsQuarters > $servantsQuartersSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " thinks $pronoun belongs at the bottom of the penthouse hierarchy, so $pronoun goes to live in $servantsQuartersName.">> - <<assignJob $slaves[$i] "work as a servant">> + <<= assignJob($slaves[$i], "work as a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " thinks $pronoun belongs at the bottom of the penthouse hierarchy, so $pronoun decides $pronoun should be a servant.">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <</if>> <<elseif ($slaves[$i].fetish == "dom") || ($slaves[$i].fetish == "sadist")>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is self-confident, so $pronoun decides to work in $clubName.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is self-confident, so $pronoun decides to work as a public servant.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<elseif ($slaves[$i].fetish == "masochist")>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " enjoys abuse, so $pronoun hurries down to $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " enjoys abuse, so $pronoun decides to become a whore.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($slaves[$i].fetish == "cumslut")>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " hurries down to $brothelName to suck cocks.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to become a whore, mostly to suck cock.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($slaves[$i].fetish == "humiliation")>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $brothelName, since it's even more embarrassing to be a whore than a club slut.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to whore, since it's even more embarrassing to be a whore than to be a public servant.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($slaves[$i].fetish == "buttslut")>> <<if ($slaves[$i].balls > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($dairyRestraintsSetting < 2) && ($dairy > $dairySlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " chooses confinement in $dairyName, since all $pronoun will be expected to do is produce cum by orgasming to buttsex.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to get milked, since all $pronoun will be expected to do is produce cum by orgasming to buttsex.">> - <<assignJob $slaves[$i] "get milked">> + <<= assignJob($slaves[$i], "get milked")>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $brothelName, since whores get buttfucked more than anyone else.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to whore, since whores get buttfucked more than anyone else.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <</if>> <<elseif ($slaves[$i].fetish == "pregnancy")>> <<if ($slaves[$i].lactation > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($dairyRestraintsSetting < 2) && ($dairy > $dairySlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " heads down to $dairyName to be around other lactating girls.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to get milked, since $pronoun is already lactating.">> - <<assignJob $slaves[$i] "get milked" >> + <<= assignJob($slaves[$i], "get milked")>> <</if>> <<elseif ($PC.dick == 1) && isFertile($slaves[$i])>> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to serve you in $masterSuiteName, hoping that you'll get $possessive pregnant.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be your fucktoy, hoping that you'll get $possessive pregnant.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif ($universalRulesAssignsSelfFacility == 1) && ($dairyPregSetting > 0) && ($dairy > $dairySlaves) && isFertile($slaves[$i])>> <<if $dairyPregSetting > 1>> <<set $slaves[$i].choosesOwnAssignmentText += " eagerly rushes to $dairyName in the hopes that $possessive fertile womb will be packed full of children.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " rushes to $dairyName in the hopes that $possessive fertile womb will be rented out.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <</if>> <<elseif ($slaves[$i].bellyPreg >= 1500)>> <<if $arcologies[0].FSRepopulationFocus > 20>> <<if ($cash < 10000)>> <<if $brothel > $brothelSlaves && $universalRulesAssignsSelfFacility == 1>> <<set $slaves[$i].choosesOwnAssignmentText += " heads to $brothelName since $pronoun wants to set an example for any unimpregnated girls.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " heads to the streets to lavish in the attention given to pregnant prostitutes.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<else>> <<if $club > $clubSlaves && $universalRulesAssignsSelfFacility == 1>> <<set $slaves[$i].choosesOwnAssignmentText += " heads to $clubName to show off $possessive growing middle and lavish in the public's attention.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " heads to the streets to contribute to the number of visibly pregnant woman around.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <</if>> <<elseif $masterSuite > $masterSuiteSlaves && $universalRulesAssignsSelfFacility == 1>> <<set $slaves[$i].choosesOwnAssignmentText += " heads straight to $masterSuiteName to share the intimacy of $possessive pregnant body with you.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be your fucktoy to share the intimacy of $possessive pregnant body with you.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif ($slaves[$i].pregKnown == 1)>> <<if $masterSuite > $masterSuiteSlaves && $universalRulesAssignsSelfFacility == 1>> <<set $slaves[$i].choosesOwnAssignmentText += " heads straight to $masterSuiteName so you may watch for the day that $pronoun finally starts to show.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be your fucktoy so you may enjoy watching $object begin showing.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " can't indulge $possessive fetish by getting pregnant _oself, so $pronoun just heads down to $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " can't indulge $possessive fetish by getting pregnant _oself, so $pronoun glumly decides to be a whore.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <</if>> <<elseif ($slaves[$i].fetish == "boobs")>> <<if ($slaves[$i].lactation > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($dairyRestraintsSetting < 2) && ($dairy > $dairySlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " heads down to $dairyName for all the attention that'll be lavished on $possessive nipples.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to get milked, since $pronoun loves getting off to it.">> - <<assignJob $slaves[$i] "get milked">> + <<= assignJob($slaves[$i], "get milked")>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $clubName so $pronoun can show off $possessive bare breasts.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work as a public servant so $pronoun can show off $possessive bare breasts.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <</if>> <<elseif ($slaves[$i].attrXX > 85)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $clubName so $pronoun can hit on hot girls.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work as a public servant so $pronoun can hit on hot girls.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<elseif ($slaves[$i].attrXY > 85)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $clubName so $pronoun can hit on cute boys.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work as a public servant so $pronoun can hit on cute boys.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<elseif ($slaves[$i].energy > 95)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your girls who mind taking dick all day by working in $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to help those of your girls who mind taking dick all day by working as a whore.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($arcologies[0].FSChattelReligionist > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is a pure and faithful slave, so $pronoun sells $possessive body in the holy brothel.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is a pure and faithful slave, so $pronoun sells $possessive body as a holy prostitute.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($arcologies[0].FSEgyptianRevivalist > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun immediately joins your harem.">> - <<assignJob $slaves[$i] "serve in the master suite">> + <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun immediately joins your harem.">> - <<assignJob $slaves[$i] "please you">> + <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif ($arcologies[0].FSRomanRevivalist > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun decides $pronoun can best serve the state by raising money for the treasury, by selling $possessive body in $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun decides $pronoun can best serve the state by raising money for the treasury, by selling $possessive body as a prostitute.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($arcologies[0].FSAztecRevivalist > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun decides $pronoun can best serve the empire by serving at the fertility temple.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " is a devoted slave, so $pronoun decides $pronoun can best serve the empire by offering herself to the public.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<elseif ($arcologies[0].FSPaternalist > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $brothelName, a respectable position for a slave in this enlightened arcology.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be a whore, a respectable position for a slave in this enlightened arcology.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($arcologies[0].FSPastoralist > 0)>> <<if ($slaves[$i].lactation > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($dairyRestraintsSetting < 2) && ($dairy > $dairySlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " hurries to join your herd of dairy cows.">> - <<assignJob $slaves[$i] "work in the dairy">> + <<= assignJob($slaves[$i], "work in the dairy")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " hurries to join your herd of cows.">> - <<assignJob $slaves[$i] "get milked">> + <<= assignJob($slaves[$i], "get milked")>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $brothelName to help raise money to get more girls lactating properly.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to prostitute _oself to help raise money to get more girls lactating properly.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <</if>> <<elseif ($arcologies[0].FSHedonisticDecadence > 0)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($spa > $spaSlaves) && (($slaves[$i].trust < 60) || ($slaves[$i].devotion <= 60))>> <<set $slaves[$i].choosesOwnAssignmentText += " could use a break, so $pronoun heads to take a dip in the spa.">> - <<assignJob $slaves[$i] "rest in the spa">> + <<= assignJob($slaves[$i], "rest in the spa")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " could use a meal and a nap, so $pronoun grabs a cup of food and heads to bed.">> - <<assignJob $slaves[$i] "rest">> + <<= assignJob($slaves[$i], "rest")>> <</if>> <<else>> <<if ($slaves[$i].whoreSkill > $slaves[$i].entertainSkill)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to work in $brothelName, since $pronoun thinks _oself a better whore than a public slut.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to whore, since $pronoun thinks _oself a better whore than a public slut.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <<elseif ($slaves[$i].entertainSkill > $slaves[$i].whoreSkill)>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be a club girl, since $pronoun thinks _oself a better public slut than a whore.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to serve the public, since $pronoun thinks _oself a better public slut than a whore.">> - <<assignJob $slaves[$i] "serve the public">> + <<= assignJob($slaves[$i], "serve the public")>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($brothel > $brothelSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to join $possessive sisters and work in $brothelName.">> - <<assignJob $slaves[$i] "work in the brothel">> + <<= assignJob($slaves[$i], "work in the brothel")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to prostitute _oself to help you upgrade $arcologies[0].name and improve everyone's life.">> - <<assignJob $slaves[$i] "whore">> + <<= assignJob($slaves[$i], "whore")>> <</if>> <</if>> <</if>> <<else>> <<if ($universalRulesAssignsSelfFacility == 1) && ($club > $clubSlaves)>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to be a club girl, since partying is better than sitting around and failing to think of a job to do.">> - <<assignJob $slaves[$i] "serve in the club">> + <<= assignJob($slaves[$i], "serve in the club")>> <<elseif canWalk($slaves[$i]) && canSee($slaves[$i])>> <<set $slaves[$i].choosesOwnAssignmentText += " decides to tidy up the penthouse a little while $pronoun thinks.">> - <<assignJob $slaves[$i] "be a servant">> + <<= assignJob($slaves[$i], "be a servant")>> <<else>> <<set $slaves[$i].choosesOwnAssignmentText += " stays in bed, unable to come up with anything.">> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <</if>> <</if>> diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw index 0ab1c499e19b7dcca77601cf2a946376fef148d2..43e343e2967f40a1a4c128b7d3897c27d340bf48 100644 --- a/src/uncategorized/saDrugs.tw +++ b/src/uncategorized/saDrugs.tw @@ -1079,7 +1079,7 @@ <<if $slaves[$i].health <= -100>> $possessiveCap critically poor health @@.orange;caused her to miscarry.@@ <<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>> - <<set $slaves[$i].pregType = 0, $slaves[$i].pregSource = 0, $slaves[$i].pregWeek = -4, $slaves[$i].pregKnown = 0, WombFlush($slaves[$i])>><<SetBellySize $slaves[$i]>> + <<set $slaves[$i].pregType = 0, $slaves[$i].pregSource = 0, $slaves[$i].pregWeek = -4, $slaves[$i].pregKnown = 0, WombFlush($slaves[$i]), SetBellySize($slaves[$i])>> <<if $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0>> $pronounCap is <<if $slaves[$i].devotion < -50>> diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw index 8ce6a55e3547dc2f86d8a5410da8d39c36244bc7..5a7be4825dba51794b441ad47c0bfd7678a59bc7 100644 --- a/src/uncategorized/saLiveWithHG.tw +++ b/src/uncategorized/saLiveWithHG.tw @@ -325,7 +325,7 @@ <<elseif $HeadGirl.fetish != "pregnancy" && $slaves[$i].pregKnown == 1 && $slaves[$i].preg < 30 && $arcologies[0].FSRepopulationFocus == "unset" && $HGSuiteDrugs == 1>> $HeadGirl.slaveName promptly aborts the child growing in $slaves[$i].slaveName since she prefers her girls not harboring someone else's child or loaded down with her own unwanted spawn. <<set $slaves[$i].preg = 0, WombFlush($slaves[$i]), $slaves[$i].pregType = 0, $slaves[$i].pregSource = 0, $slaves[$i].pregWeek = 0, $slaves[$i].pregKnown = 0>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <</if>> <</if>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index e88b4a23e13f32ccc17af127f8104a393c5e8fbf..97d7a8571e9db9d23061ad498dbc191cfc2e488a 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -538,7 +538,7 @@ <<set $slaves[$i].health -= 20>> <<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>> <<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0, $slaves[$i].pregWeek = -4>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<if $slaves[$i].reservedChildren > 0>><<set $reservedChildren -= $slaves[$i].reservedChildren>><<set $slaves[$i].reservedChildren = 0>><</if>> <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> <<if $slaves[$i].devotion < -50>> @@ -866,7 +866,7 @@ <<set $slaves[$i].health -= 20>> <<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>> <<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0, $slaves[$i].pregWeek = -4>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> She is <<if $slaves[$i].devotion < -50>> @@.mediumorchid;filled with violent, consuming hatred@@ and @@.gold;fear.@@ Even though she knew her baby was destined for a slave orphanage, it seems she cared for it and views you as its killer. @@ -7804,7 +7804,7 @@ <<set $slaves[$i].pregWeek = 0>> <<set $slaves[$i].pregKnown = 0>> <<set WombFlush($slaves[$i])>> - <<SetBellySize $slaves[$i]>> + <<run SetBellySize($slaves[$i])>> <<set $cash -= 100000>> <<set $failedElite += 150>> <</if>> diff --git a/src/uncategorized/saStayConfined.tw b/src/uncategorized/saStayConfined.tw index b3d3cc4eb0e2f98184d720a4ce261025c8235790..43d7171f67cb5de62c5898851771400359e04c7a 100644 --- a/src/uncategorized/saStayConfined.tw +++ b/src/uncategorized/saStayConfined.tw @@ -46,6 +46,6 @@ The stress of confinement @@.red;damages $possessive health@@. <<if $slaves[$i].assignment == "be confined in the cellblock">> <<set _brokenSlaves++, _DL--, _dI-->> <</if>> - <<removeJob $slaves[$i] $slaves[$i].assignment>> + <<= removeJob($slaves[$i], $slaves[$i].assignment)>> <</if>> diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw index dae37313d594e94f438aa7b9ddda33a385902b13..6ffaaadaeb08ceeb9ad9fdb8db07f66bdef740af 100644 --- a/src/uncategorized/saTakeClasses.tw +++ b/src/uncategorized/saTakeClasses.tw @@ -7,7 +7,7 @@ <<if $slaves[$i].fetish == "mindbroken">> is no longer mentally capable and @@.yellow;has been dropped from class.@@ <<if $slaves[$i].assignment == "take classes">> - <<removeJob $slaves[$i] "take classes">> + <<= removeJob($slaves[$i], "take classes")>> <</if>> <<elseif ($slaves[$i].assignment == "learn in the schoolroom")>> <<if ($Schoolteacher != 0)>> @@ -225,7 +225,7 @@ <<if ($slaves[$i].analSkill > 30) || (($schoolroomUpgradeSkills == 0) && ($slaves[$i].analSkill > 10))>> <<if ($slaves[$i].vaginalSkill > 30) || (($schoolroomUpgradeSkills == 0) && ($slaves[$i].vaginalSkill > 10)) || ($slaves[$i].vagina < 0)>> $pronounCap can learn little from further classes, so @@.yellow;$possessive assignment has defaulted to rest.@@ - <<removeJob $slaves[$i] "take classes">> + <<= removeJob($slaves[$i], "take classes")>> <</if>> <</if>> <</if>> diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw index 9cbed24404afec2b9d9f497e6878223c20a42ec3..9e1296800f356ef972a9e0b91e98d9bd174962b2 100644 --- a/src/uncategorized/schoolroom.tw +++ b/src/uncategorized/schoolroom.tw @@ -76,10 +76,10 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These <<set _NewPop = $schoolroomSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Schoolroom">> <<if $Schoolteacher != 0>> - <<assignJob $Schoolteacher "rest">> + <<= assignJob($Schoolteacher, "rest")>> <</if>> <<for $schoolroomSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$SchlRiIDs[0]]] "take classes">> + <<= assignJob($slaves[$slaveIndices[$SchlRiIDs[0]]], "take classes")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/schoolroomReport.tw b/src/uncategorized/schoolroomReport.tw index c495b888e1b9a6734d24dfd3c75481a116b786d0..379d25789d9e19f61fb5b6fa971601b1289e1051 100644 --- a/src/uncategorized/schoolroomReport.tw +++ b/src/uncategorized/schoolroomReport.tw @@ -180,7 +180,7 @@ <</if>> /% Education done? Has to be here before we run the SA's or there will be double entries for slave %/ <<if $slaves[$i].fetish == "mindbroken">> - <<removeJob $slaves[$i] "learn in the schoolroom">> + <<= removeJob($slaves[$i], "learn in the schoolroom")>> <<set _restedSlaves++, _dI--, _DL-->> <<continue>> <<else>> @@ -192,7 +192,7 @@ <<if ($slaves[$i].analSkill > 30) || (($schoolroomUpgradeSkills == 0) && ($slaves[$i].analSkill > 10))>> <<if ($slaves[$i].vaginalSkill > 30) || (($schoolroomUpgradeSkills == 0) && ($slaves[$i].vaginalSkill > 10)) || ($slaves[$i].vagina < 0)>> <br><br>''__@@.pink;$slaves[$i].slaveName@@__'' can learn little from further classes, so @@.yellow;her assignment has defaulted to rest.@@ - <<removeJob $slaves[$i] "learn in the schoolroom">> + <<= removeJob($slaves[$i], "learn in the schoolroom")>> <<set _restedSlaves++, _dI--, _DL-->> <<continue>> <</if>> diff --git a/src/uncategorized/schoolteacherWorkaround.tw b/src/uncategorized/schoolteacherWorkaround.tw index e537c3f0bdc0539fbf380959215e9ecb13a4be12..fa740c8d57527b789a477542ef37c0b1e79fe719 100644 --- a/src/uncategorized/schoolteacherWorkaround.tw +++ b/src/uncategorized/schoolteacherWorkaround.tw @@ -1,10 +1,10 @@ :: Schoolteacher Workaround [silently] <<if $Schoolteacher != 0>> - <<removeJob $Schoolteacher "be the Schoolteacher">> + <<= removeJob($Schoolteacher, "be the Schoolteacher")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Schoolteacher">> + <<= assignJob($slaves[$i], "be the Schoolteacher")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Schoolteacher = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index b34868d0b0d6b6a93b024a2a6e56866c576e8682..d2a5b93f3530fcdfca576102f8f2ed04783a4462 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -60,7 +60,7 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>> <<set $activeSlave.preg = random(30,40)>> <<set $activeSlave.pregKnown = 1, $activeSlave.pregType = 1, $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.oralSkill = 0>> diff --git a/src/uncategorized/seRaiding.tw b/src/uncategorized/seRaiding.tw index ad69d37da02347b81f40a55b68ee1ce5fbfde047..e4976f0459e7f12fb729499510c32cbbf2d3417a 100644 --- a/src/uncategorized/seRaiding.tw +++ b/src/uncategorized/seRaiding.tw @@ -73,7 +73,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -109,7 +109,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -140,7 +140,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -218,7 +218,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -247,7 +247,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -295,7 +295,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -368,7 +368,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -398,7 +398,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -431,7 +431,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -489,7 +489,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> @@ -534,7 +534,7 @@ target <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<else>> <<set $activeSlave.preg = -1>> diff --git a/src/uncategorized/seRecruiterSuccess.tw b/src/uncategorized/seRecruiterSuccess.tw index b52c1ba67769b5a2a96a332caa0cce9e2cc1c428..fed7cc015fdb86a5f4e92fec9c5a3b9019df3a82 100644 --- a/src/uncategorized/seRecruiterSuccess.tw +++ b/src/uncategorized/seRecruiterSuccess.tw @@ -145,7 +145,7 @@ Your recruiter $Recruiter.slaveName has succeeded; she's convinced an old world <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, $activeSlave.preg)>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> -<<SetBellySize $activeSlave>> +<<run SetBellySize($activeSlave)>> <<set $activeSlave.boobs += 50*random(0,6)>> <<set $activeSlave.lactation = random(0,1)>> <<set $activeSlave.weight = random(0,50)>> diff --git a/src/uncategorized/servantsQuarters.tw b/src/uncategorized/servantsQuarters.tw index 8a4a600f89d59b2000141a13a1f9a19d82bdc3cb..0d647dc1b6f41eb878d824135766964617c06f06 100644 --- a/src/uncategorized/servantsQuarters.tw +++ b/src/uncategorized/servantsQuarters.tw @@ -75,10 +75,10 @@ $servantsQuartersNameCaps <<set _NewPop = $servantsQuartersSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Servants' Quarters">> <<if $Schoolteacher != 0>> - <<assignJob $Stewardess "rest">> + <<= assignJob($Stewardess, "rest")>> <</if>> <<for $servantsQuartersSlaves > 0>> - <<assignJob $slaves[$slaveIndices[$ServQiIDs[0]]] "be a servant">> + <<= assignJob($slaves[$slaveIndices[$ServQiIDs[0]]], "be a servant")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/siblingsWorkaround.tw b/src/uncategorized/siblingsWorkaround.tw index 670ebbadeedc2a1d748becaf276e5df1796cde15..aa269913d0cda10c13648722efdbae7c2fc8247e 100644 --- a/src/uncategorized/siblingsWorkaround.tw +++ b/src/uncategorized/siblingsWorkaround.tw @@ -31,7 +31,7 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea <<set _secondSlave.pregKnown = 1>> <<set _secondSlave.pregType = setPregType(_secondSlave)>> <</if>> -<<SetBellySize _secondSlave>> +<<run SetBellySize(_secondSlave)>> <<set _secondSlave.attrXX += random(-20,20)>> <<set _secondSlave.attrXX = Math.clamp(_secondSlave.attrXX, 0, 100)>> diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index 4dde852b4209eb314721d50eb35affa7c5bdac63..093c975ee06e5cfef95e4b6ad5082fc60d32a5af 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -68,7 +68,7 @@ <<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>> <</if>> <<else>> - <<removeJob $slaves[$i] "be your Head Girl">> + <<= removeJob($slaves[$i], "be your Head Girl")>> <</if>> <<case "live with your Head Girl">> <<if $slaves[$i].devotion >= random(-30,20)>> @@ -95,7 +95,7 @@ <<set $Recruiter = 0>> <</if>> <<if $Recruiter == 0>> - <<removeJob $slaves[$i] "recruit girls">> + <<= removeJob($slaves[$i], "recruit girls")>> <</if>> <<case "be the Madam">> <<set $Madam = $slaves[$i]>> @@ -116,7 +116,7 @@ <<set $Madam = 0>> <</if>> <<if $Madam == 0>> - <<removeJob $slaves[$i] "be the Madam">> + <<= removeJob($slaves[$i], "be the Madam")>> <</if>> <<case "be the DJ">> <<set $DJ = $slaves[$i]>> @@ -134,7 +134,7 @@ <<set $DJ = 0>> <</if>> <<if $DJ == 0>> - <<removeJob $slaves[$i] "be the DJ">> + <<= removeJob($slaves[$i], "be the DJ")>> <</if>> <<case "be the Milkmaid">> <<set $Milkmaid = $slaves[$i]>> @@ -152,7 +152,7 @@ <<set $Milkmaid = 0>> <</if>> <<if $Milkmaid == 0>> - <<removeJob $slaves[$i] "be the Milkmaid">> + <<= removeJob($slaves[$i], "be the Milkmaid")>> <</if>> <<case "be the Stewardess">> <<set $Stewardess = $slaves[$i]>> @@ -173,7 +173,7 @@ <<set $Stewardess = 0>> <</if>> <<if $Stewardess == 0>> - <<removeJob $slaves[$i] "be the Stewardess">> + <<= removeJob($slaves[$i], "be the Stewardess")>> <</if>> <<case "be the Schoolteacher">> <<set $Schoolteacher = $slaves[$i]>> @@ -191,7 +191,7 @@ <<set $Schoolteacher = 0>> <</if>> <<if $Schoolteacher == 0>> - <<removeJob $slaves[$i] "be the Schoolteacher">> + <<= removeJob($slaves[$i], "be the Schoolteacher")>> <</if>> <<case "be the Wardeness">> <<set $Wardeness = $slaves[$i]>> @@ -206,7 +206,7 @@ <<set $Wardeness = 0>> <</if>> <<if $Wardeness == 0>> - <<removeJob $slaves[$i] "be the Wardeness">> + <<= removeJob($slaves[$i], "be the Wardeness")>> <</if>> <<case "be the Attendant">> <<set $Attendant = $slaves[$i]>> @@ -221,7 +221,7 @@ <<set $Attendant = 0>> <</if>> <<if $Attendant == 0>> - <<removeJob $slaves[$i] "be the Attendant">> + <<= removeJob($slaves[$i], "be the Attendant")>> <</if>> <<case "be the Nurse">> <<set $Nurse = $slaves[$i]>> @@ -239,7 +239,7 @@ <<set $Nurse = 0>> <</if>> <<if $Nurse == 0>> - <<removeJob $slaves[$i] "be the Nurse">> + <<= removeJob($slaves[$i], "be the Nurse")>> <</if>> <<case "guard you">> <<set $Bodyguard = $slaves[$i]>> @@ -254,7 +254,7 @@ <<set $Bodyguard = 0>> <</if>> <<if $Bodyguard == 0>> - <<removeJob $slaves[$i] "guard you">> + <<= removeJob($slaves[$i], "guard you")>> <</if>> <<case "be your Concubine">> <<set $Concubine = $slaves[$i], $fuckSlaves++>> @@ -337,7 +337,7 @@ <<set $slaves[$i].pregWeek++>> <</if>> -<<SetBellySize $slaves[$i]>> /* here will be also set through WombGetVolume .bellyPreg, .pregType, to current values. */ +<<run SetBellySize($slaves[$i])>> /* here will be also set through WombGetVolume .bellyPreg, .pregType, to current values. */ /* end of preg speed and advance*/ diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 2d115c8239c209527c09f5274a3ed1d5175b9b39..2218123a44cb6a1a61620963a6f84cb1776db5d8 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -472,18 +472,18 @@ /* CAN BE REASSIGNED */ Assignment: <strong><span id="assign">$activeSlave.assignment<<if $activeSlave.sentence>> ($activeSlave.sentence weeks)<</if>></span>.</strong> - <<link "Rest">> <<removeJob $activeSlave $activeSlave.assignment>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> - | <<link "Fucktoy">> <<assignJob $activeSlave "please you">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + <<link "Rest">> <<= removeJob($activeSlave, $activeSlave.assignment)>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Fucktoy">> <<= assignJob($activeSlave, "please you")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <<if ($activeSlave.indentureRestrictions <= 0) && $activeSlave.breedingMark != 1>> - | <<link "Gloryhole">> <<assignJob $activeSlave "work a glory hole">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Gloryhole">> <<= assignJob($activeSlave, "work a glory hole")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <</if>> <<if $activeSlave.fuckdoll == 0>> /* NON-FUCKDOLL ASSIGNMENTS */ <<if ($activeSlave.devotion >= -20) || (($activeSlave.devotion >= -50) && ($activeSlave.trust < -20)) || ($activeSlave.trust < -50)>> <<if $activeSlave.intelligenceImplant < 1 && $activeSlave.fetish != "mindbroken">> - | <<link "Classes">> <<assignJob $activeSlave "take classes">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Classes">> <<= assignJob($activeSlave, "take classes")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <<else>> | Classes <</if>> @@ -492,9 +492,9 @@ <</if>> <<if (($activeSlave.devotion >= -20) || (($activeSlave.trust < -20) && ($activeSlave.devotion >= -50)) || ($activeSlave.trust < -50))>> - | <<link "Subordinate Slave" "Subordinate Targeting">> <<assignJob $activeSlave "be a subordinate slave">><</link>> + | <<link "Subordinate Slave" "Subordinate Targeting">> <<= assignJob($activeSlave, "be a subordinate slave")>><</link>> <<if canSee($activeSlave) && canWalk($activeSlave)>> - | <<link "House Servant">> <<assignJob $activeSlave "be a servant">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "House Servant">> <<= assignJob($activeSlave, "be a servant")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <<else>> /*| //Blind or immobile slaves cannot be servants// */ <</if>> @@ -503,18 +503,18 @@ <</if>> <<if $activeSlave.breedingMark != 1>> - | <<link "Whore">> <<assignJob $activeSlave "whore">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> - | <<link "Public Servant">> <<assignJob $activeSlave "serve the public">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Whore">> <<= assignJob($activeSlave, "whore")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Public Servant">> <<= assignJob($activeSlave, "serve the public")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <</if>> <<if ($activeSlave.lactation > 0) || ($activeSlave.balls > 0 && $activeSlave.ballType == "human")>> - | <<link "Milked">> <<assignJob $activeSlave "get milked">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Milked">> <<= assignJob($activeSlave, "get milked")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <<else>> /*| //Not lactating// */ <</if>> - | <<link "Confinement">> <<assignJob $activeSlave "stay confined">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> - | <<link "Let $him choose">> <<assignJob $activeSlave "choose her own job">><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Confinement">> <<= assignJob($activeSlave, "stay confined")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + | <<link "Let $him choose">> <<= assignJob($activeSlave, "choose her own job")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> | <<link "Stay on this assignment for another month">><<if $activeSlave.assignment != "choose her own job">><<set $activeSlave.sentence += 4>><<replace "#assign">>$activeSlave.assignment ($activeSlave.sentence weeks)<</replace>><</if>><</link>> <</if>>/* CLOSES FUCKDOLL CHECK */ @@ -1038,7 +1038,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 //$He is too old to become pregnant// <<if $activeSlave.preg == -1>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<elseif $activeSlave.broodmotherOnHold == 1>> //$His pregnancy implant is turned off<<if $activeSlave.broodmotherCountDown > 0>>; $he is expected to be completely emptied of $his remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>><<else>>.<</if>>// @@ -1158,13 +1158,13 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <br> __Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation == 3>><<print "$He is required to keep 2 gallons of $activeSlave.inflationType in $him at all times">><<elseif $activeSlave.inflation == 2>><<print "$He is required to keep 4 liters of $activeSlave.inflationType in $him at all times">><<elseif $activeSlave.inflation == 1>><<print "$He is required to keep 2 liters of $activeSlave.inflationType in $him at all times">><</if>></span></strong>. <<if $activeSlave.inflationMethod == 3>> - <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "milk">> - <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "cum">> - <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<else>> - <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let $him deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <</if>> <</if>> </span> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index c5b3644465a40ea30137aafd6327e327299a941c..b902b25bc64c4c7e0218005a7f7b23e3c2bd8971 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -85,42 +85,42 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $activeSlave.mother == $slaves[_ss].ID>> $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her daughter. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <</if>> <<if $activeSlave.father == $slaves[_ss].ID>> $slaves[_ss].slaveName is @@.mediumorchid;disappointed@@ that you are selling her daughter. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> <</if>> <<if $activeSlave.ID == $slaves[_ss].father>> $slaves[_ss].slaveName is @@.mediumorchid;saddened@@ that you are selling her father. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> <</if>> <<if $activeSlave.ID == $slaves[_ss].mother>> $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her mother. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <</if>> <<switch areSisters($activeSlave, $slaves[_ss])>> <<case 1>> $slaves[_ss].slaveName is @@.mediumorchid;devastated@@ that you are selling her twin. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 30>> <<case 2>> $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her sister. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <<case 3>> $slaves[_ss].slaveName is @@.mediumorchid;disheartened@@ that you are selling her half-sister. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> <</switch>> @@ -130,7 +130,7 @@ <<set _ss = $slaveIndices[$activeSlave.relationTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her $activeSlave.relation. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <<set $display = 1>> @@ -141,14 +141,14 @@ <<set _ss = $slaveIndices[$activeSlave.relationshipTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her best source of comfort and companionship in a life of bondage. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= $slaves[_ss].relationship*10>> <<set $display = 1>> <</if>> <<elseif $activeSlave.relationship == -3>> Selling one of your slave wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. - <<ClearSummaryCache>> + <<run clearSummaryCache()>> <br><br> <<set $rep -= 200>> <<set $display = 1>> @@ -162,7 +162,7 @@ <<set _ss = $slaveIndices[$activeSlave.rivalryTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> $slaves[_ss].slaveName is @@.hotpink;pleased@@ that she won't have to see her rival any more. - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion += $slaves[_ss].rivalry*3>> <<set $display = 1>> @@ -177,7 +177,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].trust >= -20)>> <<if ($slaves[_ss].physicalAge > 30)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -191,7 +191,7 @@ In short order, $activeSlave.slaveName is heard out on the promenade, sobbing and screaming as her new owner breaks in her virgin butt in public. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].anus == 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -204,7 +204,7 @@ $activeSlave.slaveName is soon seen on shift outside a seedy establishment in the lower arcology, mechanically offering her holes to passersby and flinching whenever her superiors come out to check on her. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].assignment == "whore") || ($slaves[_ss].assignment == "work in the brothel")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -217,7 +217,7 @@ $activeSlave.slaveName disappears for a time as her training is perfected, but she reappears in the refined brothel, wearing classy clothes and flirting gracefully with patrons of her body. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].assignment == "whore") || ($slaves[_ss].assignment == "work in the brothel")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -230,7 +230,7 @@ $activeSlave.slaveName is never again seen in public, but her fate is obvious: she's chained to a milking rack somewhere in a cavernous factory farm, with milk draining from her tits<<if $activeSlave.balls > 0>> and an electroshock stimulator up her butt to force her to cum<<elseif $activeSlave.ovaries > 0>> and a new baby in her belly every ten months<</if>>. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 50)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -243,7 +243,7 @@ $activeSlave.slaveName is quickly escorted out by her new master. She is rarely seen in public anymore, but her records show she is settling well into being her new owner's breeder. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].breedingMark != 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 5>> <<set $seed = 1>> <</if>> @@ -256,7 +256,7 @@ $activeSlave.slaveName is a common sight around the arcology, since free range cows are allowed to range between milkings. She seems reasonably content. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].assignment == "get milked") || ($slaves[_ss].assignment == "work in the dairy")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -269,7 +269,7 @@ The breeder already has stud stock, and $activeSlave.slaveName is rapidly impregnated. She's kept in a stockyard on the lower service levels of the arcology, one of a dense crowd of beaten-down women with gravid bellies. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].ovaries == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -283,7 +283,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "pregnancy")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -298,7 +298,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "boobs")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -314,7 +314,7 @@ <<if ($slaves[_ss].fetish == "boobs")>> <<if ($slaves[_ss].fetishKnown == 1)>> <<if $slaves[_ss].nipples == "fuckable">> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -330,7 +330,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "buttslut")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -345,7 +345,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "cumslut")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -360,7 +360,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "masochist")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -375,7 +375,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "sadist")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -390,7 +390,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "dom")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -405,7 +405,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "submissive")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -419,7 +419,7 @@ $activeSlave.slaveName leaves your control forthwith, to be freed and installed in a favored life in an arcology that gives $activeSlave.race people every possible advantage. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion < 10)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -432,7 +432,7 @@ $activeSlave.slaveName is shipped off to help produce a race of $activeSlave.race idiots to perform eternal servitude. She is not perceptive enough to fear her upcoming life as a downtrodden breeder. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -446,7 +446,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].devotion <= 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -460,7 +460,7 @@ $activeSlave.slaveName is taken away to join the legion of airheaded, big-titted sex slaves that throng the arcology owned by her purchaser. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence > 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -474,7 +474,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion < -20)>> <<if ($slaves[_ss].intelligenceImplant == 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -488,7 +488,7 @@ Stories about the place she's going have reached $arcologies[0].name, and $activeSlave.slaveName suspects the fate she's been condemned to when she's loaded into a shipping container expressly designed to keep the inmate awake and uncomfortable. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion > 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -501,7 +501,7 @@ $activeSlave.slaveName is taken away to join the tribe of squealing, slim forms that populate the arcology of her new owner. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence > 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -514,7 +514,7 @@ A shipping container arrives for $activeSlave.slaveName; as she's loaded into it, it sedates her and begins to pump hormones, curatives and growth enhancers into no less than seven places scattered over her body. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -527,7 +527,7 @@ $activeSlave.slaveName is seen in a research report nine months later; she has undergone some interesting changes. As expected by someone interested in her odd womb, she is quite pregnant, but what really stands out is the massive size of her testicles and her huge round implants. A quick glance at the article reveals that they aren't implants, in fact, her breasts and testicles are rounded with children. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].mpreg == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 5>> <<set $seed = 1>> <</if>> @@ -540,7 +540,7 @@ $activeSlave.slaveName is soon seen on live TV, restrained and still grotesquely pregnant. She screams into her restraints as the host approaches with a comically large syringe of abortifacients and drives it deep into her womb. Within minutes, a flood of liquid and fetuses are pouring from her gaping cunt, all the while he times how long it takes her overburdened womb to drain of all its contents. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].bellyPreg >= 300000>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 15>> <<set $seed = 1>> <</if>> @@ -554,7 +554,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vagina == 0)>> <<if isFertile($slaves[_ss])>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 20>> <<set $seed = 1>> <</if>> @@ -570,7 +570,7 @@ <<if ($slaves[_ss].vagina == 0)>> <<if isFertile($slaves[_ss])>> <<if ($slaves[_ss].fetish == "pregnancy")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -586,7 +586,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence <= 0)>> <<if isFertile($slaves[_ss])>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -600,7 +600,7 @@ $activeSlave.slaveName is taken away to join a quivering mass of plump, pampered ladies that crowd the bedroom of her new owner. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].behavioralFlaw == "gluttonous">> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -613,7 +613,7 @@ $activeSlave.slaveName's new owner is quite fond of his work and typically sends out photos of his progress. This is no exception; you are treated to a series of images featuring $activeSlave.slaveName being force fed until her stomach bulges. Day after day, you watch her handle more and more food until her belly is big enough to fill her lap even when empty. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].weight < 10>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -626,7 +626,7 @@ A purchasing agent arrives for $activeSlave.slaveName; he uses a lull in the proceedings to use a permanent marker to begin mapping out surgical sites across her body. There are a lot of them. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -640,7 +640,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].weight > 10)>> <<if ($slaves[_ss].intelligence < 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -655,7 +655,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation == 0)>> <<if ($slaves[_ss].devotion <= 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -669,7 +669,7 @@ $activeSlave.slaveName is terrified of her impending religious life; perhaps she's heard the new text that reads 'no woman come of age is holy unless she performs the act as many times per day as she has years less than forty.' <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].analCount < 200)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -682,7 +682,7 @@ $activeSlave.slaveName is shipped to a new arcology, and culturally, across the centuries. Her skill at arms is well enough known that her impending role as a gladiatrix is easily deduced. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].combatSkill > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -695,7 +695,7 @@ $activeSlave.slaveName is transported after losing a military engagement. Though her will remains strong, she's @@.gold;filled with fear@@ when she sees the rivers of blood that flow through the city. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].combatSkill > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -708,7 +708,7 @@ $activeSlave.slaveName's journey to her new home is respectful, even celebratory, as far as you can see. She is gravely informed by the purchasing agent that many slaves await her learned instruction. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence < -1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -722,7 +722,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vagina == 0)>> <<if ($slaves[_ss].ovaries == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -737,7 +737,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 50)>> <<if ($slaves[_ss].boobsImplant > 1000)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 2>> <<set $seed = 1>> <</if>> @@ -751,7 +751,7 @@ $activeSlave.slaveName is soon well-known among the slaves of the arcology, as many of them are sold after passing under her hands in training. She performs effectively, imparting good sex slave ethics in a generation of sluts. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -764,7 +764,7 @@ $activeSlave.slaveName is not pleased by her change in circumstances, since she is soon subjected to training rigor that she did not experience while your property. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligenceImplant == 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -777,7 +777,7 @@ A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. She has new fake tits, a bigger butt, lip implants, and even some facial bone structure alterations, but her balloon breasts are the most shocking change. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].boobsImplant == 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -790,7 +790,7 @@ A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. She is almost unrecognizable, having been quickly returned to as natural an appearance as skillful removal of her implants could manage. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].boobsImplant > 800)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -803,7 +803,7 @@ $activeSlave.slaveName's buyer takes charge of her, and cannot resist immediately running a hand between her buttocks to sink a couple of groping fingers into her soft asspussy. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "buttslut")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -816,7 +816,7 @@ $activeSlave.slaveName heads off to form part of whatever great design her new master is pursuing; all you know is that it apparently requires lots of lithe, sharp toothed slave girls. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -829,7 +829,7 @@ $activeSlave.slaveName becomes a common sight around the arcology, training slaves for her new master. They're usually seen hanging close by her as she manages them with an air at once protective and frankly sexual. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].actualAge > 35)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -842,7 +842,7 @@ $activeSlave.slaveName becomes quite a fixture at social events hosted by her new master; he enjoys showing off how healthy, happy and productive his cow is. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -855,7 +855,7 @@ $activeSlave.slaveName's nervous buyer comes to collect her, stammering and sweating and doing his best to pretend he does this all the time. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vaginalCount + $slaves[_ss].analCount < 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <<set $seed = 1>> <</if>> @@ -868,7 +868,7 @@ $activeSlave.slaveName is occasionally visible around the arcology, looking rather tired and gaunt under the stresses of a severe crash diet coupled with a punishing cardio regime. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].weight > 10)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -881,7 +881,7 @@ $activeSlave.slaveName is only rarely seen around the arcology, since her new owners force her to spend most of her time sleeping, eating and looking after herself. But her belly, painfully distended with food, makes her situation obvious. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].weight > 10)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -894,7 +894,7 @@ $activeSlave.slaveName is last seen somewhat later, packed into a shipment of cows heading out of the arcology. She looks rather ill from the drugs she's been filled with, and her now-distended breasts are marred by unsightly stretch marks. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation == 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -907,7 +907,7 @@ $activeSlave.slaveName is frequently seen in public over the next few weeks, since she's being trained to improve her feminine deportment. She grows visibly more feminine as time passes, as the hormonal effects of having her balls cut off become apparent. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].balls > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -920,7 +920,7 @@ $activeSlave.slaveName is next seen after some weeks of surgery. She's barely recognizable, and now possesses a serviceable vagina which she clearly is unsure of. Her original status is scarcely discernible. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -933,7 +933,7 @@ The upper half of $activeSlave.slaveName's body is never seen again. Her butt, on the other hand, is periodically visible in a lower-level arcade, her orifices gradually showing the wear and her price gradually decreasing, until finally she is seen no more. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion < 10)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust -= 2>> <<set $seed = 1>> <</if>> @@ -944,21 +944,21 @@ <<case "D cannibal">> $activeSlave.slaveName is never seen again. Her buyer prefers to keep whatever happened to her private. However, rumors of steaks, rump roasts, sweetbreads, and blood pudding eaten at three in the morning filter out from time to time. Naturally, these murmurs never fail to @@.gold;terrify@@ your other slaves. - <<ClearSummaryCache>> + <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<set $slaves[_ss].trust -= 2>> <</for>> <<case "harvester">> Though $activeSlave.slaveName's fate as a source of organs for transplantation is not announced, rumors of what happens to girls who @@.gold;fail to be valuable to you@@ pass among your slaves. - <<ClearSummaryCache>> + <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<set $slaves[_ss].trust -= 2>> <</for>> <<case "D amazon hunter">> When $activeSlave.slaveName's buyer appears, the big girl is almost bashful. He tries to resist the impulse, but quickly breaks down and sweeps her into a tight hug. She accepts the embrace meekly. Your other slaves find this @@.mediumaquamarine;very romantic.@@ - <<ClearSummaryCache>> + <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<set $slaves[_ss].trust += 1>> <</for>> @@ -968,7 +968,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetishKnown == 1)>> <<if ($slaves[_ss].fetish == "cumslut")>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <</if>> <</if>> @@ -979,7 +979,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].devotion > 20)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <</if>> <</if>> @@ -990,7 +990,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "buttslut")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <</if>> <</if>> @@ -1001,7 +1001,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].boobs > 400)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 1>> <</if>> <</if>> @@ -1012,7 +1012,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "pregnancy")>> <<if ($slaves[_ss].fetishKnown == 1)>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].trust += 4>> <</if>> <</if>> @@ -1023,7 +1023,7 @@ <<case "fuckdoll">> Though $activeSlave.slaveName's fate as a living fucktoy is not obvious, since most of her body will forever after be encased in thick latex, rumors of what happens to girls who @@.gold;fail to be valuable to you@@ pass among your slaves. - <<ClearSummaryCache>> + <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<set $slaves[_ss].trust -= 2>> <</for>> @@ -1033,7 +1033,7 @@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if canSee($slaves[_ss])>> <<if $slaves[_ss].intelligence < 0>> - <<ClearSummaryCache $slaves[_ss]>> + <<run clearSummaryCache($slaves[_ss])>> <<set $slaves[_ss].devotion -= 4>> <<set $seed = 1>> <</if>> diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw index c74363aee3556472305b62fab2c159acf1b0b9e3..f3d0c130816ca67ae0ccb50e5cd955761a4d4b65 100644 --- a/src/uncategorized/slaveSummary.tw +++ b/src/uncategorized/slaveSummary.tw @@ -573,18 +573,18 @@ will <<if ($displayAssignments == 1) && (_Pass == "Main") && (_Slave.ID != $HeadGirl.ID) && (_Slave.ID != $Recruiter.ID) && (_Slave.ID != $Bodyguard.ID)>> <<if _Slave.assignment != "rest">> - <<link "Rest" "Main">><<removeJob $slaves[_ssi] $slaves[_ssi].assignment>><</link>> + <<link "Rest" "Main">><<= removeJob($slaves[_ssi], $slaves[_ssi].assignment)>><</link>> <<else>> Rest <</if>> <<if _Slave.assignment != "please you">> - | <<link "Fucktoy" "Main">><<assignJob $slaves[_ssi] "please you">><</link>> + | <<link "Fucktoy" "Main">><<= assignJob($slaves[_ssi], "please you")>><</link>> <<else>> | Fucktoy <</if>> <<if _Slave.indentureRestrictions <= 0 && _Slave.breedingMark != 1>> <<if _Slave.assignment != "work a glory hole">> - | <<link "Gloryhole" "Main">><<assignJob $slaves[_ssi] "work a glory hole">><</link>> + | <<link "Gloryhole" "Main">><<= assignJob($slaves[_ssi], "work a glory hole")>><</link>> <<else>> | Hole <</if>> @@ -592,37 +592,37 @@ will <<if _Slave.fuckdoll == 0>> /* NON-FUCKDOLL ASSIGNMENTS */ <<if (_Slave.assignment != "take classes")>> <<if (_Slave.intelligenceImplant != 1) && ((_Slave.devotion >= -20) || ((_Slave.trust < -20) && (_Slave.devotion >= -50)) || (_Slave.trust < -50)) && (_Slave.fetish != "mindbroken")>> - | <<link "Classes" "Main">><<assignJob $slaves[_ssi] "take classes">><</link>> + | <<link "Classes" "Main">><<= assignJob($slaves[_ssi], "take classes")>><</link>> <</if>> <<else>> | Classes <</if>> <<if (_Slave.assignment != "be a servant")>> <<if ((_Slave.devotion >= -20) || ((_Slave.trust < -20) && (_Slave.devotion >= -50)) || (_Slave.trust < -50)) && canWalk(_Slave) && canSee(_Slave)>> - | <<link "House Servant" "Main">><<assignJob $slaves[_ssi] "be a servant">><</link>> + | <<link "House Servant" "Main">><<= assignJob($slaves[_ssi], "be a servant")>><</link>> <</if>> <<else>> | House Servant <</if>> <<if (_Slave.assignment != "whore") && _Slave.breedingMark != 1>> - | <<link "Whore" "Main">><<assignJob $slaves[_ssi] "whore">><</link>> + | <<link "Whore" "Main">><<= assignJob($slaves[_ssi], "whore")>><</link>> <<else>> | Whore <</if>> <<if (_Slave.assignment != "serve the public") && _Slave.breedingMark != 1>> - | <<link "Public Servant" "Main">><<assignJob $slaves[_ssi] "serve the public">><</link>> + | <<link "Public Servant" "Main">><<= assignJob($slaves[_ssi], "serve the public")>><</link>> <<else>> | Public Servant <</if>> <<if (_Slave.lactation > 0) || (_Slave.balls > 0)>> <<if (_Slave.assignment != "get milked")>> - | <<link "Milked" "Main">><<assignJob $slaves[_ssi] "get milked">><</link>> + | <<link "Milked" "Main">><<= assignJob($slaves[_ssi], "get milked")>><</link>> <<else>> | Milked <</if>> <</if>> <<if (_Slave.assignment != "stay confined")>> - | <<link "Confinement" "Main">><<assignJob $slaves[_ssi] "stay confined">><</link>> + | <<link "Confinement" "Main">><<= assignJob($slaves[_ssi], "stay confined")>><</link>> <<else>> | Confinement <</if>> @@ -639,7 +639,7 @@ will <br>Transfer to: <<if _Slave.assignment != "rest" && _Slave.assignment != "please you" && _Slave.assignment != "take classes" && _Slave.assignment != "be a servant" && _Slave.assignment != "whore" && _Slave.assignment != "serve the public" && _Slave.assignment != "get milked" && _Slave.assignment != "stay confined">> - <<link "Penthouse" "Main">><<removeJob $slaves[_ssi] $slaves[_ssi].assignment>><</link>> + <<link "Penthouse" "Main">><<= removeJob($slaves[_ssi], $slaves[_ssi].assignment)>><</link>> <<else>> Penthouse | <</if>> diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw index fe4cdd69e68579b307063040e6fb1060662b88ab..3158bd350049514f67d413925807fe42252478bb 100644 --- a/src/uncategorized/spa.tw +++ b/src/uncategorized/spa.tw @@ -75,10 +75,10 @@ $spaNameCaps <<set _NewPop = $spaSlaves+$dormitoryPopulation+_X>> <<link "Remove all slaves" "Spa">> <<if $Attendant != 0>> - <<assignJob $Attendant "rest">> + <<= assignJob($Attendant, "rest")>> <</if>> <<for $spaSlaves > 0>> - <assignJob $slaves[$slaveIndices[$SpaiIDs[0]]] "rest">> + <<= assignJob($slaves[$slaveIndices[$SpaiIDs[0]]], "rest")>> <</for>> <</link>> <<if _NewPop > $dormitory>> diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw index 3f2fc4c42da46d46d55af1b6333ca510be1203fa..cdf0fdcc142ae99ebe6d21dad692f02b210e4079 100644 --- a/src/uncategorized/spaReport.tw +++ b/src/uncategorized/spaReport.tw @@ -284,7 +284,7 @@ <</switch>> <<if ($slaves[$i].health >= 20) && ($slaves[$i].trust > 60) && ($slaves[$i].devotion > 60) && ($slaves[$i].fetish != "mindbroken") && ($slaves[$i].sexualFlaw == "none") && ($slaves[$i].behavioralFlaw == "none")>> <br><br>''__@@.pink;$slaves[$i].slaveName@@__'' is feeling well enough to leave $spaName, so @@.yellow;her assignment has defaulted to rest@@. - <<removeJob $slaves[$i] "rest in the spa">> + <<= removeJob($slaves[$i], "rest in the spa")>> <<set _restedSlaves++, _DL--, _dI-->> <<continue>> <</if>> diff --git a/src/uncategorized/specialSlave.tw b/src/uncategorized/specialSlave.tw index 7cafdfbee15ce9cbc4a2748d246b5131d1544a96..998098059da6e1d15bb2ceb0503ac6b536c0ed6e 100644 --- a/src/uncategorized/specialSlave.tw +++ b/src/uncategorized/specialSlave.tw @@ -14,7 +14,7 @@ <<set $activeSlave.weekAcquired = $week>> <<set $activeSlave.pubicHColor = $activeSlave.hColor>> <<set $activeSlave.underArmHColor = $activeSlave.hColor>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<if $familyTesting == 1>> /* special slaves exceptions to keep siblings sensible */ <<if $activeSlave.mother == -9999 && $activeSlave.father == -9998>> /* The twins - Camille & Kennerly */ diff --git a/src/uncategorized/stewardessWorkaround.tw b/src/uncategorized/stewardessWorkaround.tw index f6b7e4be7797f46638d7d9ef1313abdfc751d05c..7efd7ede9c6f08f6007e9e3a663a9deae01a8030 100644 --- a/src/uncategorized/stewardessWorkaround.tw +++ b/src/uncategorized/stewardessWorkaround.tw @@ -1,10 +1,10 @@ :: Stewardess Workaround [silently] <<if $Stewardess != 0>> - <<removeJob $Stewardess "be the Stewardess">> + <<= removeJob($Stewardess, "be the Stewardess")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Stewardess">> + <<= assignJob($slaves[$i], "be the Stewardess")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Stewardess = $slaves[$i]>> <</if>> diff --git a/src/uncategorized/subordinateTargeting.tw b/src/uncategorized/subordinateTargeting.tw index 51525b259dbe49ac7ed5d9df359f9c50a44296fc..973fae1d9c1dd50c94a5ef8cc2746d79f42a70ff 100644 --- a/src/uncategorized/subordinateTargeting.tw +++ b/src/uncategorized/subordinateTargeting.tw @@ -7,7 +7,7 @@ <<if $activeSlave.subTarget == $activeSlave.ID>> <<set $activeSlave.subTarget = 0>> <</if>> -<<assignJob $activeSlave "be a subordinate slave">> +<<= assignJob($activeSlave, "be a subordinate slave")>> <<set _st = $slaveIndices[$activeSlave.subTarget]>> <<if def _st>> $activeSlave.slaveName will submit to ''__@@.pink;$slaves[_st].slaveName@@__'' this week. @@ -22,5 +22,5 @@ <br><br>[[None|Subordinate Targeting][$activeSlave.subTarget = 0]] <<set $activeSlave = _displaySlave>> -<<assignJob $activeSlave "be a subordinate slave">> +<<= assignJob($activeSlave, "be a subordinate slave")>> diff --git a/src/uncategorized/summaryOptions.tw b/src/uncategorized/summaryOptions.tw index 20533c92279a7867c75a515216b02112e2d88788..a3ba75c1c552a5b699ba091e61e2dfbd2bce28a0 100644 --- a/src/uncategorized/summaryOptions.tw +++ b/src/uncategorized/summaryOptions.tw @@ -1,7 +1,7 @@ :: Summary Options [nobr] <<set $nextButton = "Back", $nextLink = "Options">> -<<ClearSummaryCache>> +<<run clearSummaryCache()>> //These options will affect the short slave summaries that appear on the main menu and the facility management screens.// diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index b1f9d293e984e28a88b1007a249ca57cbde199a9..bad97d4fa753062fb17f54ad5f9f08bf8cd6c813 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -11,7 +11,7 @@ <<if $activeSlave.dick == 0>> <<if $activeSlave.vagina == -1>> - <<set $activeSlave.clitPiercing = 0>> + <<set $activeSlave.clitPiercing = 0>> <</if>> <<if $activeSlave.drugs == "penis enhancement" || $activeSlave.drugs == "hyper penis enhancement" || $activeSlave.drugs == "breast redistributors">> <<set $activeSlave.drugs = "none">> @@ -111,7 +111,7 @@ <<else>> <<switch $surgeryType>> - <<case "fuckdoll" "blind" "remove eyes" "amp" "removeLimbs" "amp1" "PLimb interface1" "PLimb interface2" "PLimb interface3">> + <<case "fuckdoll" "mindbreak" "blind" "remove eyes" "amp" "removeLimbs" "amp1" "PLimb interface1" "PLimb interface2" "PLimb interface3">> <<set _ID = $activeSlave.ID>> <<if _ID == $Lurcher.ID>><<set $Lurcher = 0>><</if>> <<if _ID == $Recruiter.ID>><<set $Recruiter = 0>><</if>> @@ -133,12 +133,12 @@ <</if>> <</for>> /% Remove from facility array if assigned. %/ - <<removeJob $activeSlave $activeSlave.assignment>> + <<= removeJob($activeSlave, $activeSlave.assignment)>> <</switch>> As the remote surgery's long recovery cycle completes, <<if $surgeryType == "fuckdoll">> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> your new Fuckdoll <<if ($activeSlave.amp != 1)>>stumbles<<else>>is carried<</if>> out of the surgery room. The only <<if $activeSlave.vagina > -1>>areas of skin visible are those around its vulva and anus<<else>>area of skin visible is that around its anus<</if>><<if $activeSlave.lips > 95>>, though its lips are also visible as its facepussy makes the standard Fuckdoll mouth insert unnecessary<</if>>. You can see it starting to struggle against the constricting material of the Fuckdoll suit as the sedation wears off. Other than the tiny area of exposed skin and the slight movement, there's no indication that the sex doll in front of you is alive at all. <<elseif $surgeryType == "fuckdollExtraction">> $activeSlave.slaveName <<if ($activeSlave.amp != 1)>>walks<<else>>is carried<</if>> out of the surgery room. @@ -703,7 +703,7 @@ As the remote surgery's long recovery cycle completes, She notices almost immediately that the soreness that used to tell her she needed to be milked has gone. She bounces her breasts idly; it looks like she doesn't know what to think about having her lactation dry up. As with all surgery @@.red;her health has been slightly affected.@@ <<if $activeSlave.assignment == "get milked">> @@.yellow;Her assignment has defaulted to rest.@@ - <<removeJob $activeSlave $activeSlave.assignment>> + <<= removeJob($activeSlave, $activeSlave.assignment)>> <</if>> <<case "precum">> @@ -1960,7 +1960,7 @@ As the remote surgery's long recovery cycle completes, <</if>> <<case "bellyUp">> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<if $activeSlave.bellyImplant >= 10000 && $activeSlave.bellyImplant < 12000>> Her bellybutton has become an outie from the size of the implant within her. <</if>> @@ -1991,7 +1991,7 @@ As the remote surgery's long recovery cycle completes, <</if>> <<case "bellyDown">> - <<if $activeSlave.bellyImplant < 0>><<set $activeSlave.bellyImplant = 0>><</if>><<SetBellySize $activeSlave>> + <<if $activeSlave.bellyImplant < 0>><<set $activeSlave.bellyImplant = 0>><</if>><<run SetBellySize($activeSlave)>> <<if ($activeSlave.devotion > 50)>> <<if $activeSlave.amp != 1>>She hefts her lighter belly experimentally and turns to you with a smile to show off her new, slimmer form. She's still sore, so she doesn't bounce or stretch, but she turns from side to side to let you see it from all angles.<<else>>She bounces a little to feel the change in weight within her middle and turns her torso to you with a smile to show is off. She's still sore, so she doesn't bounce too much.<</if>> @@.hotpink;She's happy with your changes to her body@@ and @@.mediumaquamarine;trusts@@ that your looking out for her ability to serve you. As with all surgery @@.red;her health has been slightly affected.@@ <<set $activeSlave.devotion += 3>> @@ -2006,7 +2006,7 @@ As the remote surgery's long recovery cycle completes, <</if>> <<case "bellyOut">> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> She notices almost immediately that the weight in her middle is gone. She shifts her torso idly; it looks like she doesn't know what to think about having her belly implant removed. As with all surgery @@.red;her health has been slightly affected.@@ <<case "body hair removal">> diff --git a/src/uncategorized/wardenessWorkaround.tw b/src/uncategorized/wardenessWorkaround.tw index 48169182a61bbf7f67c2765527e4c4a4f3472ec0..b587730ba718762939ebe99b8f1d2e7e2329fd3e 100644 --- a/src/uncategorized/wardenessWorkaround.tw +++ b/src/uncategorized/wardenessWorkaround.tw @@ -1,10 +1,10 @@ :: Wardeness Workaround [silently] <<if $Wardeness != 0>> - <<removeJob $Wardeness "be the Wardeness">> + <<= removeJob($Wardeness, "be the Wardeness")>> <</if>> <<if $i > -1>> - <<assignJob $slaves[$i] "be the Wardeness">> + <<= assignJob($slaves[$i], "be the Wardeness")>> <<set $slaves[$i].livingRules = "luxurious">> <<set $Wardeness = $slaves[$i]>> <</if>> diff --git a/src/utility/assignWidgets.tw b/src/utility/assignWidgets.tw deleted file mode 100644 index 68339781768584d000e8b6d8b3709ca49b2a1247..0000000000000000000000000000000000000000 --- a/src/utility/assignWidgets.tw +++ /dev/null @@ -1,25 +0,0 @@ -:: Assign Widgets [widget nobr] - -/* - Call as <<assignJob slaveObject $returnTo | _currentRule.facilityRemove | "serve in the master suite" - $args[0] slave object. *MUST be present* - $args[1] Job to assign slave to. Will accept the $returnTo vars and the _currentRule.assignFacility vars and the actual job assignments "serve in the master suite" etc. - - This is basically a Widget version of assign but will work anywhere, and saves to the slaves[..] array, and changes your $args[0] var sent. -*/ - -<<widget assignJob>> - <<= assignJob($args[0], $args[1]) >> -<</widget>> - -/% - Call as <<removeJob slaveObject $returnTo | _currentRule.facilityRemove | "serve in the master suite">> - $args[0] slave object. *MUST be present* - $args[1] Job to remove slave from. Will accept the $returnTo vars and the _currentRule.assignFacility vars and the actual job assignments "serve in the master suite" etc. - - This is basically a Widget version of Retrieve but will work anywhere. It changes the assignment and saves to the slaves[..] array, and changes your $args[0] var sent. - Retrieve overrides the 'rest' in most cases. -%/ -<<widget removeJob>> - <<= removeJob($args[0], $args[1]) >> -<</widget>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index f5566d1407520fdb639f2042aa6f9d829096dbbc..8838a12b030fbdeda58c97f7462b2f3c6d0c5175 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -679,13 +679,13 @@ <br> __Required Bloating__: <strong><span id="inflate"><<if $activeSlave.inflation == 3>><<print "She is required to keep 2 gallons of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 2>><<print "She is required to keep 4 liters of $activeSlave.inflationType in her at all times">><<elseif $activeSlave.inflation == 1>><<print "She is required to keep 2 liters of $activeSlave.inflationType in her at all times">><</if>></span></strong>. <<if $activeSlave.inflationMethod == 3>> - <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0,$activeSlave.cumSource = 0,$activeSlave.milkSource = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "milk">> - <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<elseif $activeSlave.inflationType == "cum">> - <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <<else>> - <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0>><<SetBellySize $activeSlave>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> + <<link "Let her deflate">><<set $activeSlave.inflation = 0,$activeSlave.inflationType = "none",$activeSlave.inflationMethod = 0, SetBellySize($activeSlave)>><<SlaveInteractImpreg>><<SlaveInteractFertility>><</link>> <</if>> <</if>> <</replace>> @@ -890,7 +890,7 @@ //She is too old to become pregnant// <<if $activeSlave.preg == -1>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<elseif $activeSlave.broodmotherOnHold == 1>> //Her pregnancy implant is turned off<<if $activeSlave.broodmotherCountDown > 0>>; she is expected to be completely emptied of her remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>><<else>>.<</if>>// @@ -930,7 +930,7 @@ //It is too old to become pregnant// <<if $activeSlave.preg == -1>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<elseif $activeSlave.broodmotherOnHold == 1>> //Its pregnancy implant is turned off; it expected to be completely emptied of its remaining brood in $activeSlave.broodmotherCountDown week $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>>// @@ -1964,7 +1964,7 @@ <<set $args[0].pronoun = "she", $args[0].possessivePronoun = "hers", $args[0].possessive = "her", $args[0].object = "her", $args[0].objectReflexive = "herself", $args[0].noun = "girl">> <</if>> -<<SetBellySize $args[0]>> +<<run SetBellySize($args[0])>> <<run addSlave($args[0])>> <<if $args[0].origin != "She was your slave, but you freed her, which she repaid by participating in a coup attempt against you. It failed, and she is again your chattel." && $args[0].ID != $boomerangSlave.ID>> @@ -1978,7 +1978,7 @@ /* add to facilities array if needed */ <<if $args[0].assignment != "rest">> - <<assignJob $args[0] $args[0].assignment>> + <<= assignJob($args[0], $args[0].assignment)>> <</if>> /** do not run the Rules Assistant before adding the new slave to the slaves list! **/ @@ -2831,32 +2831,6 @@ This experience <</if>> <</widget>> -/* - Call as <<SetBellySize>> - $args[0]: Slave. -*/ -<<widget "SetBellySize">> - -/* - <<if $args[0].broodmother == 1>> - <<if $args[0].broodmotherCountDown > 0>> - <<set $args[0].bellyPreg = setup.broodSizeOneShutDown[$args[0].broodmotherCountDown]>> - <<set $args[0].pregType = $args[0].broodmotherCountDown>> - <<else>> - <<set $args[0].bellyPreg = setup.broodSizeOne[$args[0].preg]>> - <<set $args[0].pregType = $args[0].preg>> - <</if>> - <<elseif $args[0].preg > 5>> - <<set $args[0].bellyPreg = getPregBellySize($args[0])>> - <<else>> - <<set $args[0].bellyPreg = 0>> - <</if>> - - This block now relpaced with universal code -*/ - <<run SetBellySize($args[0])>> -<</widget>> - /* see how they are on a single line? This permits "."s and other things to be appended directly onto the widget result */ <<widget "PlayerName">><<if $surnameOrder != 1>><<switch $PC.nationality>><<case "Cambodian" "Chinese" "Hungarian" "Japanese" "Korean" "Mongolian" "Taiwanese" "Vietnamese">><<if $PC.surname>>$PC.surname <</if>>$PC.name<<default>>$PC.name<<if $PC.surname>> $PC.surname<</if>><</switch>><<else>>$PC.name<<if $PC.surname>> $PC.surname<</if>><</if>><</widget>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index a6e8fe31589ccccc13903ad910d3248aca8f2aa8..3838a83031131c8248b75e2bd6c2af77730452ca 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -2378,7 +2378,7 @@ <<set $activeSlave.pregType = random(3,8)>> <<set $activeSlave.pregAdaptation = 100>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.lactation = random(0,1)>> <<elseif $arcologies[_market].FSRestart > 50>> @@ -2436,7 +2436,7 @@ <<if isFertile($activeSlave)>> <<set $activeSlave.preg = random(1,39)>> <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> <<else>> @@ -2468,7 +2468,7 @@ <<if isFertile($activeSlave)>> <<set $activeSlave.preg = random(1,40)>> <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.lactation = random(0,1)>> <</if>> <</if>> @@ -2908,7 +2908,7 @@ <<if $activeSlave.preg > 0>> <<set $activeSlave.pregType = setPregType($activeSlave)>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> @@ -2945,7 +2945,7 @@ <<if $activeSlave.preg > 0>> <<set $activeSlave.pregType = setPregType($activeSlave)>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.vaginalSkill = random(15,100)>> <<set $activeSlave.vagina = random(1,3)>> <</if>> @@ -3004,7 +3004,7 @@ <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.anus = 0>> @@ -3027,7 +3027,7 @@ <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <</if>> <</if>> <<if random(1,2) == 1>> @@ -3102,7 +3102,7 @@ <<set $activeSlave.trust = random(25,45)>> <<set $activeSlave.health = random(50,60)>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.weight = 0>> <<set $activeSlave.waist = random(-30,10)>> <<set $activeSlave.chem = 20>> @@ -3158,7 +3158,7 @@ <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.weight = 0>> <<set $activeSlave.waist = random(-20,30)>> <<set $activeSlave.vaginalSkill = 0>> @@ -3212,7 +3212,7 @@ <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.weight = -20>> <<set $activeSlave.waist = -50>> <<if $SCP.schoolUpgrade == 2>> @@ -3282,7 +3282,7 @@ <<set $activeSlave.anus = 2>> <<set $activeSlave.vagina = -1>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.weight = random(0,20)>> <<set $activeSlave.vaginalSkill = 0>> <<set $activeSlave.oralSkill = 15>> @@ -3328,7 +3328,7 @@ <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = -1>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.weight = 0>> <<set $activeSlave.waist = random(-10,30)>> <<set $activeSlave.vaginalSkill = 0>> @@ -3372,7 +3372,7 @@ <<set $activeSlave.trust = -20>> <<set $activeSlave.health = random(20,30)>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.hips = either(0, 0, 1, 1, 1, 2)>> <<set $activeSlave.weight = random(-20,10)>> <<set $activeSlave.waist = random(-30,10)>> @@ -3457,7 +3457,7 @@ <<set $activeSlave.health = random(20,30)>> <<set $activeSlave.preg = random(10,40)>> <<set $activeSlave.pregType = random(1,5)>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.bellySag = 2>> <<set $activeSlave.bellySagPreg = 2>> <<set $activeSlave.hips = either(1, 1, 1, 2, 2)>> @@ -3633,7 +3633,7 @@ <<set $activeSlave.pregType = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <</if>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.intelligenceImplant = 1>> <<set $activeSlave.teeth = "normal">> <<if $TFS.schoolUpgrade == 2>> @@ -3689,7 +3689,7 @@ <<set $activeSlave.butt = random(2,4)>> <<set $activeSlave.boobs = random(30,60) * 10>> <<set $activeSlave.preg = 0>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.teeth = "normal">> <<set $activeSlave.devotion = random(60,75)>> <<set $activeSlave.trust = random(60,75)>> @@ -3923,7 +3923,7 @@ <<case "Motherly Attendant">> <<set $activeSlave.devotion = 90, $activeSlave.trust = 90, $activeSlave.health = random(80,95), $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 100, $activeSlave.face = random(60,90)>> <<set $activeSlave.career = either("a counselor", "a dispatch officer", "a lifeguard", "a masseuse", "a psychologist", "a therapist"), $activeSlave.birthsTotal = random(1,3), $activeSlave.pregKnown = 1, $activeSlave.preg = random(20,35), $activeSlave.pregWeek = $activeSlave.preg, $activeSlave.pregType = 1>> - <<SetBellySize $activeSlave>> + <<run SetBellySize($activeSlave)>> <<set $activeSlave.actualAge = random(36,$retirementAge-3)>> <<set $activeSlave.vagina = random(3,4)>> <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>>