NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name god // @namespace http://tampermonkey.net/ // @version 1.35 // @description try to take over the world! // @author void // @include http://*.omerta.dm/* // @include https://*.omerta.dm/* // @include http://omerta.dm/* // @include https://omerta.dm/* // @include http://*.omerta.pt/* // @include https://*.omerta.pt/* // @include http://omerta.pt/* // @grant unsafeWindow // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js // @require https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js // ==/UserScript== //var sendEvery = 4000; //in milliseconds /*$(document).ready(function() { setInterval(press, sendEvery); });*/ $(document).ready(function loop() { var rand = Math.floor(Math.random() * (4500-3500+1)+3500); console.log(rand); setTimeout(function() { press(); loop(); }, rand); }); function press() { if ($('#game_container:contains("Congratulations!")').length) { $('input[name="scratch"]').focus().click(); } if ($('#game_container:contains("Sorry mate")').length) { // no prize $('input[name="scratch"]').focus().click(); } if ($('#game_container:contains("Start scratching")').length) { if ($('input[name="Check"]').length) { $('input[name="Check"]').focus().click(); } else { $('input[type="submit"]').focus().click(); } } }