Kibi Voice

try to take over the world!

  1. // ==UserScript==
  2. // @name Kibi Voice
  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.  
  11.  
  12. (function() {
  13. 'use strict';
  14. window.addEventListener('load', function(){
  15. //Jstris SFX
  16. CustomSFXset.prototype = new BaseSFXset;
  17. loadSFX(new CustomSFXset);
  18.  
  19. });
  20. })();
  21.  
  22.  
  23. function CustomSFXset(){
  24. this.volume=1;
  25. this.lock={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223387102937129/move1.mp3",abs:1};
  26. this.ready={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223390944788480/ready.mp3",abs:1,set:0};
  27. this.go={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223379213451264/go.mp3",abs:1,set:0};
  28. this.died={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223395092955146/topout.mp3",abs:1,set:1};
  29. this.hold={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223383285858304/hold.mp3",abs:1,set:0};
  30. this.move={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223375195308032/drop.mp3",abs:1,set:0};
  31. this.linefall={url:"https://cdn.discordapp.com/attachments/572300822621323264/634223375195308032/drop.mp3",abs:1,set:0};
  32. this.comboTones={url:"https://cdn.discordapp.com/attachments/572300822621323264/634228659288277003/voicecombo1.mp3",abs:1,set:2,duration:1000,spacing:100,cnt:7};
  33. }