Skip to content
Snippets Groups Projects
Commit 8810328a authored by Pregmodder's avatar Pregmodder
Browse files

Bug fixes.

parent ead224e2
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,9 @@ Mousetrap.bind("v", function () { ...@@ -137,6 +137,9 @@ Mousetrap.bind("v", function () {
Mousetrap.bind("r", function () { Mousetrap.bind("r", function () {
$("#RAButton a.macro-link").trigger("click"); $("#RAButton a.macro-link").trigger("click");
}); });
Mousetrap.bind("x", function () {
$("#story-caption #managePerson a.macro-link").trigger("click");
});
/** /**
* BoobGenerator namespace. * BoobGenerator namespace.
......
...@@ -222,9 +222,9 @@ Throughout the week, you keep $activeSlave.slaveName's dick intimate with $slave ...@@ -222,9 +222,9 @@ Throughout the week, you keep $activeSlave.slaveName's dick intimate with $slave
/% pregnancy test? %/ /% pregnancy test? %/
<<if canImpreg($slaverapistx, $activeSlave)>> <<if canImpreg($slaverapistx, $activeSlave)>>
<<if (Random(1,100) >= 75)>> <<if random(1,100) >= 75>>
<<set $slaverapistx.preg = 1>> <<set $slaverapistx.preg = 1>>
<<set $slaverapistx.pregSource = $activeSlave.ID>> <<set $slaverapistx.pregSource = $activeSlave.ID>>
<</if>> <</if>>
<</if>> <</if>>
......
...@@ -260,9 +260,9 @@ Throughout the week, you keep $activeSlave.slaveName's pussy intimate with $slav ...@@ -260,9 +260,9 @@ Throughout the week, you keep $activeSlave.slaveName's pussy intimate with $slav
<<if canImpreg($activeSlave, $slaverapistx)>> <<if canImpreg($activeSlave, $slaverapistx)>>
<<if (Random(1,100) >= 75)>> <<if random(1,100) >= 75>>
<<set $activeSlave.preg = 1>> <<set $activeSlave.preg = 1>>
<<set $activeSlave.pregSource = $slaverapistx.ID>> <<set $activeSlave.pregSource = $slaverapistx.ID>>
<</if>> <</if>>
<</if>> <</if>>
......
...@@ -805,7 +805,7 @@ At your <<if canSee($activeSlave)>>nod<<else>>acknowledgement<</if>>, she ...@@ -805,7 +805,7 @@ At your <<if canSee($activeSlave)>>nod<<else>>acknowledgement<</if>>, she
<<if SlaveStatsChecker.checkForLisp($activeSlave)>> <<if SlaveStatsChecker.checkForLisp($activeSlave)>>
"<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, may I have my nippleth pierthed? It'th thilly and girly, but I gueth - I gueth I'd like thomething thilly and girly. Pleathe?" "<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, may I have my nippleth pierthed? It'th thilly and girly, but I gueth - I gueth I'd like thomething thilly and girly. Pleathe?"
<<else>> <<else>>
"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, may I have my nipples pierced? It'th silly and girly, but I guess - I guess I'd like something silly and girly. Please?" "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, may I have my nipples pierced? It's silly and girly, but I guess - I guess I'd like something silly and girly. Please?"
<</if>> <</if>>
She blushes prettily and <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully. She blushes prettily and <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully.
<</if>> <</if>>
......
...@@ -354,7 +354,7 @@ ...@@ -354,7 +354,7 @@
<</if>> <</if>>
<<case "penis enhancement">> <<case "penis enhancement">>
<<if ($activeSlave.dick > 0)>> <<if ($slaves[$i].dick > 0)>>
<<if (random(1,100) > (40-($injectionUpgrade*10)+($slaves[$i].dick*5))) && ($slaves[$i].dick < 10)>> <<if (random(1,100) > (40-($injectionUpgrade*10)+($slaves[$i].dick*5))) && ($slaves[$i].dick < 10)>>
@@.lime;$possessiveCap cock grows painfully,@@ becoming both longer and girthier. @@.lime;$possessiveCap cock grows painfully,@@ becoming both longer and girthier.
<<set $slaves[$i].dick += 1>> <<set $slaves[$i].dick += 1>>
...@@ -379,7 +379,7 @@ ...@@ -379,7 +379,7 @@
<</if>> <</if>>
<<case "hyper penis enhancement">> <<case "hyper penis enhancement">>
<<if ($activeSlave.dick > 0)>> <<if ($slaves[$i].dick > 0)>>
$pronounCap receives @@.lime;direct injections of hyper growth hormones, right into $possessive dick.@@ $pronounCap receives @@.lime;direct injections of hyper growth hormones, right into $possessive dick.@@
<<set $slaves[$i].chem += 2>> <<set $slaves[$i].chem += 2>>
<<if ($slaves[$i].dick >= 30)>> <<if ($slaves[$i].dick >= 30)>>
......
...@@ -86,6 +86,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is ...@@ -86,6 +86,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is
<<set $shelterSlave.health = random(-80,-60)>> <<set $shelterSlave.health = random(-80,-60)>>
<<set $shelterSlave.behavioralFlaw = "hates men">> <<set $shelterSlave.behavioralFlaw = "hates men">>
<<set $shelterSlave.sexualFlaw = "hates oral">> <<set $shelterSlave.sexualFlaw = "hates oral">>
<<set $shelterSlave.canRecruit = 0>>
<<elseif $origin == "You got her at the Slave Shelter. Her previous owner gelded her and used her for anal abuse.">> <<elseif $origin == "You got her at the Slave Shelter. Her previous owner gelded her and used her for anal abuse.">>
<<set $activeSlaveOneTimeMinAge = 20>> <<set $activeSlaveOneTimeMinAge = 20>>
<<set $activeSlaveOneTimeMaxAge = 42>> <<set $activeSlaveOneTimeMaxAge = 42>>
......
...@@ -537,7 +537,7 @@ _Pass $nextLink ...@@ -537,7 +537,7 @@ _Pass $nextLink
<<elseif _Pass == "Manage Arcology">> <<elseif _Pass == "Manage Arcology">>
<br><br> <br><br>
<br><span id="managePenthouse"><<link "Manage Penthouse">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Penthouse">><</link>></span> @@.cyan;[P]@@ <br><span id="managePenthouse"><<link "Manage Penthouse">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Penthouse">><</link>></span> @@.cyan;[P]@@
<br><span id="managePerson"><<link "Manage Personal Affairs">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Personal Affairs">><</link>></span> @@.cyan;[A]@@ <br><span id="managePerson"><<link "Manage Personal Affairs">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Personal Affairs">><</link>></span> @@.cyan;[X]@@
<br><span id="policyButton"><<link [[Policies]]>><</link>></span> @@.cyan;[Y]@@ <br><span id="policyButton"><<link [[Policies]]>><</link>></span> @@.cyan;[Y]@@
<br><<if $FSAnnounced>><span id="FSButton"><<link [[Future Societies|Future Society]]>><</link>></span> @@.cyan;[F]@@<</if>> <br><<if $FSAnnounced>><span id="FSButton"><<link [[Future Societies|Future Society]]>><</link>></span> @@.cyan;[F]@@<</if>>
<br><span id="PAOButton"><<link [[Personal Assistant|Personal assistant options]]>><</link>></span> @@.cyan;[T]@@ <br><span id="PAOButton"><<link [[Personal Assistant|Personal assistant options]]>><</link>></span> @@.cyan;[T]@@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment