diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 4343d546beb68c6cc399f40151e8e3023a394b01..9f2c30317976623aef831d57a4f538eb8fedb2b5 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,6 +2,15 @@
 
 0.10.7.1-0.10.x
 
+10/26/2018
+
+	34
+	-added a couple new recruit events that have been sitting in my todo pile for ages
+	-fixes
+	-major changes to how data is cleaned after cheatmode/during backwards compatability
+	-more fixes to bellies by deepmurk
+	-ripped out several large chunks of walkPast into JS and apparently didn't make a dent in it
+
 10/25/2018
 
 	33
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 03c7e54dd811e5b53697122134efaf339b2d5506..ff83195ac1d8e505f6386788b299c5ad461df860 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -33441,6 +33441,656 @@ window.findNaN = function findNan() {
 	return result;
 };
 
+/*:: Walk Past JS [script]*/
+
+/* temporary container until the entire thing is complete. No point in not deploying the working functions, you know? */
+
+window.primeSlave = function(activeSlave, seed) {
+
+	/* will be moved up once this becomes a single, contained function. */
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	var race
+	if (V.seeRace == 1) { race = activeSlave.race } else { race = "" }
+	
+	var pronouns = getPronouns(activeSlave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+
+	if (V.partner !== "relationship" || activeSlave.relationship == 1 || activeSlave.relationship == 2 || activeSlave.releaseRules == "restrictive") {
+		t += `${activeSlave.slaveName} `
+		t += walkPasts(activeSlave, seed)
+		/* WALKPASTS END */
+	}
+	/* TIME TOGETHER EXCEPTION ENDS */
+
+	return t;
+}
+
+window.rivalSlave = function(activeSlave, seed) {
+	var _partnerSlave = getSlave(activeSlave.rivalryTarget)
+
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	
+	var pronouns = getPronouns(activeSlave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+	
+	if (_partnerSlave != undefined) { /* potential problem point */
+
+		var race2
+		if (V.seeRace == 1) { race2 = _partnerSlave.race } else { race2 = "" }
+			
+		t += " Meanwhile, "
+		if (activeSlave.rivalry >= 3) {
+			t += `${_partnerSlave.slaveName}, whom ${he} hates, `
+		} else if (activeSlave.rivalry >= 2) {
+			t += `${his} rival ${_partnerSlave.slaveName} `
+		} else {
+			t += `${_partnerSlave.slaveName}, whom ${he} dislikes, `
+		}
+		t += walkPasts(_partnerSlave, 100-seed)
+
+		_target = "FRival", _partnerSlave = null
+		V.target = "FRival" /*potentially removed later*/
+	}
+	
+	return t;
+}
+
+window.walkPasts = function(slave, _seed) {
+
+	/* will be moved up once this becomes a single, contained function. */
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	var race
+	if (V.seeRace == 1) { race = slave.race } else { race = "" }
+	
+	var pronouns = getPronouns(slave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+
+	switch (slave.assignment) {
+	case "be your agent":
+		t += `is shaping society in ${his} assigned arcology.`
+		break
+	case "live with your agent":
+		t += `is helping ${his} lover shape society in ${his} assigned arcology.`
+		break
+	case "work in the dairy":
+		if (V.dairyRestraintsSetting > 1) {
+			t += `is strapped to a milking machine in ${V.dairyName}, `
+			if (slave.ovaries == 1 && V.dairyPregSetting > 0 && jsRandom(1,2) == 2) {
+				if (isFertile(slave)) {
+					t += `and is wincing in pain as the machine forces another load of cum into ${his} womb. As you watch, ${his} ${race} stomach steadily swells with baby batter.`
+				} else {
+					t += `giving you a good view of ${his} ${race} body and heavy belly on the feeds.`
+				}
+			} else if (slave.lactation > 0) {
+				if (slave.balls > 0 && jsRandom(1,2) == 1) {
+					if (slave.dick > 0) {
+						if (_seed > 50) {
+							t += `and is having ${his} cock sucked dry. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} balls tighten `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting > 0) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction to ${his} dick `
+							}
+							t += `forces ${him} closer to yet another ejaculation.`
+						} else {
+							t += `and is wincing in pain as the machine sucks ${his} sore cock, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					} else {
+						if (_seed > 50) {
+							t += `and is having ${his} balls sucked dry. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} scrotum tightens `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction against ${his} crotch `
+							}
+							t += `forces ${him} closer to yet another leaking ejaculation.`
+						} else {
+							t += `and is wincing in pain as the machine sucks ${his} empty balls, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} tits drained, but you have a good view of ${his} ${race} body on the feeds.`
+					} else {
+						t += `and is recovering after having ${his} tits sucked dry, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else if (slave.balls > 0) {
+				if (slave.dick > 0) {
+					if (_seed > 50) {
+						t += `and is having ${his} cock sucked dry. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} balls tighten `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting > 0) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction to ${his} dick `
+						}
+						t += `forces ${him} closer to yet another ejaculation.`
+					} else {
+						t += `and is wincing in pain as the machine sucks ${his} sore cock, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} balls sucked dry. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} scrotum tightens `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction against ${his} crotch `
+						}
+						t += `forces ${him} closer to yet another leaking ejaculation.`
+					} else {
+						t += `and is wincing in pain as the machine sucks ${his} empty balls, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else {
+				t += `and is massaging ${his} sore, milkless tits, but you have a good view of ${his} ${race} body on the feeds.`
+			}
+		} else {
+			t += `is working in ${V.dairyName}, `
+			if (slave.lactation > 0) {
+				if (slave.balls > 0 && jsRandom(1,2) == 1) {
+					if (slave.dick > 0) {
+						if (_seed > 50) {
+							t += `and is having ${his} cock milked. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} balls tighten `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting > 0) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction to ${his} dick `
+							}
+							t += `brings ${him} closer to a copious ejaculation.`
+						} else {
+							t += `and is massaging ${his} sore swollen cock, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					} else {
+						if (_seed > 50) {
+							t += `and is having ${his} balls drained. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} scrotum tightens `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction against ${his} crotch `
+							}
+							t += `brings ${him} closer to a copious squirting.`
+						} else {
+							t += `and is massaging ${his} aching balls, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} tits milked, but you have a good view of ${his} ${race} body on the feeds.`
+					} else {
+						t += `and is massaging ${his} sore tits, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else if (slave.balls > 0) {
+				if (slave.dick > 0) {
+					if (_seed > 50) {
+						t += `and is having ${his} cock milked. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} balls tighten `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction to ${his} dick `
+						}
+						t += `brings ${him} closer to a copious ejaculation.`
+					} else {
+						t += `and is massaging ${his} sore swollen cock, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} balls drained. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} scrotum tightens `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction against ${his} crotch `
+						}
+						t += `brings ${him} closer to a copious squirting.`
+					} else {
+						t += `and is massaging ${his} aching balls, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else {
+				t += `and is massaging ${his} sore, milkless tits, but you have a good view of ${his} ${race} body on the feeds.`
+			}
+		}
+		break
+	case "work in the brothel":
+		/* Beauty is being supplanted here until it is JS'd, after which it should be retured! */
+		t += `is working in ${V.brothelName}, and is `
+		if (slave.whoreSkill >= 100 && jsRandom(1,2) == 1) {
+			if (_seed > 80) {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += `riding one customer's dick while ${he} gives another a blowjob.`
+				} else {
+					t += "deep throating a pair of customer's dicks."
+				}
+			} else if (_seed > 60 && slave.amp != 1) {
+				t += "sucking one customer's cock while giving another a handjob."
+			} else if (_seed > 40) {
+				t += "eating out one customer's cunt while another "
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += `uses a strap-on on ${him}.`
+				} else {
+					t += `teases ${his} butt.`
+				}
+			} else if (_seed > 20) {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += "getting pounded by "
+				} else {
+					t += "amusing "
+				}
+				t += "two women wearing strap-ons."
+			} else {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += "being double penetrated by "
+				} else {
+					t += `using ${her} body to please `
+				}
+				t += "a pair of customers."
+			}
+		} else if (_seed > 80) {
+			if (canDoAnal(slave) || canDoVaginal(slave)) {
+				t += "pleasing "
+			} else {
+				t += "riding "
+			}
+			t += "a customer's dick."
+		} else if (_seed > 60) {
+			t += "sucking a customer's cock."
+		} else if (_seed > 40) {
+			t += "pleasuring a customer's cunt."
+		} else if (_seed > 20) {
+			t += "getting pounded by a woman wearing a strap-on."
+		} else {
+			t += "being held down and "
+			if (canDoAnal(slave)) {
+				t += "buttfucked  "
+			} else {
+				t += "raped "
+			}
+			t += "by a customer."
+		}
+		t += ` You have a voyeuristic view of ${his} ${race} body on the feeds.`
+		break
+	case "serve in the club":
+		t += `is working in ${V.clubName}, `
+		if (_seed > 50) {
+			t += `displaying ${his} ${race} body, keeping citizens company, and flirting with anyone who shows interest.`
+		} else {
+			t += `or rather just off it, having taken a prominent citizen back to a discreet room so he can use ${his} ${race} body.`
+		}
+		break
+	case "work as a servant":
+		if (_seed > 50) {
+			t += "was scrubbing the penthouse floor, until another slave requested oral service."
+		} else {
+			t += "is scrubbing the penthouse floor."
+		}
+		break
+	case "serve in the master suite":
+		if (slave.fuckdoll > 0) {
+			t += `waiting for use in ${V.masterSuiteName}, next to a display case full of other sex toys.`
+		} else if (V.masterSuiteUpgradeLuxury == 1) {
+			if (_seed > 50) {
+				t += `is sitting on the big bed in ${V.masterSuiteName}, awaiting your return.`
+			} else {
+				t += `is beautifying ${himself} in ${V.masterSuiteName} so ${he}'ll be pretty when you return.`
+			}
+		} else if (V.masterSuiteUpgradeLuxury == 2) {
+			t += `is in ${V.masterSuiteName}'s fuckpit, `
+			if (_seed > 80) {
+				t += `with a pair of ${his} fellow fucktoys industriously sucking on ${his} nipples.`
+			} else if (_seed > 60) {
+				if ((slave.anus > 0 && canDoAnal(slave)) || (slave.vagina > 0 && canDoVaginal(slave))) {
+					t += "taking double penetration from "
+				} else {
+					t += "being spitroasted by "
+				}
+				t += `a pair of ${his} fellow fucktoys.`
+			} else if (_seed > 40) {
+				if (canPenetrate(slave)) {
+					t += `with ${his} dick inside `
+				} else if (slave.dick > 0 && slave.dickAccessory != "chastity" && slave.dick != "combined chastity") {
+					t += `getting ${his} soft dick sucked by `
+				} else if (canDoVaginal(slave) || canDoAnal(slave)) {
+					t += "getting eaten out by "
+				} else {
+					t += "making out with "
+				}
+				t += "a fellow fucktoy."
+			} else if (_seed > 20) {
+				if (slave.vagina > 0 && canDoVagina(slave)) {
+					t += "getting pounded "
+				} else if (slave.anus > 0 && canDoAnal(slave)) {
+					t += `getting ${his} ass pounded `
+				} else if (canDoVaginal(slave) || canDoAnal(slave)) {
+					t += "getting eaten out "
+				} else {
+					t += "getting deepthroated "
+				}
+				t += "by a fellow fucktoy."
+			} else {
+				t += "performing oral sex on a fellow fucktoy."
+			}
+		} else {
+			if (slave.energy > 95) {
+				t += `is having enthusiastic sex with your other pets while waiting for you to ravish ${him}.`
+			} else {
+				t += "is having idle sex with several of your other toys while they await your pleasure."
+				if (slave.fetishKnown == 1) {
+					switch (slave.fetish) {
+					case "buttslut":
+						if (canDoAnal(slave) && slave.anus > 0) {
+							t += `${He}'s happily taking a strap-on up ${his} asspussy.`
+						} else {
+							t += `${He}'s happily got another slave between ${his} buttcheeks.`
+						}
+						break
+					case "cumslut":
+						t += `${He}'s happily performing oral on another slave.`
+						break
+					case "dom":
+						t += `${He}'s pinning another slave down while ${he} fucks her.`
+						break
+					case "submissive":
+						t += `${He}'s letting another slave have her way with ${him}.`
+						break
+					case "sadist":
+						if (slave.amp != 1) {
+							t += `${He}'s spanking another slave with one hand and fingering her with the other.`
+						} else {
+							t += `${He}'s painfully teasing another slave's nipple with ${his} teeth.`
+						}
+						break
+					case "masochist":
+						t += `Another slave is spanking ${him} while molesting everything she can.`
+						break
+					case "boobs":
+						t += `${He} has a slave sucking on each of ${his} nipples`
+						if (slave.amp != 1) {
+							t += ` while ${he} gives each a handjob.`
+						} else {
+							t += "."
+						}
+						break
+					case "pregnancy":
+						if (slave.belly >= 5000) {
+							t += `${He}'s sighing contentedly as ${his} rounded belly is sensually rubbed.`
+						} else if (canPenetrate(slave)) {
+							t += `${He}'s happily roleplaying impregnating the slave ${he}'s fucking.`
+						} else if ((slave.anus > 0 && canDoAnal(slave)) || (slave.vagina > 0 && canDoVaginal(slave))) {
+							t += `${He}'s happily roleplaying conceiving a child as ${he} gets fucked.`
+						} else {
+							t += `${He}'s happily roleplaying being hugely pregnant.`
+						}
+					}
+				}
+			}
+		}
+		break
+	/*
+	case "guard you":
+		t += "is standing discreetly behind your left shoulder, watching for threats."
+		break
+	*/
+	case "stay confined":
+		t += `is confined, but you have a fine view of ${his} ${race} body on the feed from ${his} cell.`
+		break
+	case "be confined in the cellblock":
+		t += `is confined in ${V.cellblockName}, but you have a fine view of ${his} ${race} body on the feed from ${his} cell.`
+		break
+	case "be confined in the arcade":
+	case "work a glory hole":
+		t += "is confined in "
+		if (slave.assignment == "be confined in the arcade") {
+			t += `${V.arcadeName}; `
+		} else {
+			t += "a glory hole; "
+		}
+		if (_seed > 80 && (canDoAnal(slave) || canDoVaginal(slave))) {
+			t += `${his} ass is held out at cock height, and a customer is using ${his} fuckhole.`
+		} else if (_seed > 60) {
+			t += `${his} mouth is held open at cock height, and a customer is fucking ${his} throat.`
+		} else if (_seed > 40) {
+			t += `a woman is abusing ${him} with a couple of dildos.`
+		} else if (_seed > 20 && canDoAnal(slave)) {
+			t += `a customer is harshly using ${his} defenseless anus.`
+		} else {
+			t += `a customer is cruelly spanking ${his} helpless butt.`
+		}
+		break
+	case "be the Madam":
+		t += `is managing ${V.brothelName}: ${he} is making sure all the customers are satisfied and all the whores are working hard.`
+		break
+	case "be your Concubine":
+		if (jsRandom(1,2) == 1) {
+			t += `is looking after ${himself}; ${he} spends many hours every day on ${his} beauty regimen.`
+		} else {
+			t += "is checking over the appearance of your harem, making sure everyone looks perfect."
+		}
+		break
+	case "be the Wardeness":
+		t += `is looking after the cells: ${he} is `
+		if (_seed > 50) {
+			t += `forcing a resistant slave to orally service ${him}.`
+		} else {
+			t += "beating a rebellious slave across the buttocks."
+		}
+		break
+	case "live with your Head Girl":
+		if (V.HeadGirl != 0) {
+			t += `is getting the Head Girl's suite cleaned up while ${V.HeadGirl.slaveName} is out working.`
+		} else {
+			t += "is making sure the Head Girl's suite is in order for your next Head Girl."
+		}
+		break
+	case "be the Stewardess":
+		t += `is managing the house servants in ${V.servantsQuartersName}: ${he} overseeing the laboring house slaves and punishing any that step out of line.`
+		break
+	case "be the Schoolteacher":
+		t += `is teaching classes in ${V.schoolroomName}: ${he} is leading the slave students in rote recitation.`
+		break
+	case "be the Attendant":
+		t += `is seeing to girls in ${V.spaName}: ${he} is gently soaping an exhausted slave.`
+		break
+	case "be the DJ":
+		if (_seed > 50) {
+			t += `is right where ${he} belongs, in the DJ booth in ${V.clubName} ${he} leads. ${He}'s bouncing in time with the beat to show off ${his} `
+			if (slave.boobs > 300) {
+				t += "tits."
+			} else {
+				t += "goods."
+			}
+		} else {
+			t += `is taking the lead on ${V.clubName}'s floor: ${he} greets new arrivals, flirts with them prettily, and subtly guides them towards choice sluts.`
+		}
+		break
+	case "be the Milkmaid":
+		t += `is working in ${V.dairyName}, looking after your stock.`
+		break
+	default: /* WALKPASTS START HERE */
+		if (slave.heels == 1 && !["flats", "none"].includes(slave.shoes)) {
+			t += `walks past your desk with the tiny swaying steps ${he} must take in order to walk on ${his} surgically altered legs. ${He} is on ${his} way to `
+		} else if (["heels", "pumps"].includes(slave.shoes)) {
+			t += `walks past your desk with the swaying steps ${he} must take in ${his} high heels. ${He} is on ${his} way to `
+		} else if (slave.shoes == "boots") {
+			t += `walks past your desk with the confident gait encouraged by ${his} high heeled boots. ${He} is on ${his} way to `
+		} else if (slave.shoes == "extreme heels") {
+			t += `walks past your desk with the tiny swaying steps ${he} must take in ${his} ridiculous heels. ${He} is on ${his} way to `
+		} else if (slave.heels == 1) {
+			t += `crawls past your desk on all fours, since ${he} has not been allowed the heels ${he} needs to walk upright. ${He} is on ${his} way to `
+		} else if (slave.amp == 1) {
+			t += `is carried past your desk by one of your other slaves. ${He} is on ${his} way to `
+		} else if (!canWalk(slave)) {
+			t += `is helped past your desk by one of your other slaves. ${He} is on ${his} way to `
+		} else {
+			t += `walks past your desk on ${his} way to `
+		}
+		if (slave.inflation > 0 && jsRandom(1,100) > 70) {
+			if (slave.inflationMethod == 1) {
+				t += `gorge ${himself} with ${slave.inflationType}; `
+			} else if (slave.inflationMethod == 2) {
+				t += `fill ${his} rear with `
+				switch (slave.inflationType) {
+				case "water":
+				case "milk":
+				case "cum":
+				case "food":
+					t += `${slave.inflationType}; `
+					break
+				default:
+					t += `${slave.inflationType}s; `
+					break
+				}
+			} else if (slave.inflationMethod == 3) {
+				if (slave.inflationType == "milk") {
+					t += `suckle from ${his} assigned nipple until ${he} is sufficiently filled with milk; `
+				} else {
+					t += `suck ${his} assigned dick until ${he} is sufficiently filled with cum; `
+				}
+			}
+		} else {
+			switch (slave.assignment) {
+			case "rest":
+				if (_seed > 50) {
+					t += "bed; "
+				} else {
+					t += "eat; "
+				}
+				break
+			case "get milked":
+				if (_seed > 50) {
+					if (slave.lactation) {
+						t += `milk ${his} overfull ${race} tits; `
+					} else {
+						t += `empty ${his} aching balls; `
+					}
+				} else {
+					if (slave.lactation) {
+						t += `drain ${his} milky ${race} udders; `
+					} else {
+						t += `relieve ${his} heavy balls; `
+					}
+				}
+				break
+			case "whore":
+				if (_seed > 50) {
+					t += `sell ${his} ${race} body; `
+				} else {
+					t += `ply ${his} trade as a whore; `
+				}
+				break
+			case "serve the public":
+				if (_seed > 50) {
+					t += "serve the public; "
+				} else {
+					t += "be a public slut; "
+				}
+				break
+			case "rest in the spa":
+				t += `relax in ${V.spaName}; `
+				break
+			case "please you":
+				t += `wait next to you and wait for you to fuck ${him}; `
+				break
+			case "be a subordinate slave":
+				t += "service your other slaves; "
+				break
+			case "be a servant":
+				t += "clean up after your other slaves; "
+				break
+			case "learn in the schoolroom":
+				t += "attend classes "
+				if (V.Schoolteacher == 0) {
+					t += `in ${V.schoolroomName}; `
+				} else {
+					t += `under ${V.Schoolteacher.slaveName}, perhaps literally; `
+				}
+				break
+			case "be a subordinate slave":
+				t += "service your other slaves; "
+				break
+			case "be the Attendant":
+				t += `look after the girls in ${V.spaName}; `
+				break
+			case "take classes":
+				t += `attend classes with ${V.assistantName}; `
+				break
+			case "be your Head Girl":
+				t += "oversee your other slaves; "
+				break
+			case "recruit girls":
+				t += `use ${his} connections to recruit slaves; `
+				break
+			default:
+				t += `${slave.assignment}; `
+				break
+			}
+		} /* end inflation blurb */
+		if (slave.fetish == "mindbroken") {
+			t += `${he} does not even glance at you as ${he} goes mindlessly to ${his} next task.`
+		} else if (slave.devotion < -50) {
+			t += `${he} directs a look of pure hatred at where you sit as ${he} passes.`
+		} else if (slave.devotion < -20) {
+			t += `${he} cannot keep the loathing from ${his} face as ${he} passes.`
+		} else if (slave.devotion <= 20) {
+			t += `${he} passes quickly, obviously hoping to avoid you.`
+		} else if (slave.devotion <= 50) {
+			t += `${he} rushes by, hurrying to ${his} next task.`
+		} else {
+			t += `as ${he} passes ${he} gives you a look of adoration.`
+		}
+		break
+	}
+	return t
+}
+
 /*:: Datatype Cleanup JS [script]*/
 
 /*
diff --git a/src/js/walkPastJS.tw b/src/js/walkPastJS.tw
new file mode 100644
index 0000000000000000000000000000000000000000..7fd041ebfa724ebbd29a8cb04721d7d3a89a6880
--- /dev/null
+++ b/src/js/walkPastJS.tw
@@ -0,0 +1,649 @@
+:: Walk Past JS [script]
+
+/* temporary container until the entire thing is complete. No point in not deploying the working functions, you know? */
+
+window.primeSlave = function(activeSlave, seed) {
+
+	/* will be moved up once this becomes a single, contained function. */
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	var race
+	if (V.seeRace == 1) { race = activeSlave.race } else { race = "" }
+	
+	var pronouns = getPronouns(activeSlave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+
+	if (V.partner !== "relationship" || activeSlave.relationship == 1 || activeSlave.relationship == 2 || activeSlave.releaseRules == "restrictive") {
+		t += `${activeSlave.slaveName} `
+		t += walkPasts(activeSlave, seed)
+		/* WALKPASTS END */
+	}
+	/* TIME TOGETHER EXCEPTION ENDS */
+
+	return t;
+}
+
+window.rivalSlave = function(activeSlave, seed) {
+	var _partnerSlave = getSlave(activeSlave.rivalryTarget)
+
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	
+	var pronouns = getPronouns(activeSlave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+	
+	if (_partnerSlave != undefined) { /* potential problem point */
+
+		var race2
+		if (V.seeRace == 1) { race2 = _partnerSlave.race } else { race2 = "" }
+			
+		t += " Meanwhile, "
+		if (activeSlave.rivalry >= 3) {
+			t += `${_partnerSlave.slaveName}, whom ${he} hates, `
+		} else if (activeSlave.rivalry >= 2) {
+			t += `${his} rival ${_partnerSlave.slaveName} `
+		} else {
+			t += `${_partnerSlave.slaveName}, whom ${he} dislikes, `
+		}
+		t += walkPasts(_partnerSlave, 100-seed)
+
+		_target = "FRival", _partnerSlave = null
+		V.target = "FRival" /*potentially removed later*/
+	}
+	
+	return t;
+}
+
+window.walkPasts = function(slave, _seed) {
+
+	/* will be moved up once this becomes a single, contained function. */
+	var _target = ""
+	var t = ""
+	var V = State.variables
+	var race
+	if (V.seeRace == 1) { race = slave.race } else { race = "" }
+	
+	var pronouns = getPronouns(slave)
+	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun
+	var He = capFirstChar(he), His = capFirstChar(his)
+
+	switch (slave.assignment) {
+	case "be your agent":
+		t += `is shaping society in ${his} assigned arcology.`
+		break
+	case "live with your agent":
+		t += `is helping ${his} lover shape society in ${his} assigned arcology.`
+		break
+	case "work in the dairy":
+		if (V.dairyRestraintsSetting > 1) {
+			t += `is strapped to a milking machine in ${V.dairyName}, `
+			if (slave.ovaries == 1 && V.dairyPregSetting > 0 && jsRandom(1,2) == 2) {
+				if (isFertile(slave)) {
+					t += `and is wincing in pain as the machine forces another load of cum into ${his} womb. As you watch, ${his} ${race} stomach steadily swells with baby batter.`
+				} else {
+					t += `giving you a good view of ${his} ${race} body and heavy belly on the feeds.`
+				}
+			} else if (slave.lactation > 0) {
+				if (slave.balls > 0 && jsRandom(1,2) == 1) {
+					if (slave.dick > 0) {
+						if (_seed > 50) {
+							t += `and is having ${his} cock sucked dry. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} balls tighten `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting > 0) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction to ${his} dick `
+							}
+							t += `forces ${him} closer to yet another ejaculation.`
+						} else {
+							t += `and is wincing in pain as the machine sucks ${his} sore cock, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					} else {
+						if (_seed > 50) {
+							t += `and is having ${his} balls sucked dry. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} scrotum tightens `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction against ${his} crotch `
+							}
+							t += `forces ${him} closer to yet another leaking ejaculation.`
+						} else {
+							t += `and is wincing in pain as the machine sucks ${his} empty balls, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} tits drained, but you have a good view of ${his} ${race} body on the feeds.`
+					} else {
+						t += `and is recovering after having ${his} tits sucked dry, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else if (slave.balls > 0) {
+				if (slave.dick > 0) {
+					if (_seed > 50) {
+						t += `and is having ${his} cock sucked dry. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} balls tighten `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting > 0) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction to ${his} dick `
+						}
+						t += `forces ${him} closer to yet another ejaculation.`
+					} else {
+						t += `and is wincing in pain as the machine sucks ${his} sore cock, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} balls sucked dry. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} scrotum tightens `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction against ${his} crotch `
+						}
+						t += `forces ${him} closer to yet another leaking ejaculation.`
+					} else {
+						t += `and is wincing in pain as the machine sucks ${his} empty balls, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else {
+				t += `and is massaging ${his} sore, milkless tits, but you have a good view of ${his} ${race} body on the feeds.`
+			}
+		} else {
+			t += `is working in ${V.dairyName}, `
+			if (slave.lactation > 0) {
+				if (slave.balls > 0 && jsRandom(1,2) == 1) {
+					if (slave.dick > 0) {
+						if (_seed > 50) {
+							t += `and is having ${his} cock milked. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} balls tighten `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting > 0) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction to ${his} dick `
+							}
+							t += `brings ${him} closer to a copious ejaculation.`
+						} else {
+							t += `and is massaging ${his} sore swollen cock, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					} else {
+						if (_seed > 50) {
+							t += `and is having ${his} balls drained. As you watch, `
+							if (slave.scrotum) {
+								t += `${his} scrotum tightens `
+							} else {
+								t += `${he} begins to thrust harder `
+							}
+							if (V.dairyStimulatorsSetting) {
+								t += `as the phallus up ${his} butt `
+							} else {
+								t += `as the suction against ${his} crotch `
+							}
+							t += `brings ${him} closer to a copious squirting.`
+						} else {
+							t += `and is massaging ${his} aching balls, but you have a good view of ${his} ${race} body on the feeds.`
+						}
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} tits milked, but you have a good view of ${his} ${race} body on the feeds.`
+					} else {
+						t += `and is massaging ${his} sore tits, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else if (slave.balls > 0) {
+				if (slave.dick > 0) {
+					if (_seed > 50) {
+						t += `and is having ${his} cock milked. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} balls tighten `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction to ${his} dick `
+						}
+						t += `brings ${him} closer to a copious ejaculation.`
+					} else {
+						t += `and is massaging ${his} sore swollen cock, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				} else {
+					if (_seed > 50) {
+						t += `and is having ${his} balls drained. As you watch, `
+						if (slave.scrotum) {
+							t += `${his} scrotum tightens `
+						} else {
+							t += `${he} begins to thrust harder `
+						}
+						if (V.dairyStimulatorsSetting) {
+							t += `as the phallus up ${his} butt `
+						} else {
+							t += `as the suction against ${his} crotch `
+						}
+						t += `brings ${him} closer to a copious squirting.`
+					} else {
+						t += `and is massaging ${his} aching balls, but you have a good view of ${his} ${race} body on the feeds.`
+					}
+				}
+			} else {
+				t += `and is massaging ${his} sore, milkless tits, but you have a good view of ${his} ${race} body on the feeds.`
+			}
+		}
+		break
+	case "work in the brothel":
+		/* Beauty is being supplanted here until it is JS'd, after which it should be retured! */
+		t += `is working in ${V.brothelName}, and is `
+		if (slave.whoreSkill >= 100 && jsRandom(1,2) == 1) {
+			if (_seed > 80) {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += `riding one customer's dick while ${he} gives another a blowjob.`
+				} else {
+					t += "deep throating a pair of customer's dicks."
+				}
+			} else if (_seed > 60 && slave.amp != 1) {
+				t += "sucking one customer's cock while giving another a handjob."
+			} else if (_seed > 40) {
+				t += "eating out one customer's cunt while another "
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += `uses a strap-on on ${him}.`
+				} else {
+					t += `teases ${his} butt.`
+				}
+			} else if (_seed > 20) {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += "getting pounded by "
+				} else {
+					t += "amusing "
+				}
+				t += "two women wearing strap-ons."
+			} else {
+				if (canDoAnal(slave) || canDoVaginal(slave)) {
+					t += "being double penetrated by "
+				} else {
+					t += `using ${her} body to please `
+				}
+				t += "a pair of customers."
+			}
+		} else if (_seed > 80) {
+			if (canDoAnal(slave) || canDoVaginal(slave)) {
+				t += "pleasing "
+			} else {
+				t += "riding "
+			}
+			t += "a customer's dick."
+		} else if (_seed > 60) {
+			t += "sucking a customer's cock."
+		} else if (_seed > 40) {
+			t += "pleasuring a customer's cunt."
+		} else if (_seed > 20) {
+			t += "getting pounded by a woman wearing a strap-on."
+		} else {
+			t += "being held down and "
+			if (canDoAnal(slave)) {
+				t += "buttfucked  "
+			} else {
+				t += "raped "
+			}
+			t += "by a customer."
+		}
+		t += ` You have a voyeuristic view of ${his} ${race} body on the feeds.`
+		break
+	case "serve in the club":
+		t += `is working in ${V.clubName}, `
+		if (_seed > 50) {
+			t += `displaying ${his} ${race} body, keeping citizens company, and flirting with anyone who shows interest.`
+		} else {
+			t += `or rather just off it, having taken a prominent citizen back to a discreet room so he can use ${his} ${race} body.`
+		}
+		break
+	case "work as a servant":
+		if (_seed > 50) {
+			t += "was scrubbing the penthouse floor, until another slave requested oral service."
+		} else {
+			t += "is scrubbing the penthouse floor."
+		}
+		break
+	case "serve in the master suite":
+		if (slave.fuckdoll > 0) {
+			t += `waiting for use in ${V.masterSuiteName}, next to a display case full of other sex toys.`
+		} else if (V.masterSuiteUpgradeLuxury == 1) {
+			if (_seed > 50) {
+				t += `is sitting on the big bed in ${V.masterSuiteName}, awaiting your return.`
+			} else {
+				t += `is beautifying ${himself} in ${V.masterSuiteName} so ${he}'ll be pretty when you return.`
+			}
+		} else if (V.masterSuiteUpgradeLuxury == 2) {
+			t += `is in ${V.masterSuiteName}'s fuckpit, `
+			if (_seed > 80) {
+				t += `with a pair of ${his} fellow fucktoys industriously sucking on ${his} nipples.`
+			} else if (_seed > 60) {
+				if ((slave.anus > 0 && canDoAnal(slave)) || (slave.vagina > 0 && canDoVaginal(slave))) {
+					t += "taking double penetration from "
+				} else {
+					t += "being spitroasted by "
+				}
+				t += `a pair of ${his} fellow fucktoys.`
+			} else if (_seed > 40) {
+				if (canPenetrate(slave)) {
+					t += `with ${his} dick inside `
+				} else if (slave.dick > 0 && slave.dickAccessory != "chastity" && slave.dick != "combined chastity") {
+					t += `getting ${his} soft dick sucked by `
+				} else if (canDoVaginal(slave) || canDoAnal(slave)) {
+					t += "getting eaten out by "
+				} else {
+					t += "making out with "
+				}
+				t += "a fellow fucktoy."
+			} else if (_seed > 20) {
+				if (slave.vagina > 0 && canDoVagina(slave)) {
+					t += "getting pounded "
+				} else if (slave.anus > 0 && canDoAnal(slave)) {
+					t += `getting ${his} ass pounded `
+				} else if (canDoVaginal(slave) || canDoAnal(slave)) {
+					t += "getting eaten out "
+				} else {
+					t += "getting deepthroated "
+				}
+				t += "by a fellow fucktoy."
+			} else {
+				t += "performing oral sex on a fellow fucktoy."
+			}
+		} else {
+			if (slave.energy > 95) {
+				t += `is having enthusiastic sex with your other pets while waiting for you to ravish ${him}.`
+			} else {
+				t += "is having idle sex with several of your other toys while they await your pleasure."
+				if (slave.fetishKnown == 1) {
+					switch (slave.fetish) {
+					case "buttslut":
+						if (canDoAnal(slave) && slave.anus > 0) {
+							t += `${He}'s happily taking a strap-on up ${his} asspussy.`
+						} else {
+							t += `${He}'s happily got another slave between ${his} buttcheeks.`
+						}
+						break
+					case "cumslut":
+						t += `${He}'s happily performing oral on another slave.`
+						break
+					case "dom":
+						t += `${He}'s pinning another slave down while ${he} fucks her.`
+						break
+					case "submissive":
+						t += `${He}'s letting another slave have her way with ${him}.`
+						break
+					case "sadist":
+						if (slave.amp != 1) {
+							t += `${He}'s spanking another slave with one hand and fingering her with the other.`
+						} else {
+							t += `${He}'s painfully teasing another slave's nipple with ${his} teeth.`
+						}
+						break
+					case "masochist":
+						t += `Another slave is spanking ${him} while molesting everything she can.`
+						break
+					case "boobs":
+						t += `${He} has a slave sucking on each of ${his} nipples`
+						if (slave.amp != 1) {
+							t += ` while ${he} gives each a handjob.`
+						} else {
+							t += "."
+						}
+						break
+					case "pregnancy":
+						if (slave.belly >= 5000) {
+							t += `${He}'s sighing contentedly as ${his} rounded belly is sensually rubbed.`
+						} else if (canPenetrate(slave)) {
+							t += `${He}'s happily roleplaying impregnating the slave ${he}'s fucking.`
+						} else if ((slave.anus > 0 && canDoAnal(slave)) || (slave.vagina > 0 && canDoVaginal(slave))) {
+							t += `${He}'s happily roleplaying conceiving a child as ${he} gets fucked.`
+						} else {
+							t += `${He}'s happily roleplaying being hugely pregnant.`
+						}
+					}
+				}
+			}
+		}
+		break
+	/*
+	case "guard you":
+		t += "is standing discreetly behind your left shoulder, watching for threats."
+		break
+	*/
+	case "stay confined":
+		t += `is confined, but you have a fine view of ${his} ${race} body on the feed from ${his} cell.`
+		break
+	case "be confined in the cellblock":
+		t += `is confined in ${V.cellblockName}, but you have a fine view of ${his} ${race} body on the feed from ${his} cell.`
+		break
+	case "be confined in the arcade":
+	case "work a glory hole":
+		t += "is confined in "
+		if (slave.assignment == "be confined in the arcade") {
+			t += `${V.arcadeName}; `
+		} else {
+			t += "a glory hole; "
+		}
+		if (_seed > 80 && (canDoAnal(slave) || canDoVaginal(slave))) {
+			t += `${his} ass is held out at cock height, and a customer is using ${his} fuckhole.`
+		} else if (_seed > 60) {
+			t += `${his} mouth is held open at cock height, and a customer is fucking ${his} throat.`
+		} else if (_seed > 40) {
+			t += `a woman is abusing ${him} with a couple of dildos.`
+		} else if (_seed > 20 && canDoAnal(slave)) {
+			t += `a customer is harshly using ${his} defenseless anus.`
+		} else {
+			t += `a customer is cruelly spanking ${his} helpless butt.`
+		}
+		break
+	case "be the Madam":
+		t += `is managing ${V.brothelName}: ${he} is making sure all the customers are satisfied and all the whores are working hard.`
+		break
+	case "be your Concubine":
+		if (jsRandom(1,2) == 1) {
+			t += `is looking after ${himself}; ${he} spends many hours every day on ${his} beauty regimen.`
+		} else {
+			t += "is checking over the appearance of your harem, making sure everyone looks perfect."
+		}
+		break
+	case "be the Wardeness":
+		t += `is looking after the cells: ${he} is `
+		if (_seed > 50) {
+			t += `forcing a resistant slave to orally service ${him}.`
+		} else {
+			t += "beating a rebellious slave across the buttocks."
+		}
+		break
+	case "live with your Head Girl":
+		if (V.HeadGirl != 0) {
+			t += `is getting the Head Girl's suite cleaned up while ${V.HeadGirl.slaveName} is out working.`
+		} else {
+			t += "is making sure the Head Girl's suite is in order for your next Head Girl."
+		}
+		break
+	case "be the Stewardess":
+		t += `is managing the house servants in ${V.servantsQuartersName}: ${he} overseeing the laboring house slaves and punishing any that step out of line.`
+		break
+	case "be the Schoolteacher":
+		t += `is teaching classes in ${V.schoolroomName}: ${he} is leading the slave students in rote recitation.`
+		break
+	case "be the Attendant":
+		t += `is seeing to girls in ${V.spaName}: ${he} is gently soaping an exhausted slave.`
+		break
+	case "be the DJ":
+		if (_seed > 50) {
+			t += `is right where ${he} belongs, in the DJ booth in ${V.clubName} ${he} leads. ${He}'s bouncing in time with the beat to show off ${his} `
+			if (slave.boobs > 300) {
+				t += "tits."
+			} else {
+				t += "goods."
+			}
+		} else {
+			t += `is taking the lead on ${V.clubName}'s floor: ${he} greets new arrivals, flirts with them prettily, and subtly guides them towards choice sluts.`
+		}
+		break
+	case "be the Milkmaid":
+		t += `is working in ${V.dairyName}, looking after your stock.`
+		break
+	default: /* WALKPASTS START HERE */
+		if (slave.heels == 1 && !["flats", "none"].includes(slave.shoes)) {
+			t += `walks past your desk with the tiny swaying steps ${he} must take in order to walk on ${his} surgically altered legs. ${He} is on ${his} way to `
+		} else if (["heels", "pumps"].includes(slave.shoes)) {
+			t += `walks past your desk with the swaying steps ${he} must take in ${his} high heels. ${He} is on ${his} way to `
+		} else if (slave.shoes == "boots") {
+			t += `walks past your desk with the confident gait encouraged by ${his} high heeled boots. ${He} is on ${his} way to `
+		} else if (slave.shoes == "extreme heels") {
+			t += `walks past your desk with the tiny swaying steps ${he} must take in ${his} ridiculous heels. ${He} is on ${his} way to `
+		} else if (slave.heels == 1) {
+			t += `crawls past your desk on all fours, since ${he} has not been allowed the heels ${he} needs to walk upright. ${He} is on ${his} way to `
+		} else if (slave.amp == 1) {
+			t += `is carried past your desk by one of your other slaves. ${He} is on ${his} way to `
+		} else if (!canWalk(slave)) {
+			t += `is helped past your desk by one of your other slaves. ${He} is on ${his} way to `
+		} else {
+			t += `walks past your desk on ${his} way to `
+		}
+		if (slave.inflation > 0 && jsRandom(1,100) > 70) {
+			if (slave.inflationMethod == 1) {
+				t += `gorge ${himself} with ${slave.inflationType}; `
+			} else if (slave.inflationMethod == 2) {
+				t += `fill ${his} rear with `
+				switch (slave.inflationType) {
+				case "water":
+				case "milk":
+				case "cum":
+				case "food":
+					t += `${slave.inflationType}; `
+					break
+				default:
+					t += `${slave.inflationType}s; `
+					break
+				}
+			} else if (slave.inflationMethod == 3) {
+				if (slave.inflationType == "milk") {
+					t += `suckle from ${his} assigned nipple until ${he} is sufficiently filled with milk; `
+				} else {
+					t += `suck ${his} assigned dick until ${he} is sufficiently filled with cum; `
+				}
+			}
+		} else {
+			switch (slave.assignment) {
+			case "rest":
+				if (_seed > 50) {
+					t += "bed; "
+				} else {
+					t += "eat; "
+				}
+				break
+			case "get milked":
+				if (_seed > 50) {
+					if (slave.lactation) {
+						t += `milk ${his} overfull ${race} tits; `
+					} else {
+						t += `empty ${his} aching balls; `
+					}
+				} else {
+					if (slave.lactation) {
+						t += `drain ${his} milky ${race} udders; `
+					} else {
+						t += `relieve ${his} heavy balls; `
+					}
+				}
+				break
+			case "whore":
+				if (_seed > 50) {
+					t += `sell ${his} ${race} body; `
+				} else {
+					t += `ply ${his} trade as a whore; `
+				}
+				break
+			case "serve the public":
+				if (_seed > 50) {
+					t += "serve the public; "
+				} else {
+					t += "be a public slut; "
+				}
+				break
+			case "rest in the spa":
+				t += `relax in ${V.spaName}; `
+				break
+			case "please you":
+				t += `wait next to you and wait for you to fuck ${him}; `
+				break
+			case "be a subordinate slave":
+				t += "service your other slaves; "
+				break
+			case "be a servant":
+				t += "clean up after your other slaves; "
+				break
+			case "learn in the schoolroom":
+				t += "attend classes "
+				if (V.Schoolteacher == 0) {
+					t += `in ${V.schoolroomName}; `
+				} else {
+					t += `under ${V.Schoolteacher.slaveName}, perhaps literally; `
+				}
+				break
+			case "be a subordinate slave":
+				t += "service your other slaves; "
+				break
+			case "be the Attendant":
+				t += `look after the girls in ${V.spaName}; `
+				break
+			case "take classes":
+				t += `attend classes with ${V.assistantName}; `
+				break
+			case "be your Head Girl":
+				t += "oversee your other slaves; "
+				break
+			case "recruit girls":
+				t += `use ${his} connections to recruit slaves; `
+				break
+			default:
+				t += `${slave.assignment}; `
+				break
+			}
+		} /* end inflation blurb */
+		if (slave.fetish == "mindbroken") {
+			t += `${he} does not even glance at you as ${he} goes mindlessly to ${his} next task.`
+		} else if (slave.devotion < -50) {
+			t += `${he} directs a look of pure hatred at where you sit as ${he} passes.`
+		} else if (slave.devotion < -20) {
+			t += `${he} cannot keep the loathing from ${his} face as ${he} passes.`
+		} else if (slave.devotion <= 20) {
+			t += `${he} passes quickly, obviously hoping to avoid you.`
+		} else if (slave.devotion <= 50) {
+			t += `${he} rushes by, hurrying to ${his} next task.`
+		} else {
+			t += `as ${he} passes ${he} gives you a look of adoration.`
+		}
+		break
+	}
+	return t
+}
\ No newline at end of file
diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index d015124d3b16ed8f13a166a12f9fa6eeca0a899b..d77c1b51cdf487e5f8e4bb42e1cb5efa5d72c463 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -604,7 +604,7 @@
 		<<if $PC.hacking >= 50 && random(0,100) < $PC.hacking>>
 			<<set $recruit.push("held POW")>>
 		<</if>>
