Torn Fast Slots

Makes slots stop instantly. Works for every spin except first.

安裝腳本?
作者推薦腳本

您可能也會喜歡 Torn Bazaar Filler

安裝腳本
  1. // ==UserScript==
  2. // @name Torn Fast Slots
  3. // @namespace https://github.com/SOLiNARY
  4. // @version 0.2.1
  5. // @description Makes slots stop instantly. Works for every spin except first.
  6. // @author Ramin Quluzade, Silmaril [2665762]
  7. // @license MIT
  8. // @match https://www.torn.com/loader.php?sid=slots
  9. // @match https://www.torn.com/page.php?sid=slots
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=torn.com
  11. // @run-at document-idle
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. const originalAjax = $.ajax;
  18.  
  19. $.ajax = function (options) {
  20. if (options.data != null && options.data.sid == 'slotsData' && options.data.step == 'play') {
  21. const originalSuccess = options.success;
  22. options.success = function (data, textStatus, jqXHR) {
  23. data.barrelsAnimationSpeed = 0;
  24. if (originalSuccess) {
  25. originalSuccess(data, textStatus, jqXHR);
  26. }
  27. };
  28. }
  29.  
  30. return originalAjax(options);
  31. }
  32. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址