Bitcoin Forum
June 24, 2024, 03:38:48 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1]
  Print  
Author Topic: #1 Custom Bustabot Script Shop  (Read 254 times)
Skelder (OP)
Member
**
Offline Offline

Activity: 80
Merit: 10


View Profile
July 12, 2017, 04:30:00 PM
 #1

BustaBot
#1 script for bustabit

Skype: Gay.Pal


A while ago I visited the website www.bustabit.com for the first time and I loved the game since I first saw it.

After playing for a while I decide do create my own bot that supports multiple gambling strategies.



How to use
Quote
1: The script should be a text file (bustabot.txt). Right click on the file and open it with a text editor, I strongly suggest you to use notepad++ if you want to edit the script.

2: After you have opened the file in a text editor you can change the settings in the first ~9 lines, read "settings" for more detailed information about the settings.

3: After you changed the settings how you want them to be, copy the whole script. Then when you are logged in on www.bustabit.com click on “AUTO”. You should see 2 buttons “RUN” and “STOP” and right next to it is a dropdown list which says “AUTOBET” or “CUSTOM”, click on custom. Paste the whole script into the text field above these buttons and click on “RUN”.

4: The bot also checks your progression after each bet. You can check the messages if you press “f12” on your keyboard and click on “console”. You will see a welcome message when you start the script, and it tells you how much you have earned and how long the script is running after each game.


Settings:
Quote
I will explain all settings line for line.

1: var GameMode = 1;
You can tell the script what game mode you want to use by changing the number 1 into another number. The game modes are 1 = Martingale, 2 = Paroli, 3 = D’alambert, 4 = Pluscoup (My favourite Cheesy). More information about every game mode is further in this post.

2: var MaxProfitMode = true;
If you set this to "true" you always bet a certain percentage of your total balance (see setting 3). If you set this to false, you will always use the base bet (see setting 4).

3: var PercentOfTotal = 0.1;
If setting 2 is set to true, you will use this percentage of your total balance as your basebet. That means if you make profit, your basebet will raise so you can earn more while you run the bot for a longer period of time. If your total balance is 255200 bits and this setting is 0.1 you will bet (0.1%) 255 bits as base bet.

4: var BaseBet = 100;
In this case 100 will your first bet, no matter which game mode you play. This amount is in bits ( 1.000.000 bits = 1 BTC). You can’t use a decimals in the BaseBet.

5: var Multiplier = 2.00;
This is the multiplier where the bot will stop while he is playing a game. You can’t set the Multiplier lower than 1 and you can only use up to 2 decimals. The script will automatically change this to X2.0 when you use GameMode 2 or 3, you will also receive a confirmation pop-up that the bot has changed your multiplier to X2.0.

6: var dalembert = 1;   
This setting is only used when GameMode is set to 3 (D’alambert), this is the amount you want to raise or lower your bet with after each game. More details about this further in this post. When you are not playing on GameMode 3, you can leave this setting at 1, as it will not affect your bets when you use another GameMode.

7: var MaxBet = 100000;
This is the maximum amount of bits the bot will bet. Before the bot places a bet it will always check if the bet is higher then your MaxBet, if so, your bet will get lowered to the amount you filled in at MaxBet.

8: var MaxProfit = 100000;
If the bot makes this amount of profit it will automatically stop, this is to prevent the bot from busting after you've made a certain amount of profit.

9: var MaxLoss = 25000;
With this setting you can never lose your whole balance anymore after a long loss streak. This is the maximum amount of bits you can lose, if a bet would exceed this amount, the bot will automatically stop.

10: var RandomBreak = 0;
Some players like to take a break sometimes, if this setting is set to 1 it will skip 1 game in 100 games. If this setting is set to 20 there is a chance of 20% of taking a break before a game starts. You can use any numbers between 0 and 99.

X: var UseChat = false;      This setting is only available in the first BustaBot version, make sure to set this to false!   
The bot will place a message in the public chatbox when you run the script if this is set to true. Change this to false to disable this function. In later updates the script will be able to place messages in the public chat box when you reach a decent amount of profit.

Never change anything else below these lines if you don’t know what you are doing. Every character you change can ruin the script.


Below I have wrote some explanation about all the supported game modes. I will not explain every little detail, but I will give you the link to the pages that I have used to create the script.

GameMode 1 (Martingale)
Quote
This is one of the most popular gambling strategies, not my favorite but it can work out very well.

Here is a little example:
If you bet 1 bit on X2.0 and you lose, the next turn it will bet 2 bits. If you also lose this round, it will bet 4 bits, then 8 bits and so on… until you win 1 game and then it starts at 1 bit again.

This also works when you change the multiplier. When you lower the multiplier then X2.0 your bets will increase faster after each lose, but you have more chance to win this round. When you higher the multiplier then X2.0, Your bet will increase less, but the chance to win is also less.

Example with multiplier set to X1.5 and start betting with 20 bits.
Round | Bet | Result
1       20      Lose 20
2       60      Lose 60   
3      180      Win 270 (260 to cover your bets and 10 profit)
4       20   

Example with multiplier set to X3 and start betting with 100 bits.
Round | Bet | Result
1      100      Lose 100
2      150   Lose 150
3      225      Win 675  (475 to cover your bets and 200 profit)

See this page for very detailed information about the martingale strategy: http://vegasclick.com/gambling/martingale-betting-system.html

GameMode 2 (Paroli)
Quote
THIS MODE WILL ALWAYS USE A MULTIPLIER X2.0!

This strategy works with rounds, 1 round = 3 bets.

