Sleazy Fork is available in English.

Hentai Heroes Helper (auto collect and button press)

Add in the Hentai Heroes game.

Versione datata 27/11/2021. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name			Hentai Heroes Helper (auto collect and button press) 
// @description		Add in the Hentai Heroes game.
// @version			1.0.0
// @match			https://www.hentaiheroes.com/*
// @match			https://nutaku.haremheroes.com/*
// @match			https://eroges.hentaiheroes.com/*
// @match			https://thrix.hentaiheroes.com/*
// @match			https://www.gayharem.com/*
// @match			https://nutaku.gayharem.com/*
// @match			https://www.comixharem.com/*
// @match			https://nutaku.comixharem.com/*
// @match			https://*.hornyheroes.com/*
// @run-at			document-end
// @grant			none
// @license         MIT
// @author			Morry98
// @namespace https://greasyfork.org/users/807892
// ==/UserScript==

var tocollect=true,
    timeout=false,
    press=true;
setInterval(function(){
  $btns=$('#new-battle-skip-btn, .skip-button, .not-supported-browser .blue_button_L, .popup_buttons .blue_button_L,'+
          'button[rel="pop_auto_assign"]:not(:disabled), button[rel="pop_action"]:not(:disabled),'+
          'button[rel="pop_claim"]:not(:disabled)');
  if($btns.length && press){
    press=false;
    setTimeout(function(){
      $btns.trigger('click');
      press=true;
    }, 1500);
  }
 
  $btnPantheon=$('.pantheon-pre-battle-btn');
  if($btnPantheon.length)
    location.href=$btnPantheon.attr('href');
 
  if(tocollect){
    tocollect=false;
   
    is_cheat_click=function(e){
        return false;
    }
    $("div.girls_list>div[id_girl]>div[girl]:not(.not_owned)").each(function(){
      if(!$(this).find('.salary.loads').length)
        $(this).trigger( "click" );
    });
   
    clearTimeout(timeout);
    timeout=setTimeout(function(){
      tocollect=true;
    }, 2000);
  }
 
}, 300);