NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name erevolution tools // @namespace https://www.erevollution.com // @description erevolution prof // @include https://www.erevollution.com/* // @exclude https://www.erevollution.com/en/special-items // ==/UserScript== //auto eat var a = $('#energyTime').data('original-title'); var m = parseInt( a[25]); var s = parseInt( a[27]+a[28]); var rec=10; var k=(m*60+ s) * 100; var cas=k*rec; var htmlStringdiv= "<li class='active'><span><p style='text-align: center;'> <button onclick='myFunction()'>SCRIPPT</button></p> </span></li>"; $(htmlStringdiv).insertAfter(".nav-header-first"); function myFunction() { rec = prompt("Please enter your how much food you want to recover at once", "10"); cas=k*rec; console.log(cas); setInterval(myMethod, cas); } setInterval(myMethod, cas); function myMethod( ) { document.getElementById("energyButton").click(); }