Jump to content

Community Scripts [Links in OP]


DvDivXXX

Recommended Posts

Le 19/07/2025 à 15:42, Ich42 a dit :

And I wanted to ask if there is anything regarding the Love Labyrinth? Also regarding the possible World Boss Tournament feature which is being tested on the test serverSince they are apparently supposed to use the Love Labyrinth system.

 

It would also be enough for me if you say it's too much and you don't have the time for it at the moment or, for example, you don't find my ideas useful.

Hey, just to tell you that I was very busy these last weeks and I'm leaving in vacation soon. I don't forget your ideas about features in love labyrinth but it will have to wait until I go back. And of course every feature in love labyrinth will be applied for world boss event. 😊

Link to comment
Share on other sites

@infarctus First of all thX for the work, nice addition.
Although I need to get used to the more of numbers, feels a bit overwhelming at first.

It seems as the script has a fixed pattern for the "Top" categories, but those don't match with every task.
The rankings are not always the same.

image.thumb.png.7da07e546a61849146c6597147f8d191.png

The calculation for top positions may be correct, but they don't line up with the brackets.
So the info for top 10 and top 25 aren't really helpfull, in this case.

---

And somehow the script vanishes after reloading the page (f5), I have to go to mainpage and then again to contests to get it back.

Edited by Der DinX
Link to comment
Share on other sites

1 hour ago, Der DinX said:

@infarctus First of all thX for the work, nice addition.
Although I need to get used to the more of numbers, feels a bit overwhelming at first.

It seems as the script has a fixed pattern for the "Top" categories, but those don't match with every task.
The rankings are not always the same.

image.thumb.png.7da07e546a61849146c6597147f8d191.png

The calculation for top positions may be correct, but they don't line up with the brackets.
So the info for top 10 and top 25 aren't really helpfull, in this case.

---

And somehow the script vanishes after reloading the page (f5), I have to go to mainpage and then again to contests to get it back.

@Der DinX the rankings differ when it's an event contest, I'll have to add something to change that.
The script shouldn't disappear when reloading the page, do you use Tampermonkey or violentmonkey ? I'll still try to implement a fix for that ASAP but I had people test and it should work perfectly on page reload

Link to comment
Share on other sites

@infarctus
Thansks for the script! And endless gratitude for rewards claiming "2-factor authentication" 😁
In Chrome&Tampermonkey It does weird difference calculations when contenders hit 1 mil points 
image.png.aab0b5db9af5eefce072ce829e2b8c36.png

image.png.d72633572586595b07fd9c63676d5f07.png

Lools like it drops another 3 zeros from score before substraction - and 1 000 000 becomes just 1 

Edited by HentaiGuru
Link to comment
Share on other sites

1 hour ago, HentaiGuru said:

@infarctus
Thansks for the script! And endless gratitude for rewards claiming "2-factor authentication" 😁
In Chrome&Tampermonkey It does weird difference calculations when contenders hit 1 mil points 
image.png.aab0b5db9af5eefce072ce829e2b8c36.png

image.png.d72633572586595b07fd9c63676d5f07.png

Lools like it drops another 3 zeros from score before substraction - and 1 000 000 becomes just 1 

@HentaiGuru your points seem weird, there's supposed to be "," instead of spaces for big numbers, that's why it's bugging. I can make a fix but there's another factor here to take into account.

Stil pushed a fix so should be good :D

Edited by infarctus
wrote "rewards" instead of "points"
  • Thanks 1
Link to comment
Share on other sites

39 minutes ago, infarctus said:

@HentaiGuru your points seem weird, there's supposed to be "," instead of spaces for big numbers, that's why it's bugging. I can make a fix but there's another factor here to take into account.

Stil pushed a fix so should be good :D

Ah - that it. This is numeric settings for russian language - we using comma as decimal divider - not for thousands 
With fix situation changed - but not for good - so may be it is safer to reroll that fix
Also - you can use French\German in-game language settings for tests  - seems they also dont put commas between thousands

image.png.beea8d41cf2c6456098289a6ec815ebd.png

