rasyaparsaoran

Freebitco.in scrypt balances 0.00040000 win 0.003

Nov 6th, 2017
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1.  
  2. var rolls_played = 0;
  3. var skip = 1;
  4. var no_of_loss = 0 ;
  5. var counter_list = [];
  6. var limit = 5;
  7. var uppper = limit + 10;
  8. var balance_one = document.getElementById("balance2").innerHTML.substr(0, 10);
  9. var bet_amount_list = [0.00001000, 0.00001000, 0.00001000, 0.00002000, 0.00002000, 0.00004000, 0.00004000, 0.00006000, 0.00008000, 0.00010000];
  10. document.getElementById("double_your_btc_stake").value = 0.00000001;
  11. document.getElementById("double_your_btc_payout_multiplier").value = 4 ;
  12.  
  13. function client_seed() {
  14. var text = "";
  15. var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  16.  
  17. for (var i = 0; i < 128; i++){
  18. text += possible.charAt(Math.floor(Math.random() * possible.length));
  19. }
  20.  
  21. document.getElementById("next_client_seed").value = text;
  22. }
  23.  
  24. function Random_integer(min, max) {
  25. return Math.floor(Math.random() * (max - min + 1)) + min;
  26. }
  27.  
  28. function Bet() {
  29. document.getElementById('double_your_btc_bet_lo_button').click();
  30. }
  31.  
  32. function play() {
  33.  
  34. if (document.getElementById('double_your_btc_bet_hi_button').disabled === false) {
  35.  
  36. won = document.getElementById('double_your_btc_bet_win').innerHTML;
  37.  
  38. if (won.match(/(\d+\.\d+)/) !== null) {
  39. counter_list.push(1);
  40. no_of_loss = 0 ;
  41. document.getElementById("double_your_btc_stake").value = 0.00000001;
  42. }
  43.  
  44. lost = document.getElementById('double_your_btc_bet_lose').innerHTML;
  45.  
  46. if (lost.match(/(\d+\.\d+)/) !== null) {
  47. counter_list.push(0);
  48. no_of_loss += 1 ;
  49. console.log(no_of_loss);
  50.  
  51. if (no_of_loss<limit){
  52. document.getElementById("double_your_btc_stake").value = 0.00000001;
  53. }
  54.  
  55. else if (no_of_loss>=limit && no_of_loss<uppper){
  56. document.getElementById("double_your_btc_stake").value = bet_amount_list[no_of_loss-limit];
  57. }
  58. else {
  59. document.getElementById("double_your_btc_stake").value = 0.00000001;
  60. no_of_loss = 0 ;
  61. }
  62. }
  63.  
  64. client_seed();
  65.  
  66. Bet();
  67.  
  68. balance_two = document.getElementById("balance2").innerHTML.substr(0, 10);
  69.  
  70. profit = balance_two - balance_one ;
  71.  
  72. if (profit <= -0.00040000 || profit>=0.00030000){
  73. clearInterval(auto_bet);
  74. console.log("Stop");
  75. console.log(counter_list.toString());
  76. }
  77.  
  78. }
  79. }
  80.  
  81. var auto_bet = setInterval(play, 700);
Add Comment
Please, Sign In to add comment