EDIT CONFIG

 

  1. To use the script you need a freebitco.in account. If you like the script, consider to create a new account with my referral https://bit.ly/2RUt2Dn
  2. If you want use the script without referral, please donate at this btc address: 1AMzfGE2LiMARoJRQY1JQgHnnTqCdPDWn5
  3.  
  4. HOW TO EDIT CONFIG

  5.  
  • Click on Tampermonkey icon on web browser from Freebitcoin tab.
  • Click on + on the right of the script.
 
  • Click edit (like the image)
 
 
  • Look for this part of code (in the image), at the beginning of the script., it says CONFIG.
  1.  

  2.  
  3. You can change Boolean (true or false) values as follow:
  4.  
  5. CONFIG VARIABLES EXPLAINED IN DETAILS

  6.  
  7. BEHAVIOR SECTION */

  8.  
  9. PROMO MODE
  10. When a promo (reward bonus or multiply bonus) is active, if promo_mode is true, script will roll faster, avoiding losing time and rolling more times till promo is active.
  11.  
  12. SLOW MODE
  13. When true, script will act really slower. Suggested if you keep script running long time
  14.  
  15. NIGHT MODE
  16. If true, script will be slower in the night, and faster in daytime. Calculated by your timezone clock
  17.  
  18. BONUSES SECTION */

  19.  
  20. REWARDS
  21. if true, script will buy rewards. It will buy the biggest RP bonus allowed with your RP points. Just if: It's missing less then 20 minutes before rolling. To avoid losing time just after a bonus is active. And if HOURS_BETWEEN_BUY_BONUS passed. If false, rewards function is disabled and no bonuses are bought.

  22. BONUS 1000
  23. It will buy the 1000% roll bonus. Just if: It's missing less then 20 minutes before rolling. To avoid losing time just after a bonus is active. And if HOURS_BETWEEN_BUY_BONUS passed
  24. HOURS_BETWEEN_BUY_BONUS
  25. Time to wait, in hours, between one bonus is active and buy the next bonus. If 0, script will buy bonus with no waiting time. One bonus ended, it will directly buy next one.
  26.  
  27. LOTTERY SECTION */

  28.  
  29. LOTTERY
  30. if true, script will buy lottery tickets. Function lottery is executed every time the page reload. It waits random time to buy, and is activated just 7% of the times. It will buy random number of ticket. Max number of lottery tickets is defined with the next variable.
  31. LOTTERY_MAX_TICKETS
  32. Maximum number of tickets to buy
  33.  
  34. MULTIPLY SECTION */

  35.  
  36. MULTIPLY
  37. if true, script will play multiply. It will play multiply just after roll, not before, and not always, just 50% of the times.
  38. To be specific, multiply function is called randomly by roll function. Roll function, after roll, sometimes call multiply, sometimes reload the page, sometimes do nothing. If false, multiply is not played.
  39.  
  40. MAX_ROLLS_AT_MULTIPLY
  41. The var rapresents maximum number of multiply bets played, in a single game. When used with auto bet, it's the number placed in the field MAX BET/WIN. When it's used with manual bet, it's the max number of bets, with some exceptions:
  42. 1) in martingale_manual, if last bet is lost and bet is less then max_bet, script will play to not lose the martingale logic
  43.  
  44. BASE_BET
  45. The BASE BET is the beginning value to start to play.
  46.  
  47. MAX_BET
  48. The MAX BET is the max bet it will played.
  49.  
  50.  
  51. HOURS_BETWEEN_MULTIPLY
  52. Script will wait those hours number to play again. Freebitcoin is proven to make you lose if you play continuosly or don't wait the needed times.
  53.  
  54. MARTINGALE_AUTO
  55. Martingale logic on the game. If lose, double, if win, go back to base bet, to win the base bet every win. It will play the auto bet part of the freebitcoin page.
  56.  
  57. MARTINGALE_MANUAL
  58. Martingale logic on the game, but manual. Physically click on bet hi and bet low, and changing bet value at every play. It will wait random time between one click and the other, to simulate human behavior.
  59. MARTINGALE_MANUAL_OLAER
  60. Olaer is a user that asked for a game logicc implementation, based on sequence HLLHHHLLLL etc, so If martingal manual is true, putting this var at true will change the logic of hi low bet sequence, playing HLLHHH...
  61. If martingal_manual_olaer is false, HHHH is always played.
  62.  
  63. CAPTCHA PLAY SECTION */

  64.  
  65. PLAY WITHOUTH CAPTCHA
  66. if true, script will play in low balance accounts and autoroll paying RP to play without captcha.
  67.  
  68. OTHERS */

  69.  
  70. LOGGING
  71. Change the loglevel of the script. 0 is no log, and 5 is debug. Logs are displayed in console. Visible with right click on the page -> inspect -> console
  72.  
  73. HIDE_RESET_STATS
  74. If false, reset_stat link is shown in the status panel. It's usefull to delete all cookies relative to the script. It will cause to lose all stats relative to the script, to begin from 0. You can use that when you play with a new created account.
  75.  
  76.  

Comments