Edited by HentaiGuru
  • Sad 1
Link to comment
Share on other sites

16 minutes ago, HentaiGuru said:

Ah - that it. This is numeric settings for russian language - we using comma as decimal divider - not for thousands 
With fix situation changed - but not for good - so may be it is safer to reroll that fix
Also - you can use French\German in-game language settings for tests  - seems they also dont put commas between thousands

image.png.beea8d41cf2c6456098289a6ec815ebd.png

It was better, I'm just stupid and I only implemented at 1 place, where it was needed 4times...

Should be good now tho (I hope)

  • Thanks 1
Link to comment
Share on other sites

On 7/29/2025 at 10:20 PM, Tom208 said:

Hey, just to tell you that I was very busy these last weeks and I'm leaving in vacation soon. I don't forget your ideas about features in love labyrinth but it will have to wait until I go back. And of course every feature in love labyrinth will be applied for world boss event. 😊

Okay, I didn't know that. But it's good to hear that you want to implement my suggestions (soon). For WBT, would it be possible to add another page or pop-up that shows the squad the opponents girls are referring to? 

 

 

On 7/19/2025 at 4:19 PM, Methos2 said:

I wrote a simple script to change the settings and other customization. You can pull the setting names from the HH++ and other scripts.

  Reveal hidden contents

// ==UserScript==
// @name         Methos Tweaks
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Methos
// @match        https://*.hentaiheroes.com/*
// @match        https://nutaku.haremheroes.com/*
// @match        https://*.gayharem.com/*
// @match        https://*.comixharem.com/*
// @match        https://*.pornstarharem.com/*
// @match        http://test.hentaiheroes.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==
(() => {
    const {$, localStorage, location} = window
    const currentPage = location.pathname

    if (!$) {
        console.log('STYLE TWEAKS WARNING: No jQuery found. Probably an error page. Ending the script here');
        return;
    }

    const lang = $('html')[0].lang.substring(0,2)
    let locale = 'fr'
    if (lang === 'en') {
        locale = 'en'
    }

    /* how to change HH++ BDSM setting value */
    /*
    const config = localStorage.getItem("HHPlusPlusConfig");
    const parsedObj = JSON.parse(config);
    parsedObj.core_autoRefresh = false;
    const newObj = JSON.stringify(parsedObj);
    localStorage.setItem("HHPlusPlusConfig", newObj);
    */
    const config = localStorage.getItem("HHPlusPlusConfig");
    if (config) {
        const parsedObj = JSON.parse(config);
        if (parsedObj) {
            parsedObj.st_removeSlotBorder = false;
            parsedObj.zoo_MarketTweaks = false;
...

            parsedObj.LeagueTracker_boosterTimer_sound = true;
        }
        const newObj = JSON.stringify(parsedObj);
        localStorage.setItem("HHPlusPlusConfig", newObj);
    }
    else {
        const jsonText = `{
            "st_removeSlotBorder": false,
            "zoo_MarketTweaks": false,
...
            "LeagueTracker_boosterTimer_sound": true
        }`;
        const parsedObj = JSON.parse(jsonText);
        const newObj = JSON.stringify(parsedObj);
        localStorage.setItem("HHPlusPlusConfig", newObj);
    }

    // HH++ OCD settings
    localStorage.setItem("HHS.hideClaimAllButtons", true);
    localStorage.setItem("HHS.hideLoveRaids", true);
...

})();

 

I have the following problem when I use the script without making any changes. Can you help me here? I don't understand why there should be an error. 

01.png.1cefbb4e4babfaedfbcfc657b0b00dc1.png

 

 

Link to comment
Share on other sites

2 hours ago, Ich42 said:

I have the following problem when I use the script without making any changes. Can you help me here? I don't understand why there should be an error. 

As @mdnoria explained, the ... are the places where you need to make changes. My script is customized to my preferences which have almost all of OCD functions enabled and BSDM disabled. The only function I turned off on OCD is champion because I got to use to the other numbering system. It was expected for my posted script to be modified to suit one's needs. You don't need to be a Javascript programmer to modify it as I am not one neither. Just follow the syntax around the ... areas to add/remove settings. Some tinkering is required. That's why I didn't give detail instructions on original post. I figured those who can't read js would just ignore the post.

