IdleScape Idle Notification

Plays a sound when you're idling in Idlescape

  1. // ==UserScript==
  2. // @name IdleScape Idle Notification
  3. // @namespace D4IS
  4. // @version 0.2
  5. // @description Plays a sound when you're idling in Idlescape
  6. // @author D4M4G3X
  7. // @match http*://*idlescape.com/game
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var checkExist = setInterval(function() {
  15. var status = document.getElementsByClassName("status-action")[0].innerHTML
  16. if (~status.toLowerCase().indexOf('idling')) {
  17. var audio = new Audio('https://soundbible.com//mp3/dixie-horn_daniel-simion.mp3'); // Edit sound here
  18. audio.play();
  19. }
  20. }, 10000);
  21. })();