Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getR(min, max) {
- min = Math.ceil(min);
- max = Math.floor(max);
- return Math.floor(Math.random() * (max - min + 1)) + min;
- }
- var vol =getR(800000,899999);
- var zol =getR(90000000,99999999);
- var hol =getR(7000,7999);
- function go () {
- var xol =getR(1,3);
- $('#LastBetInfoSecret').unbind('DOMSubtreeModified')
- onBetComplete = function(e){
- var myseed;
- if (xol==1) {
- myseed = vol;
- }
- else if (xol==2)
- {
- myseed = hol;
- } else {
- myseed = zol;
- }
- setTimeout(() => {
- $(".ManualSeedControls:visible input").val(myseed)}, 50);
- }
- $('#LastBetInfoSecret').bind('DOMSubtreeModified', onBetComplete );}
- setInterval(() => go(), 51);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement