// ==UserScript== // @name The West green swap // @namespace Violentmonkey Scripts // @include http*://*.the-west.*/game.php* // @grant none // @version 1.0 // @author KŁ0P0T // @description The West green swap 420 // @license MIT // @downloadURL none // ==/UserScript== FortBattleWindow.setSwapState = function (swapState) { $('.battleground_thick_arrow canvas').toggleClass('swapping', swapState); //console.log(swapState); //console.log('jd'); if(swapState){ $('.self')[0].style.filter = "hue-rotate(90deg)";} else{ $('.self')[0].style.filter = "hue-rotate(0deg)"; } };