Greasy Fork is available in English.

KR exploit pt 2 /invest

reloads page as invest button

// ==UserScript==
// @name         KR exploit pt 2 /invest
// @namespace    http://tampermonkey.net/
// @version      1.06
// @description  reloads page as invest button
// @author       meatman2tasty
// @match        http://karnage.io/*
// @grant        none
// ==/UserScript==

document.addEventListener('keydown', function (evt) {
  if (evt.keyCode === 220) {
    investInClan();
  }
});

document.addEventListener('keydown', function (evt) {
  if (evt.keyCode === 221) {
    document.getElementById("clanInvestInput").value="300";
  }
});