🏠 Home 

Jstris Custom SFX

try to take over the world!


Installer dette script?
  1. // ==UserScript==
  2. // @name Jstris Custom SFX
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://*.jstris.jezevec10.com/*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. window.addEventListener('load', function(){
  13. //Jstris SFX
  14. CustomSFXset.prototype = new BaseSFXset;
  15. loadSFX(new CustomSFXset);
  16. });
  17. })();
  18. function CustomSFXset(){
  19. this.volume=1;
  20. this.lock={url:"blank.wav",abs:1};
  21. this.ready={url:"blank.wav",abs:0,set:1};
  22. this.go={url:"blank.wav",abs:1,set:0};
  23. this.died={url:"blank.wav",abs:1,set:1};
  24. this.hold={url:"blank.wav",abs:1,set:0};
  25. this.move={url:"blank.wav",abs:1,set:0};
  26. this.linefall={url:"blank.wav",abs:1,set:0};
  27. };