The first game in each round is always your base bet. If you win a bet the next bet will be twice as much as your base bet. If you lose a bet, the next bet will be your base bet again.

There are 8 possible results after playing 1 round:
1 Win | 2 Win | 4 Win = net result: 7 x base bet
1 Lose| 1 Win | 2 Win = net result: 2 x base bet
1 Win | 2 Lose | 1 Win = net result: 0
1 Win | 2 Win | 4 Lose = net result: -1 x base bet
1 Lose | 1 Lose | 1 Win = net result: -1 x base bet
1 Lose | 1 Win | 2 Lose = net result: -2 x base bet
1 Win | 2 Lose | 1 Lose = net result: -2 x base bet
1 Lose | 1 Lose | 1 Lose = net result: -3 x base bet

This strategy is based on streaks, you won’t lose much on a lose streak but you can  profit a lot on winning streaks.
Full information about this strategy can be found here: http://www.casinoreviewsquad.com/betting-systems/the-paroli-betting-system/

GameMode 3 (D’alambert)
Quote
THIS MODE WILL ALWAYS USE A MULTIPLIER X2.0!

This game mode is very easy to follow. If you win a game you have to decrease your bet, if you lose a game increase your bet.

In the settings you can find “var dalembert = 1;” after each win, your bet will decrease by this number and after a lost game your bet will increase by this number.

This strategy is profitable because if you lose 7 times and you win 7 times (which are the odds) you will have 7 units profit because you are decreasing and increasing after each game.

Full theory and explanation can be found here: http://www.roulettestrategy.net/strategy/d-alembert/

GameMode 4 (Pluscoup)
Quote
This is my personal favorite (got awesome results with multiplier set to X1.25)!

This strategy is based on winning streaks, that’s why I love this strategy on a low multiplier. But it also works on higher multipliers because this will cover your loses a lot faster. And another great thing about this strategy, you don’t have to risk a huge amount to just win your base bet like the martingale strategy.

When you lose a game with this strategy, always bet the same amount as your last bet.
If you win you are going to increase your bet by 1 X your base bet, but you will never bet more than necessary to make profit.

Example with multiplier x2 and 1 bit bet:
Game   |   Result   |   Total
Game 1:    -1       -1
Game 2:    -1      -2
Game 3:    -1      -3
Game 4:   +1      -2
Game 5:   +2      0
Game 6:   -2      -2
Game 7   -2      -4
Game 8   -2      -6
Game 9   +2      -4
Game 10   +3      -1
Game 11   +2      +1 (only betting 2 units here because it’s enough to gain profit.)

As you can see we lost 6 games and won 5 games but still made profit without betting huge amounts after a loss streak.

Full explanation can be found here: http://www.roulette30.com/2014/01/oscars-grind-system-pluscoup-progression.html

GameMode 5 (Recovery)
Quote
This is the latest game mode and released in bustabot v3.

In this game mode we try not to lose a game, and if we lose a game we are going to win the losses back and start again.

It's recommended that you use a low multiplier like 1.05. This means that you will win a lot of games without losing. If you lose a game the bot doubles your last bet and calculates the multiplier to win the amount that you've lost in the previous games. The multiplier will never get higher then 1.99.

Here is a table when we bet 100 bits with the multiplier set to X1.05.
round:   bet:   multiplier:   profit:
1:         100      1.05           5 (win)
2:         100      1.05           -100 (lose)
3:         200      1.50           100 (win)
4:         100      1.05           5 (win)
5:         100      1.05           5 (win)
6:         100      1.05           -100 (lose)
7:         200      1.50           -200 (lose)
8:         400      1.75           -400 (lose)
9:         800      1.88           704 (win)
10:       100      1.05           5 (win)

Note: You will earn a lot of extra bits from the bonus system in bustabit!

Results:
Quote
Game Mode 4 (Pluscoup)
I have tested BustaBot for 4 hours on game mode 4 and started with 11.585 bits and made almost 50% profit.
The base bet I used is 50 bits and the multiplier was set to X1.25.

This is the message I received from the bot:
[BustaBot] Session profit: 5019.57 bits in 263 minutes.

I also took a picture how the curve should look like:



Updates
Quote
January 4th 2016 - BustaBot V2 Released
  • You can now bet a certain percentage of your total amount, this will increase bets after you've made profit but keeps the same risk.
  • Added a Max Loss function, from now on you can't bust your whole balance anymore on a loss streak.
  • Added a Max Profit function, so that can't lose your profits anymore when you earned the amount of bits you wanted.
  • Added random breaks on request of some users.
  • The script doesn't contain the standard function to check the last game anymore, this caused problems when you skipped a game because of lag. It's now replaced with custom code.
  • unfortunately I had to remove the public chat function, because there were too many people running the bot and that caused too many automatically generated messages in the public chat. (Thanks to all the 40 users!!!!) Smiley
  • I was planned creating a 5th game mode but there were a few errors, There will be an update soon with a new game mode!
  • Atleast I've created 10 coupon codes with 25% discount "BustaBot2". Make sure to grab one of these because the sales go hard!

March 10th 2016 - BustaBot V3 Released
  • Game Mode 5 released (Recovery).
  • Talked to customers about some good ideas, more updates soon!


Everyone that already bought a copy of BustaBot will receive a free update to the latest version on their email account!


I would love to see some suggestions in this thread to improve BustaBot, I will do my best to create as many as possible updates.

Note: remember that you are gambling and you can always lose money, therefore I am not responsible if no profit is made. I strongly suggest to cash out a percentage after you have gained some profits because all gambling strategies can bust on long term.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!