Right click on the setting where you want to obtain the setting name, select Inspect. Setting name will be shown on the bottom. Add the settings to BDSM and OCD sections on the script as indicated by its comments. You need to do it twice for each BDSM setting.

image.thumb.png.88240be6d7ab99019a3e40e223ff012a.png

image.png.a9f3ec0770a2da4ea88cca4e2651dc13.png

Link to comment
Share on other sites

15 hours ago, mdnoria said:

@Ich42 remove the `...`. Those are things Methos removed and replaced with it to explain you can add other things there, but it's not valid js (or comment it with `//` before it).

 

13 hours ago, Methos2 said:

As @mdnoria explained, the ... are the places where you need to make changes. My script is customized to my preferences which have almost all of OCD functions enabled and BSDM disabled. The only function I turned off on OCD is champion because I got to use to the other numbering system. It was expected for my posted script to be modified to suit one's needs. You don't need to be a Javascript programmer to modify it as I am not one neither. Just follow the syntax around the ... areas to add/remove settings. Some tinkering is required. That's why I didn't give detail instructions on original post. I figured those who can't read js would just ignore the post.

Right click on the setting where you want to obtain the setting name, select Inspect. Setting name will be shown on the bottom. Add the settings to BDSM and OCD sections on the script as indicated by its comments. You need to do it twice for each BDSM setting.

image.thumb.png.88240be6d7ab99019a3e40e223ff012a.png

image.png.a9f3ec0770a2da4ea88cca4e2651dc13.pngOkay, thOkay, thank you for the explanation. I will try to use your tips and the knowledge I gained at school (I learned Java over a decade ago).ank you for the explanation. I will try to use your tips and the knowledge I gained at school (I learned Java over a decade ago).

Okay, thank you for the explanation. I will try to use your tips and the knowledge I gained at school (I learned Java over a decade ago).

Link to comment
Share on other sites

Is there a possibility to hide\lock PoG 230\670\1280\2050\2850 milestones from immediate claiming with some script - like it done for ClaimAll button in many places or 2-click unlock in contest rewards? MyP orbs now - or chance for skin later - you try to save them - then click them - then FUUUUUU...

 

Link to comment
Share on other sites

Thanks for Full Max in the Harem++, but it works not fully correct.

It says that it need 17550 Aff to fully upgrade a girl

1.jpg.4b9f1d7453c04e488c5504b3950384d2.jpg

But when you try to Full Max

2.jpg.eafbf4c04147e340edc889be513dac9e.jpg

It want to put 17565 (and waste 20)

 

And after upgrade it don't show affection scenes. Maybe some button choise - go to it or close tab?

Edited by Master-17
Link to comment
Share on other sites

On 8/7/2025 at 3:06 PM, Master-17 said:

Thanks for Full Max in the Harem++, but it works not fully correct.

It says that it need 17550 Aff to fully upgrade a girl

But when you try to Full Max

It want to put 17565 (and waste 20)

As i see it
Maxing stats works not from script - it is in-game mechanic (even w\o tampermonkey you will have 1-grade\max-grade buttons on haremette page), and it (almost) never picks exact numbers  - not in leveling not in affection - it starts from maxing highest gifts\books you obtain (̶e̶x̶c̶l̶u̶d̶i̶n̶g̶ ̶r̶e̶d̶)̶, then drop some less valuable to cross the cap - with some loss. And it seems you dont have good combo for needed points
image.png.7bd070a037b2b12cbaf0b16fd3632f65.png
And about not playing scenes - this is quite opposite - when you maxing with script (or not) you just filling numbers to brim - and even with internal processing it not starts scene mechanics - enjoy manually :D

 

UPD: 08/13/2025 KK decided to include mythic stuff in their maxing mechanics

 

Edited by HentaiGuru
Added UPD:
  • Like 1
Link to comment
Share on other sites

11 hours ago, Master-17 said:

