Kristovitch
Newbie
- Aug 9, 2022
- 30
- 11
- 131
I have probably just missed something, But I am unable to move along the line of girls. Can anyone help me?
can someone reinvite to the discord server?
Agreed. Was my favorite. Would love for someone to take the idea and make it great.I hope the game starts getting developed again . One the best porn managment sim games ive played. Has a lot of potential. This game was truly fresh. I hope someone picks up the development
agreed this was my favorite, the mod's kept it going for a bit, but now it's completely dead.I hope the game starts getting developed again . One the best porn managment sim games ive played. Has a lot of potential. This game was truly fresh. I hope someone picks up the development
const findMatch = () => {
const weight = {
Format: 0.3,
Body: 0.3,
Place: 0.5,
Outfit: 0.8,
};
const request = ["Outfit", "Place", "Format", "Body"].reduce(
(acc, name, index) => {
const selector = `body > app-root > app-shooting > div.wrapper > div.request > div.customer-request > div.requested.ng-star-inserted > div:nth-child(${index + 1}) > div.value`;
const element = document.querySelector(selector);
acc[name] = element ? element.textContent.trim() : null;
return acc;
},
{}
);
const cards = [...document.querySelector("body > app-root > app-shooting > div.wrapper > div.masonry > ngx-masonry").childNodes]
.slice(0, -1)
.filter((card) => !card.className?.includes("locked"))
.map((card) => {
const atributes = [
...card?.firstChild.childNodes[1].firstChild.childNodes,
].map((e) => [...e.childNodes].map((a) => a.textContent));
const result = atributes.reduce((acc, [key, value]) => {
if (key === "Body") {
acc[key] = value.split(",").map((v) => v.trim());
} else {
acc[key] = value;
}
return acc;
}, {});
return { ...result, card };
});
const sortedCards = cards.slice().sort((a, b) => {
const getTotal = (card) => {
let total = 0;
if (card.Outfit === request.Outfit) total += weight.Outfit;
if (card.Place === request.Place) total += weight.Place;
if (card.Format === request.Format) total += weight.Format;
for (const body in card.Body) {
if (body === request.Body) total += weight.Body;
}
return total;
};
return getTotal(b) - getTotal(a); // Descending order
});
return sortedCards[0].card;
};
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
let lastCalled = 0;
const cooldown = 2000;
document.addEventListener("keyup", async function (event) {
if (event.key === "f") {
const now = Date.now();
if (now - lastCalled >= cooldown) {
findMatch().click();
lastCalled = now;
}
}
if (event.key === "s") {
console.log("clicking");
document.querySelector("body > app-root > app-record > div > div.skip-button").childNodes[0].click();
}
if (event.key === "a") {
const now = Date.now();
if (now - lastCalled >= cooldown) {
while (Number(document.querySelector("body > app-root > app-shooting > div.wrapper > div.request > div.current-combo > div.combo-value").textContent.split("x")[1]) < 25) {
await sleep(1_000);
findMatch().click();
await sleep(1_000);
document.querySelector("body > app-root > app-shooting > div.wrapper > div.result.ng-star-inserted > div.actions > button:nth-child(2)").click();
}
lastCalled = now;
}
}
});
It wouldn't be impossible to make small changes to the game, however significant changes would require the source code (angular project). Mods are easy enough to make but require time and some effort.Is there anyway for this game to comeback, no other management game is as good
There is already a mod for angela white available.can someone make an Angela white and Adriana checkchik mods
Is there a limit on how many girls i can add at the same time bc non of the ones in the link show in gameThere is already a mod for angela white available.
Mega
I would recommend you check the games discord for all mods.
There's no limit, the ones in the link you need to install by adding them into the mods folder and then adding their names in the bootstrap fileIs there a limit on how many girls i can add at the same time bc non of the ones in the link show in game
help pls i don't know what i did wrong until yhivi they show up but from the start of angela white they don't show upi did that but they don't show up
View attachment 5320801