-		<<if($pedo_mode == 1 || $minimumSlaveAge <= 13) && $PC.hacking >= 100 && random(0,100) > 95 && $cash >= 100000>>
+		<<if $PC.hacking >= 100 && random(0,100) > 95 && $cash >= 100000>>
 			<<set $recruit.push("rogue cyborg")>>
 		<</if>>	
 		<<if $arcologyUpgrade.drones == 1>>
@@ -630,6 +630,9 @@
 				<<set $events.push("RE malefactor")>>
 			<</if>>
 		<</if>>
+		<<if $rep > 16000 && random(1,100) < $rep/1000 && $cash >= 100000>>
+			<<set $recruit.push("forbidden love")>>
+		<</if>>
 
 	<</if>>
 
@@ -650,6 +653,9 @@
 				<<set $recruit.push("herm runaway")>>
 			<</if>>
 		<</if>>
+		<<if $rep > 16000 && random(1,100) < $rep/1000 && $cash >= 100000>>
+			<<set $recruit.push("princely betrayal")>>
+		<</if>>
 		<<if ($cash > 20000)>>
 			<<set $recruit.push("school trap")>>
 		<</if>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 133862abcef152278548c7137628828fc99a70d0..85559018584070331da87ebce6ae6c7589a18b05 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -1667,7 +1667,7 @@
 
 <<case "rogue cyborg">>
 
-<<set $activeSlaveOneTimeMaxAge = 13>>
+<<set $activeSlaveOneTimeMaxAge = 24>>
 <<set $oneTimeDisableDisability = 1>>
 <<include "Generate XX Slave">>
 <<set $activeSlave.career = setup.bodyguardCareers.random()>> 
@@ -1780,6 +1780,72 @@
 <<set $activeSlave.career = "a breeder">>
 <<set $activeSlave.fetish = "mindbroken">>
 
+<<case "princely betrayal">>
+
+<<if $pedo_mode == 1>>
+	<<set $activeSlaveOneTimeMinAge = 16>>
+	<<set $activeSlaveOneTimeMaxAge = 20>>
+<<else>>
+	<<set $activeSlaveOneTimeMinAge = 20>>
+	<<set $activeSlaveOneTimeMaxAge = 35>>
+<</if>>
+<<set $one_time_age_overrides_pedo_mode = 1>>
+<<set $oneTimeDisableDisability = 1>>
+<<include "Generate XY Slave">>
+<<set $activeSlave.face = random(80,100)>>
+<<set $activeSlave.intelligence = random(60,100)>>
+<<set $activeSlave.intelligenceImplant = 30>>
+<<set $activeSlave.origin = "You purchased her in order to pave the way for her brother to take the throne.">>
+<<set $activeSlave.career = "a prince">>
+<<set $activeSlave.prestige = 2>>
+<<set $activeSlve.prestigeDesc = "She was once the crown prince of an old world kingdom up until you aided her brother in making her 'disapear'.">>
+<<set $activeSlave.teeth = "normal">>
+<<set $activeSlave.devotion = random(-100,-90)>>
+<<set $activeSlave.trust = random(25,85)>>
+<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.weight = random(-10,10)>>
+<<set $activeSlave.muscles = random(10,40)>>
+<<set $activeSlave.anus = 0>>
+<<set $activeSlave.oralSkill = 0>>
+<<set $activeSlave.analSkill = 0>>
+<<set $activeSlave.behavioralFlaw = "arrogant">>
+<<set $activeSlave.hStyle = "luxurious">>
+<<set $activeSlave.hLength = 2>>
+<<set $activeSlave.pubicHStyle = "waxed">>
+<<set $activeSlave.underArmHStyle = "waxed">>
+
+<<case "forbidden love">>
+
+<<set $activeSlaveOneTimeMinAge = 14>>
+<<set $activeSlaveOneTimeMaxAge = 22>>
+<<set $oneTimeDisableDisability = 1>>
+<<include "Generate XX Slave">>
+<<set $activeSlave.face = random(90,100)>>
+<<set $activeSlave.intelligence = random(60,100)>>
+<<set $activeSlave.intelligenceImplant = 30>>
+<<set $activeSlave.origin = "You purchased her as a favor to her father.">>
+<<set $activeSlave.career = "a princess">>
+<<set $activeSlave.prestige = 2>>
+<<set $activeSlve.prestigeDesc = "She was once the princess of an old world kingdom up until her loose habits caught up with her and she was exiled.">>
+<<set $activeSlave.devotion = random(-100,-90)>>
+<<set $activeSlave.trust = random(25,85)>>
+<<set $activeSlave.health = random(0,20)>>
+<<set $activeSlave.vaginalSkill = 30>>
+<<set $activeSlave.analSkill = 0>>
+<<set $activeSlave.oralSkill = 50>>
+<<set $activeSlave.entertainSkill = 0>>
+<<set $activeSlave.whoreSkill = 50>>
+<<set $activeSlave.vagina = 1>>
+<<set $activeSlave.vaginaLube = random(1,2)>>
+<<set $activeSlave.pubicHStyle = "waxed">>
+<<set $activeSlave.underArmHStyle = "waxed">>
+<<set $activeSlave.anus = 0>>
+<<set $activeSlave.weight = random(-20,0)>>
+<<set $activeSlave.waist = random(-40,0)>>
+<<set $activeSlave.muscles = 0>>
+<<set $activeSlave.shoulders = random(-2,0)>>
+<<set $activeSlave.behavioralFlaw = "arrogant">>
+
 <<default>>
 <</switch>>
 
