Advertisement
coinwalk

for nearly any code for 999dice

May 6th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function getR(min, max) {
  2. min = Math.ceil(min);
  3. max = Math.floor(max);
  4. return Math.floor(Math.random() * (max - min + 1)) + min;
  5. }
  6.  
  7. var vol =getR(800000,899999);
  8. var zol =getR(90000000,99999999);
  9. var hol =getR(7000,7999);
  10. function go () {
  11. var xol =getR(1,3);
  12. $('#LastBetInfoSecret').unbind('DOMSubtreeModified')
  13. onBetComplete = function(e){
  14. var myseed;
  15. if (xol==1) {
  16. myseed = vol;
  17. }
  18. else if (xol==2)
  19. {
  20. myseed = hol;
  21. } else {
  22. myseed = zol;
  23. }
  24. setTimeout(() => {
  25. $(".ManualSeedControls:visible input").val(myseed)}, 50);
  26. }
  27. $('#LastBetInfoSecret').bind('DOMSubtreeModified', onBetComplete );}
  28. setInterval(() => go(), 51);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement