Greasy Fork is available in English.

[in beta-testing] Gats.io right click for spacebar

This script is under developpement. an old version of it works but not for shield here https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557.

2022-09-19 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

  1. // ==UserScript==
  2. // @name [in beta-testing] Gats.io right click for spacebar
  3. // @version 2.2.5.6
  4. // @description This script is under developpement. an old version of it works but not for shield here https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557.
  5. // @description I'm currently having issues with the mouse event, google chome having changed it to pointer and it is not easy to handle it but i'm trying my best.
  6. // @author Rayan223
  7. // @match https://gats.io
  8. // @icon none
  9. // @grant none
  10. // @license MIT
  11. // @namespace https://greasyfork.org/users/825882
  12. // ==/UserScript==
  13.  
  14. /**
  15. * Check if an event is supported.
  16. * Ref: http://perfectionkills.com/detecting-event-support-without-browser-sniffing/
  17. */
  18. function isEventSupported(event) {
  19. var testEl = document.createElement('div');
  20. var isSupported;
  21.  
  22. event = 'on' + event;
  23. isSupported = (event in testEl);
  24.  
  25. if (!isSupported) {
  26. testEl.setAttribute(event, 'return;');
  27. isSupported = typeof testEl[event] === 'function';
  28. }
  29. testEl = null;
  30.  
  31. return isSupported;
  32. }
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. let div_data = '<div id="ingameconsole"><p id="compatibility"></p> <p id="click_which">None</p></div>' + document.body.innerHTML;
  40.  
  41. var play = 0
  42.  
  43. document.body.innerHTML = div_data;
  44. var compatibility = document.getElementById('compatibility');
  45. var click_data = document.getElementById('click_which');
  46.  
  47. if (isEventSupported("mousedown")) {
  48. document.addEventListener("mousedown", clickDown(event), false);
  49. document.addEventListener("mouseup", clickUp(event), false);
  50. compatibility.textContent = 'mousedown compatible'
  51. }else if (isEventSupported("touchstart")) {
  52. document.addEventListener("touchstart", clickDown(event), false);
  53. document.addEventListener("touchend", clickUp(event), false);
  54. compatibility.textContent = 'touchstart compatible'
  55. } else if (isEventSupported("pointerdown")) {
  56. document.addEventListener("pointerdown", clickDown(event), false);
  57. document.addEventListener("pointerup", clickUp(event), false);
  58. compatibility.textContent = 'pointerdown compatible'
  59. } else {
  60. compatibility.textContent = 'nothing compatible'
  61. }
  62.  
  63. function playing() {
  64. var menu = document.getElementById('slct');
  65. if (menu.className == "container"){
  66. return false
  67. }else{
  68. return true
  69. }
  70. }
  71.  
  72. function clickDown(event){
  73. click_data = event
  74. if (playing()){
  75. if(event.which == 2){
  76. RF.list[0].socket.send('k,5,1');
  77. }
  78. }
  79. }
  80.  
  81. function clickUp(event){
  82. if (playing()){
  83. if(event.which == 2){
  84. RF.list[0].socket.send('k,5,0');
  85. }
  86. }
  87. };
  88. //window.oncontextmenu = function ()
  89. //{
  90. // dash();
  91. // setTimeout(afterdash,50);
  92. // return false;
  93. //}
  94.  
  95. //function dash(){
  96. // RF.list[0].socket.send('k,5,1');
  97. //}
  98.  
  99. //function afterdash(){
  100. // RF.list[0].socket.send('k,5,0');
  101. //}