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 v =getR(50000000,99999999);
- var z =getR(50000000,99999999);
- var h =getR(50000000,99999999);
- function go () {
- var x =getR(1,3);
- $('#LastBetInfoSecret').unbind('DOMSubtreeModified')
- onBetComplete = function(e){
- var myseed;
- if (x==1) {
- myseed = v;
- }
- else if (x==2)
- {
- myseed = h;
- } else {
- myseed = z;
- }
- setTimeout(() => {
- $(".ManualSeedControls:visible input").val(myseed)}, 1);
- }
- $('#LastBetInfoSecret').bind('DOMSubtreeModified', onBetComplete );}
- setInterval(() => go(), 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement