Gats.io right click for spacebar

This script allows you to use your right click for the abilities you usually use with spacebar. However it wont work for shield yet (working on it).

目前为 2022-09-14 提交的版本。查看 最新版本

// ==UserScript==
// @name         Gats.io right click for spacebar
// @version      2.0.2
// @description  This script allows you to use your right click for the abilities you usually use with spacebar. However it wont work for shield yet (working on it).
// @author       Rayan223
// @match        https://gats.io/
// @icon         none
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/825882
// ==/UserScript==

$('button').click(function(event){
    console.log(event.which);
     
    if( event.which == 1 ){
        console.log('left click');
    } else if ( event.which == 2 ){
        console.log('middle click');
    } else if ( event.which == 3 ){
        consol.log('right click');
    }
});

window.oncontextmenu = function ()
{
    dash();
    setTimeout(afterdash,50);
    return false;
}

function dash(){
    RF.list[0].socket.send('k,5,1');
}

function afterdash(){
    RF.list[0].socket.send('k,5,0');
}