Thanks for Full Max in the Harem++, but it works not fully correct.

It says that it need 17550 Aff to fully upgrade a girl

1.jpg.4b9f1d7453c04e488c5504b3950384d2.jpg

But when you try to Full Max

2.jpg.eafbf4c04147e340edc889be513dac9e.jpg

It want to put 17565 (and waste 20)

 

And after upgrade it don't show affection scenes. Maybe some button choise - go to it or close tab?

Hello, I am the one that developped this update, you can access the scenes by closing the menu on the right and clicking on a star for the girl.

image.png.406576ccb33d8f127ceb3dfc6190b1d1.png

I don't know how the game chooses the items or how it evaluates the excess but this is mostly the game's doing not the script

 

10 hours ago, HentaiGuru said:

As i see it
Maxing stats works not from script - it is in-game mechanic (even w\o tampermonkey you will have 1-grade\max-grade buttons on haremette page), and it (almost) never picks exact numbers  - not in leveling not in affection - it starts from maxing highest gifts\books you obtain (excluding red), then drop some less valuable to cross the cap - with some loss. And it seems you dont have good combo for needed points
image.png.7bd070a037b2b12cbaf0b16fd3632f65.png
And about not playing scenes - this is quite opposite - when you maxing with script (or not) you just filling numbers to brim - and even with internal processing it not starts scene mechanics - enjoy manually :D

Quote

and even with internal processing it not starts scene mechanics

technicly when you fully max the game does redirect you to the scene view, I just felt like it wasn't that useful to implement that for the trouble vs usefullness

Edited by infarctus
added image
Link to comment
Share on other sites

11 hours ago, HentaiGuru said:

Maxing stats works not from script - it is in-game mechanic (even w\o tampermonkey you will have 1-grade\max-grade buttons on haremette page), and it (almost) never picks exact numbers  - not in leveling not in affection - it starts from maxing highest gifts\books you obtain (excluding red), then drop some less valuable to cross the cap - with some loss. And it seems you dont have good combo for needed points

14x L_Bracelet (1200*14=16800) + 1x L_Flovers (700) + 1x R_Chocolates (60) = 17560 > 17550 needed aff points => It doesn't need a C_Lingerie (25) at all

11 hours ago, HentaiGuru said:

when you maxing with script (or not) you just filling numbers to brim - and even with internal processing it not starts scene mechanics - enjoy manually

Spoiler

1.jpg.37ba7440344dee55be684cb22bda9278.jpg

Pressed "Yes, pay with Ymens" - was immediately redirected to

2.jpg.374180b41fbcd1d58796a1caf637bd85.jpg

 

1 hour ago, infarctus said:

I don't know how the game chooses the items or how it evaluates the excess but this is mostly the game's doing not the script

Yes, oddly enough, but this problem appears even with the Full Upgrade from the original Harem. I don't know what they screwed up in KK

Spoiler

3.jpg.ff187739141625df3e3923bd9925cde9.jpg

P.S. It's strange - why both of Max Grade-up and Max Level-up lead to Max Level-up?

4.jpg.714852f10b6d42fd9c054494dbe87e81.jpg

 

Link to comment
Share on other sites

Why does the latest version of Harem++ by default offer to use mythic gifts to upgrade girls? Previously, only items up to legendary were offered, and it was convenient!

1.jpg.c443e6788859fc37c605e0052d7ff4e9.jpg

Ah, the comrades from KK decided to screw up again and rework the system... *facepalm*

Edited by Master-17
Link to comment
Share on other sites

I fail to see why not using the mythic books/gifts when maxing was a good thing, except for the level to 350 book which is still not used with this improvement. It all seems good to me to be needing less micromanagement.

Edited by mdnoria
Link to comment
Share on other sites

On 8/14/2025 at 11:17 PM, mdnoria said:

I fail to see why not using the mythic books/gifts when maxing was a good thing, except for the level to 350 book which is still not used with this improvement. It all seems good to me to be needing less micromanagement.

So as not to waste them on all sorts of little things like common, rare, epic and legendary girls, but to leave them for mythic ones, where such things are really needed.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...