NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Get 350 // @namespace / // @include http://csgojoe.com/ // @version 1 // @grant none // ==/UserScript== var baner = ""; var new_game = true; var id = 0 var player = document.createElement('audio'); player.src = 'https://dl.dropboxusercontent.com/u/58542615/tada.mp3'; player.preload = 'auto'; function GetResult () { baner = $('#timetorolltexttimewinner').text(); balance = $('#coinstext').text(); if (baner.indexOf("next") >= 0 && new_game) { hajs = parseInt(balance.match(/\d+/)); if (hajs < 350) { new_game = false; $('#bet').val(hajs.toString()); $('.greenb').trigger( "click" ); console.log("Stawiam "+hajs+" na zielone"); } } if (baner.indexOf("Winner") >= 0 && !new_game) { wygrana = parseInt(baner.match(/\d+/)); if (wygrana == 0) { clearInterval(id); player.play(); console.log("Hurra! Wygrales!"); } else { console.log("No niestety :("); new_game = true; } } } id = setInterval(GetResult,1000);