Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
This fix is for the end_play button that sometimes has money or energy required to actually click the button.
else if (proceedType === "end_play") { var energyCurrent = getHero().infos.energy_quest; var moneyCurrent = getHero().infos.soft_currency; if(proceedCostEnergy <= energyCurrent) { // We have energy. console.log("Spending "+proceedCostEnergy+" Energy to proceed."); } else { console.log("Quest requires "+proceedCostEnergy+" Energy to proceed."); sessionStorage.questRequirement = "*"+proceedCostEnergy; return; } if(proceedCostMoney <= moneyCurrent) { // We have money. console.log("Spending "+proceedCostMoney+" Money to proceed."); } else { console.log("Spending "+proceedCostEnergy+" Money to proceed."); sessionStorage.questRequirement = "$"+proceedCostMoney; return; } console.log("Reached end of current play. Proceeding to next play."); sessionStorage.autoLoop = "false"; proceedButtonMatch.click(); }
what is this end play button?
Re: @Cronosus:
It's part of auto questing. I cannot remember if it the one which finishes the current quest or the one that finishes the quest area as a whole.
Implemented in v3.11.
Thanx.