@@ -2230,6 +2296,26 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua
 <br><br>
 //Someone already started bidding for $him and more bids are coming in fast. As such things usually go, you guess that the price will come out to about <<print cashFormat(5000)>> in the end.//
 
+<<case "princely betrayal">>
+
+You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals.
+<br><br>
+This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the prince of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal.
+<br><br>
+He explains that he is the younger of two princes, and is about to carry out a plan to poison his father and take the throne for himself. However, his older brother is standing in the way of his plan simply by virtue of being next in line for the throne. He sees selling his brother to you as a more humane method of disposing of him, not wanting to have to kill any more family than he has to. It doesn't hurt that he stands to make a lot of money either.
+<br><br>
+His offer stands at a firm <<print cashFormat(100000)>>, but you've seen his brother; you stand to gain quite the addition to your chattel should you take the offer. 
+
+<<case "forbidden love">>
+
+You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals.
+<br><br>
+This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the King of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal.
+<br><br>
+He explains that his daughter, the princess, attempted to marry a man of improper station, and was deflowered by him. For this, her would-be fiancé was executed and she confined to a cell. Finding his daughter impossible to deal with after killing her boyfriend, he's decided he'd rather just be rid of her than have to continue carrying the shame of having such an unruly slut as a member of the royal family. 
+<br><br>
+His offer stands at a firm <<print cashFormat(100000)>>, but you've seen her exploits; you stand to gain quite the addition to your chattel should you take the offer. 
+
 <</switch>> /* END SLAVE GENERATION AND INTRODUCTION */
 
 <<switch $recruit>>
@@ -2247,7 +2333,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua
 	<<set $contractCost = 7500>>
 <<case "racer winner" "captured teen" "paternalist swan song" "embryo appropriation" "blessed virgin">>
 	<<set $contractCost = 10000>>
-<<case "rogue cyborg">>
+<<case "rogue cyborg" "princely betrayal" "forbidden love">>
 	<<set $contractCost = 100000>>
 <<case "repo housekeeper" "repo nanny" "farm cow" "farm bull" "school sale" "school trap">>
 	<<set $contractCost = 2500>>
@@ -2380,6 +2466,10 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua
 		<<set $activeSlave.pregType = 150>>
 		<<set $activeSlave.pregWeek = $activeSlave.preg>>
 		<<run SetBellySize($activeSlave)>>
+	<<case "princely betrayal">>
+		You agree to purchase the prince and wire the money. The next day, a rather expensive-looking VTOL comes and drops off an angry slave wearing fine clothing and a pair of shackles on each set of limbs. Despite $his bindings, $he puts up quite the fight before the legalities and biometric scanning are complete.
+	<<case "forbidden love">>
+		You agree to purchase the princess and wire the money. The next day, a rather expensive-looking VTOL comes and drops off an angry slave wearing fine clothing and a pair of shackles on each set of limbs. You truly wish she came gagged after the string of insults and slurs she hurls at you during the enslavement process.
 	<</switch>>
 	<<switch $recruit>>
 	<<case "desperate birth" "blessed vessel">>
