AutoBerryFeeder

Auto clicks interaction buttons for GPX.plus berry feeder

  1. // ==UserScript==
  2. // @name AutoBerryFeeder
  3. // @author QtheConqueror
  4. // @namespace Automation
  5. // @description Auto clicks interaction buttons for GPX.plus berry feeder
  6. // @version 1.1
  7. // @include http://gpx.plus/info/*/feeder
  8. // @include https://gpx.plus/info/*/feeder
  9. // @grant none
  10. // @license GPL-3.0-or-later
  11. // ==/UserScript==
  12.  
  13. var autoClickInterval = setInterval(function () {
  14. document.querySelector('.infoInteractButton:not(.vitamin):not([name="drink"])').click();
  15. }, 20)