Freebitco.in Best Script I ever use


SUBMITTED BY: samiulbd

DATE: Nov. 19, 2015, 5:53 a.m.

FORMAT: Text only

SIZE: 2.1 kB

HITS: 882

  1. //FreebitcoScriptV1 by RoadBlock
  2. //Visit this link= http://freebitco.in/?r=1098115
  3. //Hello everybody.
  4. //This is my new modify script which is some cmd is added from others script. Thanks to them.
  5. //Also there has been a lot of change you can find it.
  6. //You can win 80%, yes 80% but be careful freebico will be looking at you if you are not refreshing at 30 mins.
  7. //Tutorial: Change you amount of bet where I give it at below. Also you can change you Maximum bet limit at "maxBet"
  8. //New update script will be coming soon.
  9. //Copy all the script and paste it at console.
  10. //If you using Google Chrome or Firefox or Opera than right click and click Inspect Element and click at the Console tab.
  11. //If you like it then please use my referral "1098115" cause I am so poor :3
  12. //Change your amount below.
  13. var startValue = '0.00000040';
  14. bconfig = {
  15. maxBet: 0.00004096,
  16. wait: 500,
  17. toggleHilo:true
  18. };
  19. //If you are a advance Javascript programmer, then you can modify it if you know. Otherwise do not do it!
  20. function reset(){
  21. $('#double_your_btc_stake').val(startValue);
  22. }
  23. hilo = 'lo';
  24. reset ();
  25. multiplier = 1;
  26. rollDice = function() {
  27. if ($('#double_your_btc_bet_lose').html() !== '') {
  28. $('#double_your_btc_2x').click();
  29. multiplier++;
  30. console.log("YOU LOST! Don't worry just be patient. Multiplying your bet and betting again.")
  31. if(bconfig.toggleHilo)toggleHiLo();
  32. } else {
  33. $('#double_your_btc_min').click(); reset();
  34. console.log("YOU WON! Restarting your bet...")
  35. multiplier = 1; hilo = 'lo';
  36. }
  37. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  38. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  39. $('#double_your_btc_min').click(); reset();
  40. }
  41. $('#double_your_btc_bet_' + hilo + '_button').click();
  42. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
  43. };
  44. toggleHiLo = function() {
  45. if (hilo === 'lo') {
  46. hilo = 'hi';
  47. } else if (hilo === 'hi') {
  48. hilo = 'lo';
  49. } else {
  50. hilo = 'lo';
  51. };
  52. }
  53. rollDice();

comments powered by Disqus