@@ -2409,6 +2499,8 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua
 <<case "repo milf housekeeper">>
 <<case "desperate birth">>
 <<case "wandering homeless">>
+<<case "princely betrayal">>
+<<case "forbidden love">>
 <<default>>
 <br><<link "Sell $him immediately">>
 	<<set $cash += $slaveCost>>
diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw
index 2cb1d67ee9ca4f409a937e8df258f8067efa0778..317a241563bde4aca1180228324b8c0dbdab8739 100644
--- a/src/uncategorized/walkPast.tw
+++ b/src/uncategorized/walkPast.tw
@@ -2,6 +2,7 @@
 
 //
 <<set $target = "">>
+<<set _seed = random(1,100)>>
 <<if $familyTesting == 1 && totalRelatives($activeSlave) > 0 && random(1,100) > 80>>
 	<<set $relation = randomRelatedSlave($activeSlave)>>
 	<<if $relation.mother == $activeSlave.ID || $relation.father == $activeSlave.ID>>
@@ -20,15 +21,15 @@
 			<<set $relationType = "half-sister">>
 		<</switch>>
 	<</if>>
-	<<set _seed = 110, $partner = "relation">>
+	<<set _flag = 110, $partner = "relation">>
 <<elseif $familyTesting == 0 && ($activeSlave.relation !== 0) && (random(1,100) > 80)>>
-	<<set _seed = 110, $partner = "relation">>
+	<<set _flag = 110, $partner = "relation">>
 <<elseif ($activeSlave.relationship > 0) && (random(1,100) > 70)>>
-	<<set _seed = 120, $partner = "relationship">>
+	<<set _flag = 120, $partner = "relationship">>
 <<elseif ($activeSlave.rivalry !== 0) && ($activeSlave.amp !== 1) && (random(1,100) > 70)>>
-	<<set _seed = 130, $partner = "rivalry">>
+	<<set _flag = 130, $partner = "rivalry">>
 <<else>>
-	<<set _seed = random(1,100), $partner = "">>
+	<<set _flag = random(1,100), $partner = "">>
 <</if>>
 
 <<run SlavePronouns($activeSlave)>> /* are we including passages that need this? */
@@ -36,325 +37,7 @@
 
 <span id="walk">
 
-<<if ($partner !== "relationship") || ($activeSlave.relationship == 1) || ($activeSlave.relationship == 2) || ($activeSlave.releaseRules == "restrictive")>>
-	$activeSlave.slaveName
-	<<switch $activeSlave.assignment>>
-	<<case "work in the dairy">>
-		<<if ($dairyRestraintsSetting > 1)>>
-		is strapped to a milking machine in $dairyName.
-		<<elseif ($activeSlave.lactation == 0) && ($activeSlave.balls > 0)>>
-		is working in $dairyName, and is having $his cock milked. As you watch, $his balls tighten as the phallus up $his butt brings $him closer to a copious ejaculation.
-		<<elseif _seed > 50>>
-		is working in $dairyName, and is having $his tits milked, but you have a good view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds.
-		<<else>>
-		is working in $dairyName, and is massaging $his sore tits, but you have a good view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds.
-		<</if>>
-	<<case "work in the brothel">>
-		<<Beauty $activeSlave>>
-		is working in $brothelName, and is
-		<<if ($beauty > 100) && (random(1,2) == 1)>>
-			<<if (_seed > 80)>>
-			riding one customer's dick while $he gives another a blowjob.
-			<<elseif (_seed > 60)>>
-			sucking one customer's cock while giving another a handjob.
-			<<elseif (_seed > 40)>>
-			eating out one customer's cunt while another uses a strap-on on $him.
-			<<elseif (_seed > 20)>>
-			getting pounded by two women wearing strap-ons.
-			<<else>>
-			being double penetrated by a pair of customers.
-			<</if>>
-		<<elseif (_seed > 80)>>
-		riding a customer's dick.
-		<<elseif (_seed > 60)>>
-		sucking a customer's cock.
-		<<elseif (_seed > 40)>>
-		pleasuring a customer's cunt.
-		<<elseif (_seed > 20)>>
-		getting pounded by a woman wearing a strap-on.
-		<<else>>
-		being held down and buttfucked by a customer.
-		<</if>>
-		You have a voyeuristic view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds.
-	<<case "serve the public">>
-		<<Beauty $activeSlave>>
-		is serving the public, and is
-		<<if ($beauty > 100) && (random(1,2) == 1)>>
-			<<if (_seed > 80)>>
-			riding one citizen's dick while $he gives another a blowjob.
-			<<elseif (_seed > 60)>>
-			sucking one citizen's cock while giving another a handjob.
-			<<elseif (_seed > 40)>>
-			eating out one citizen's cunt while another uses a strap-on on $him.
-			<<elseif (_seed > 20)>>
-			getting pounded by two women wearing strap-ons.
-			<<else>>
-			being double penetrated by a pair of citizens.
-			<</if>>
-		<<elseif (_seed > 80)>>
-		riding a citizen's dick.
-		<<elseif (_seed > 60)>>
-		sucking a citizen's cock.
-		<<elseif (_seed > 40)>>
-		pleasuring a citizen's cunt.
-		<<elseif (_seed > 20)>>
-		getting pounded by a citizen wearing a strap-on.
-		<<else>>
-		being held down and buttfucked by a citizen.
-		<</if>>
-		You have a voyeuristic view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds.
-	<<case "serve in the club">>
-		is working in $clubName,
-		<<if _seed > 50>>
-		displaying $his <<if $seeRace == 1>>$activeSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest.
-		<<else>>
-		or rather just off it, having taken a prominent citizen back to a discreet room <<if $seeRace == 1>> so he can use $his $activeSlave.race <</if>>body.
-		<</if>>
-	<<case "work as a servant">>
-		<<if _seed > 50>>
-		was scrubbing the penthouse floor, until another slave requested oral service.
-		<<else>>
-		is scrubbing the penthouse floor.
-		<</if>>
-	<<case "serve in the master suite">>
-		<<if $activeSlave.fuckdoll > 0>>
-			waiting for use in $masterSuiteName, next to a display case full of other sex toys.
-		<<elseif $masterSuiteUpgradeLuxury == 1>>
-			<<if _seed > 50>>
-				is kneeling on the big bed in $masterSuiteName, awaiting your return.
-			<<else>>
-				is beautifying $himself in $masterSuiteName so $he'll be pretty when you return.
-			<</if>>
-		<<elseif $masterSuiteUpgradeLuxury == 2>>
-			is in $masterSuiteName's fuckpit,
-			<<if (_seed > 80)>>
-				with a pair of $his fellow fucktoys industriously sucking on $his nipples.
-			<<elseif (_seed > 60)>>
-				<<if $activeSlave.anus > 0>>
-				taking double penetration from
-				<<else>>
-				being spitroasted by
-				<</if>>
-				a pair of $his fellow fucktoys.
-			<<elseif (_seed > 40)>>
-				<<if canAchieveErection($activeSlave)>>
-				with $his dick inside
-				<<elseif $activeSlave.dick > 0>>
-				getting $his soft dick sucked by
-				<<else>>
-				getting eaten out by
-				<</if>>
-				a fellow fucktoy.
-			<<elseif (_seed > 20)>>
-				<<if $activeSlave.anus > 0>>
-				getting $his ass pounded
-				<<else>>
-				getting eaten out
-				<</if>>
-				by a fellow fucktoy.
-			<<else>>
-				performing oral sex on a fellow fucktoy.
-			<</if>>
-		<<else>>
-			<<if ($activeSlave.energy > 95)>>
-				is having enthusiastic sex with your other pets while waiting for your cock.
-			<<else>>
-				is having idle sex with several of your other toys while they await your pleasure.
-				<<if ($activeSlave.fetishKnown == 1)>>
-					<<switch $activeSlave.fetish>>
-					<<case "buttslut">>
-						$He's happily taking a strap-on up $his asspussy.
-					<<case "cumslut">>
-						$He's happily performing oral on another slave.
-					<<case "dom">>
-						$He's holding another slave down while $he fucks $him.
-					<<case "submissive">>
-						$He's letting another slave hold $his down as $he fucks $him.
-					<<case "sadist">>
-						$He's spanking another slave with one hand and giving $his a handjob with the other.
-					<<case "masochist">>
-						Another slave is spanking $him and giving $him a handjob at the same time.
-					<<case "boobs">>
-						$He has a slave sucking on each of $his nipples while $he gives each a handjob.
-					<<case "pregnancy">>
-						<<if $activeSlave.belly >= 5000>>
-							$He's sighing contentedly as $his rounded belly is sensually rubbed.
-						<<else>>
-							$He's happily roleplaying conceiving a child as $he gets fucked.
-						<</if>>
-					<</switch>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<case "stay confined">>
-		is confined, but you have a fine view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feed from $his cell.
-	<<case "be confined in the cellblock">>
-		is confined in $cellblockName, but you have a fine view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feed from $his cell.
-	<<case "be confined in the arcade" "work a glory hole">>
-		is confined in <<if $activeSlave.assignment == "be confined in the arcade">>$arcadeName<<else>>a glory hole<</if>>;
-		<<if (_seed > 80)>>
-		$his ass is held out at cock height, and a customer is using $his fuckhole.
-		<<elseif (_seed > 60)>>
-		$his mouth is held open at cock height, and a customer is fucking $his throat.
-		<<elseif (_seed > 40)>>
-		a woman is abusing $his with a couple of dildos.
-		<<elseif (_seed > 20)>>
-		a customer is cruelly spanking $his helpless butt.
-		<<else>>
-		a customer is harshly using $his defenseless anus.
-		<</if>>
-	<<case "be the Madam">>
-		is managing $brothelName: $he is making sure all the customers are satisfied and all the whores are working hard.
-	<<case "be your Concubine">>
-		<<if random(1,2) == 1>>
-			is looking after $himself; $he spends many hours every day on $his beauty regimen.
-		<<else>>
-			is checking over the appearance of your harem, making sure everyone looks perfect.
-		<</if>>
-	<<case "be the Wardeness">>
-		is looking after the cells: $he is
-		<<if _seed > 50>>
-		forcing a resistant slave to orally service $him.
-		<<else>>
-		beating a rebellious slave across the buttocks.
-		<</if>>
-	<<case "live with your Head Girl">>
-		<<if $HeadGirl != 0>>
-			is getting the Head Girl's suite cleaned up while $HeadGirl.slaveName is out working.
-		<<else>>
-			is making sure the Head Girl's suite is in order for your next Head Girl.
-		<</if>>
-	<<case "be the Stewardess">>
-		is managing the house servants in $servantsQuartersName: $he overseeing the laboring house slaves and punishing any that step out of line.
-	<<case "be the Schoolteacher">>
-		is teaching classes in $schoolroomName: $he is leading the slave students in rote recitation.
-	<<case "be the DJ">>
-		is right where $he belongs, in the DJ booth in $clubName $he leads. $He's bouncing in time with the beat to show off $his tits.
-	<<case "be the Milkmaid">>
-		is working in $dairyName, looking after your stock.
-/%
-	<<case "guard you">>
-		is standing discreetly behind your left shoulder, watching for threats. $He has a straight ceramic sword strapped to $his back and a machine pistol at $his hip.
-%/
-	<<default>> /* WALKPASTS START HERE */
-
-		<<if ($activeSlave.heels == 1) && !["flats", "none"].includes($activeSlave.shoes)>>
-			walks past your desk with the tiny swaying steps $he must take in order to walk on $his surgically altered legs. $He is on $his way to
-		<<elseif ["heels", "pumps"].includes($activeSlave.shoes)>>
-			walks past your desk with the swaying steps $he must take in $his high heels. $He is on $his way to
-		<<elseif ($activeSlave.shoes == "boots")>>
-			walks past your desk with the confident gait encouraged by $his high heeled boots. $He is on $his way to
-		<<elseif ($activeSlave.shoes == "extreme heels")>>
-			walks past your desk with the tiny swaying steps $he must take in $his ridiculous heels. $He is on $his way to
-		<<elseif ($activeSlave.heels == 1)>>
-			crawls past your desk on all fours, since $he has not been allowed the heels $he needs to walk upright. $He is on $his way to
-		<<elseif ($activeSlave.amp == 1)>>
-			is carried past your desk by one of your other slaves. $He is on $his way to
-		<<elseif !canWalk($activeSlave)>>
-			is helped past your desk by one of your other slaves. $He is on $his way to
-		<<else>>
-			walks past your desk on $his way to
-		<</if>>
-		<<if $activeSlave.inflation > 0 && random(1,100) > 70>>
-			<<if $activeSlave.inflationMethod == 1>>
-				gorge $himself with $activeSlave.inflationType;
-			<<elseif $activeSlave.inflationMethod == 2>>
-				fill $his rear with 
-				<<switch $activeSlave.inflationType>>
-				<<case "water" "milk" "cum" "food">>
-					$activeSlave.inflationType;
-				<<default>>
-					<<print $activeSlave.inflationType>>s;
-				<</switch>>
-			<<elseif $activeSlave.inflationMethod == 3>>
-				<<if $activeSlave.inflationType == "milk">>
-					suckle from $his assigned nipple until $he is sufficiently filled with milk; 
-				<<else>>
-					suck $his assigned dick until $he is sufficiently filled with cum; 
-				<</if>>
-			<</if>>
-		<<else>>
-		<<switch $activeSlave.assignment>>
-		<<case "rest">>
-			<<if _seed > 50>>
-			bed;
-			<<else>>
-			eat;
-			<</if>>
-		<<case "get milked">>
-			drain $his
-			<<if ($activeSlave.lactation == 0) && ($activeSlave.balls > 0)>>
-				cum-filled, <<if $seeRace == 1>>$activeSlave.race <</if>>balls;
-			<<elseif ($activeSlave.lactation > 0) && ($activeSlave.balls > 0)>>
-				cum-filled, <<if $seeRace == 1>>$activeSlave.race <</if>>balls and milky udders;
-			<<else>>
-				milky <<if $seeRace == 1>>$activeSlave.race <</if>>udders;
-			<</if>>
-		<<case "whore">>
-			<<if _seed > 50>>
-			sell $his <<if $seeRace == 1>>$activeSlave.race <</if>>body;
-			<<else>>
-			ply $his trade as a whore;
-			<</if>>
-		<<case "serve the public">>
-			<<if _seed > 50>>
-			serve the public;
-			<<else>>
-			be a public slut;
-			<</if>>
-		<<case "rest in the spa">>
-			relax in $spaName;
-		<<case "be a servant">>
-			clean up after your other slaves;
-		<<case "learn in the schoolroom">>
-			attend classes
-			<<if $Schoolteacher == 0>>
-			in $schoolroomName;
-			<<else>>
-			under $Schoolteacher.slaveName, perhaps literally;
-			<</if>>
-		<<case "be a subordinate slave">>
-			service your other slaves;
-		<<case "be the Attendant">>
-			look after the girls in $spaName;
-		<<case "take classes">>
-			attend classes with $assistantName;
-		<<case "be your Head Girl">>
-			oversee your other slaves;
-/%
-		<<case "please you">>
-			sit next to you and wait for
-			<<if _seed > 50>>
-			you to fuck $him;
-			<<else>>
-			$his Master to use $his<<if $seeRace == 1>> $activeSlave.race<</if>> body;
-			<</if>>
-%/
-		<<case "recruit girls">>
-			use $his connections to recruit slaves;
-		<<default>>
-			$activeSlave.assignment;
-		<</switch>>
-		<</if>> /* end inflation blurb */
-		<<if ($activeSlave.amp == 1)>>
-			$he is carried by on $his way to $his next task.
-		<<elseif $activeSlave.fetish == "mindbroken">>
-			$he does not even glance at you as $he goes mindlessly to $his next task.
-		<<elseif $activeSlave.devotion < -50>>
-			$he directs a look of pure hatred at where you sit as $he passes.
-		<<elseif $activeSlave.devotion < -20>>
-			$he cannot keep the loathing from $his face as $he passes.
-		<<elseif $activeSlave.devotion <= 20>>
-			$he passes quickly, obviously hoping to avoid you.
-		<<elseif $activeSlave.devotion <= 50>>
-			$he rushes by, hurrying to $his next task.
-		<<else>>
-			as $he passes $he gives you a look of adoration.
-		<</if>>
-	<</switch>>
-	/* WALKPASTS END */
-<</if>>
-/* TIME TOGETHER EXCEPTION ENDS */
+<<= primeSlave($activeSlave, _seed)>>
 
 <<if ($partner == "rivalry")>>
 	<<set _partnerSlave = getSlave($activeSlave.rivalryTarget)>>
@@ -363,165 +46,8 @@
 		<<goto "Main">>
 	<</if>>
 
