| @@ -283,18 +283,18 @@ var macro = | |||||
| "femaleParts": true, | "femaleParts": true, | ||||
| "fillCum": function(self) { | "fillCum": function(self) { | ||||
| self.cumStorage.amount += self.cumScale * self.ballVolume / 120; | |||||
| self.cumStorage.amount += self.cumScale * self.ballVolume / 1200; | |||||
| if (self.cumStorage.amount > self.cumStorage.limit) | if (self.cumStorage.amount > self.cumStorage.limit) | ||||
| self.arouse(10 * (self.cumStorage.amount / self.cumStorage.limit - 1)); | |||||
| setTimeout(function () { self.fillCum(self) }, 1000); | |||||
| self.arouse(1 * (self.cumStorage.amount / self.cumStorage.limit - 1)); | |||||
| setTimeout(function () { self.fillCum(self) }, 100); | |||||
| update(); | update(); | ||||
| }, | }, | ||||
| "fillFemcum": function(self) { | "fillFemcum": function(self) { | ||||
| self.femcumStorage.amount += self.femcumScale * self.vaginaVolume / 120; | |||||
| self.femcumStorage.amount += self.femcumScale * self.vaginaVolume / 1200; | |||||
| if (self.femcumStorage.amount > self.femcumStorage.limit) | if (self.femcumStorage.amount > self.femcumStorage.limit) | ||||
| self.arouse(10 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); | |||||
| setTimeout(function () { self.fillFemcum(self) }, 1000); | |||||
| self.arouse(1 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); | |||||
| setTimeout(function () { self.fillFemcum(self) }, 100); | |||||
| update(); | update(); | ||||
| }, | }, | ||||
| @@ -635,6 +635,9 @@ function toggle_arousal() | |||||
| document.getElementById("edge").style.display = "none"; | document.getElementById("edge").style.display = "none"; | ||||
| } | } | ||||
| macro.orgasm = false; | |||||
| macro.afterglow = false; | |||||
| } | } | ||||
| function initVictims() | function initVictims() | ||||