-	Meanwhile,
-	<<if $activeSlave.rivalry >= 3>>
-		_partnerSlave.slaveName, whom $he hates,
-	<<elseif $activeSlave.rivalry >= 2>>
-		$his rival _partnerSlave.slaveName
-	<<else>>
-		_partnerSlave.slaveName, whom $he dislikes,
-	<</if>>
-
-	<<switch _partnerSlave.assignment>>
-	<<case "be your agent">>
-		is shaping society in _his2 assigned arcology.
-	<<case "live with your agent">>
-		is helping _his2 lover shape society in _his2 assigned arcology.
-	<<case "stay confined">>
-		is confined, but you have a fine view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feed from _his2 cell.
-	<<case "work in the brothel">>
-		is working in the brothel, and is
-		<<if _seed > 80>>
-		riding a customer's dick.
-		<<elseif _seed > 60>>
-		sucking a customer's cock.
-		<<elseif _seed > 40>>
-		pleasuring a customer's cunt.
-		<<elseif _seed > 20>>
-		getting pounded by a woman wearing a strap-on.
-		<<else>>
-		being held down and buttfucked by a customer.
-		<</if>>
-		You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds.
-	<<case "serve the public">>
-		is serving the public, and is
-		<<if _seed > 80>>
-		riding a citizen's dick.
-		<<elseif _seed > 60>>
-		sucking a citizen's cock.
-		<<elseif _seed > 40>>
-		pleasuring a citizen's cunt.
-		<<elseif _seed > 20>>
-		getting pounded by a citizen wearing a strap-on.
-		<<else>>
-		being held down and buttfucked by a citizen.
-		<</if>>
-		You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds.
-	<<case "work in the dairy">>
-		<<if ($dairyRestraintsSetting > 1)>>
-		is strapped to a milking machine in $dairyName.
-		<<elseif (_partnerSlave.lactation == 0) && (_partnerSlave.balls > 0)>>
-		is working in $dairyName, and is having _his2 cock milked. As you watch, _his2 balls tighten as the phallus up _his2 butt brings _him2 closer to a copious ejaculation.
-		<<elseif _seed > 50>>
-		is working in $dairyName, having _his2 tits milked.
-		<<else>>
-		is working in $dairyName, massaging _his2 sore tits.
-		<</if>>
-		You have a good view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds.
-	<<case "serve in the club">>
-		is working on the club,
-		<<if _seed > 50>>
-		displaying _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest.
-		<<else>>
-		or rather just off it, having taken a prominent citizen back to a discreet room <<if $seeRace == 1>> so he can use _his2 _partnerSlave.race <</if>>body.
-		<</if>>
-	<<case "work as a servant">>
-		<<if _seed > 50>>
-		was scrubbing the penthouse floor, until another slave requested oral service.
-		<<else>>
-		is scrubbing the penthouse floor.
-		<</if>>
-	<<case "guard you">>
-		is standing discreetly behind your left shoulder, watching for threats. _he2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip.
-	<<case "be the Madam">>
-		is managing the brothel: _he2 is making sure all the customers are satisfied and all the whores are working hard.
-	<<case "be the Stewardess">>
-		is managing the house servants: _he2 overseeing the laboring house slaves and punishing any that step out of line.
-	<<case "be the Schoolteacher">>
-		is teaching classes: _he2 is leading the slave students in rote recitation.
-	<<case "be the Attendant">>
-		is seeing to girls in the spa: _he2 is gently soaping an exhausted slave.
-	<<case "be the DJ">>
-		is taking the lead on the club: _he2 greets new arrivals, flirts with them prettily, and subtly guides them towards choice sluts.
-	<<case "be the Milkmaid">>
-		is working in the dairy, looking after your stock.
-	<<default>>
-
-	<<if (_partnerSlave.heels == 1) && !["flats", "none"].includes(_partnerSlave.shoes)>>
-		walks past your desk with the tiny swaying steps _he2 must take in order to walk on _his2 surgically altered legs. _he2 is on _his2 way to
-	<<elseif ["heels", "pumps"].includes(_partnerSlave.shoes)>>
-		walks past your desk with the swaying steps _he2 must take in _his2 high heels. _he2 is on _his2 way to
-	<<elseif (_partnerSlave.shoes == "boots")>>
-		walks past your desk with the confident gait encouraged by _his2 high heeled boots. _he2 is on _his2 way to
-	<<elseif (_partnerSlave.shoes == "extreme heels")>>
-		walks past your desk with the tiny swaying steps _he2 must take in _his2 ridiculous heels. _he2 is on _his2 way to
-	<<elseif (_partnerSlave.heels == 1)>>
-		crawls past your desk on all fours, since _he2 has not been allowed the heels _he2 needs to walk upright. _he2 is on _his2 way to
-	<<elseif (_partnerSlave.amp == 1)>>
-		is carried past your desk by one of your other slaves. _he2 is on _his2 way to
-	<<elseif !canWalk(_partnerSlave)>>
-		is helped past your desk by one of your other slaves. _he2 is on _his2 way to
-	<<else>>
-		walks past your desk on _his2 way to
-	<</if>>
-
-	<<switch _partnerSlave.assignment>>
-	<<case "whore">>
-		<<if _seed > 50>>
-		whore;
-		<<else>>
-		sell _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body;
-		<</if>>
-	<<case "serve the public">>
-		<<if _seed > 50>>
-		serve the public;
-		<<else>>
-		be a public slut;
-		<</if>>
-	<<case "rest">>
-		<<if _seed > 50>>
-		eat;
-		<<else>>
-		bed;
-		<</if>>
-	<<case "get milked">>
-		<<if _seed > 50>>
-		milk _his2 overfull <<if $seeRace == 1>>_partnerSlave.race <</if>>tits;
-		<<else>>
-		drain _his2 milky <<if $seeRace == 1>>_partnerSlave.race <</if>>udders;
-		<</if>>
-	<<case "please you">>
-		wait next to you and wait for you to fuck _him2;
-	<<case "be a subordinate slave">>
-		service your other slaves;
-	<<case "be a servant">>
-		clean up after your other slaves;
-	<<case "be your Head Girl">>
-		oversee your other slaves;
-	<<case "recruit girls">>
-		use _his2 connections to recruit slaves;
-	<<default>>
-		_partnerSlave.assignment;
-	<</switch>>
+	<<= rivalSlave($activeSlave, _seed)>>
 
-	<<if (_partnerSlave.amp == 1)>>
-		_he2 is carried by on _his2 way to _his2 next task.
-	<<elseif _partnerSlave.fetish == "mindbroken">>
-		_he2 does not even glance at you as _he2 goes mindlessly to _his2 next task.
-	<<elseif _partnerSlave.devotion < -50>>
-		_he2 directs a look of pure hatred at where you sit as _he2 passes.
-	<<elseif _partnerSlave.devotion < -20>>
-		_he2 cannot keep the loathing from _his2 face as _he2 passes.
-	<<elseif _partnerSlave.devotion <= 20>>
-		_he2 passes quickly, obviously hoping to avoid you.
-	<<elseif _partnerSlave.devotion <= 50>>
-		_he2 rushes by, hurrying to _his2 next task.
-	<<else>>
-		as _he2 passes _he2 gives you a look of adoration.
-	<</if>>
-
-	<</switch>>
-	<<set $target = "FRival", _partnerSlave = null>>
 <<elseif ($partner == "relationship") && ($activeSlave.relationship >= 3) && ($activeSlave.releaseRules !== "restrictive") && ($activeSlave.releaseRules !== "masturbation")>>
 	<<set _partnerSlave = getSlave($activeSlave.relationshipTarget)>>
 	<<setLocalPronouns _partnerSlave 2>>
@@ -946,7 +472,7 @@
 		is scrubbing the penthouse floor.
 		<</if>>
 	<<case "guard you">>
-		is standing discreetly behind your left shoulder, watching for threats. _he2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip.
+		is standing discreetly behind your left shoulder, watching for threats. _He2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip.
 	<<case "be the Madam">>
 		is managing the brothel: _he2 is making sure all the customers are satisfied and all the whores are working hard.
 	<<case "be the Attendant">>
@@ -1037,7 +563,7 @@
 
 	<</switch>>
 	<<set $target = "FRelation", _partnerSlave = null>>
-<<elseif (_seed > 80) && ($activeSlave.fuckdoll == 0)>>
+<<elseif (_flag > 80) && ($activeSlave.fuckdoll == 0)>>
 	<<BoobsDescription>>
 	<<switch $activeSlave.clothes>>
 	<<case "uncomfortable straps">>
@@ -1269,7 +795,7 @@
 		<</if>>
 	<</switch>>
 	<<set $target = "FBoobs">>
-<<elseif (_seed > 60)>>
+<<elseif (_flag > 60)>>
 	<<ButtDescription>>
 	<<switch $activeSlave.clothes>>
 	<<case "a Fuckdoll suit">>
@@ -1472,7 +998,7 @@
 		<</if>>
 	<</switch>>
 	<<set $target = "FButt">>
-<<elseif (_seed > 40)>>
+<<elseif (_flag > 40)>>
 	<<if $activeSlave.inflation == 0>>
 	<<if $activeSlave.bellyImplant < 2000>>
 	<<if $activeSlave.belly >= 600000>>
@@ -4401,7 +3927,7 @@
 	<</if>>
 	<</if>>
 	<<set $target = "FVagina">>
-<<elseif (_seed > 20)>>
+<<elseif (_flag > 20)>>
 	<<AnusDescription>>
 	<<switch $activeSlave.clothes>>
 	<<case "a Fuckdoll suit">>
@@ -4576,7 +4102,7 @@
 		<</if>>
 	<</switch>>
 	<<set $target = "FAnus">>
-<<elseif (_seed > 0)>>
+<<elseif (_flag > 0)>>
 	<<faceDescription>>
 	<<mouthDescription>>
 	<<switch $activeSlave.collar>>
@@ -4631,10 +4157,10 @@
 <</if>>
 
 <<if $activeSlave.fuckdoll == 0>>
-	<<if (_seed <= 80) && (_seed > 40) && ($activeSlave.vaginalAccessory == "chastity belt")>>
+	<<if (_flag <= 80) && (_flag > 40) && ($activeSlave.vaginalAccessory == "chastity belt")>>
 		//If you wish to have vanilla intercourse with $him you must order $him to remove $his chastity belt.//
-	<<elseif _seed > 100>>
-		<<if $familyTesting == 1 && _seed == 110>>
+	<<elseif _flag > 100>>
+		<<if $familyTesting == 1 && _flag == 110>>
 		<<else>>
 		<span id="walkpast"><<link "Summon them both">><<replace "#walk">><<include $target>><</replace>><</link>></span>
 		<</if>>