Bitcoin Forum
April 26, 2024, 05:57:25 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   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] 2 3 4 5 6 »  All
  Print  
Author Topic: BustaBot | #1 script for bustabit.com  (Read 76211 times)
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 30, 2015, 03:01:47 PM
Last edit: November 30, 2016, 10:00:32 AM by luxel
 #1

BustaBot
#1 script for bustabit

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.

Get your copy here: https://hexpay.org/p/gw81b

Get $5 discount, use coupon code: 5DOLLAR



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!

April 26th 2016 - Payment website changed

Since www.payivy.com is not available anymore we changed our payment website to https://aiobuy.net/buy/4611

November 30th 2016 - Payment website changed

The payment website was offline for a long time. You can now buy the script at: https://hexpay.org/p/gw81b
The price is still $10 if you pay with bitcoins but it's $15 now if you pay with paypal.
You can get $5 discount for the next 3 days if you use "5DOLLAR" as coupon code.

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.

More information about bustabit can be found in their official bitcointalk thread: https://bitcointalk.org/index.php?topic=709185

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.
If you see garbage posts (off-topic, trolling, spam, no point, etc.), use the "report to moderator" links. All reports are investigated, though you will rarely be contacted about your reports.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714111045
Hero Member
*
Offline Offline

Posts: 1714111045

View Profile Personal Message (Offline)

Ignore
1714111045
Reply with quote  #2

1714111045
Report to moderator
1714111045
Hero Member
*
Offline Offline

Posts: 1714111045

View Profile Personal Message (Offline)

Ignore
1714111045
Reply with quote  #2

1714111045
Report to moderator
1714111045
Hero Member
*
Offline Offline

Posts: 1714111045

View Profile Personal Message (Offline)

Ignore
1714111045
Reply with quote  #2

1714111045
Report to moderator
JeWay
Hero Member
*****
Offline Offline

Activity: 952
Merit: 503


View Profile
December 30, 2015, 03:17:31 PM
 #2

I've opened the site, and i think it's quite interesting. I will waiting for more explanation about the site in this thread
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 30, 2015, 03:55:33 PM
 #3

I've opened the site, and i think it's quite interesting. I will waiting for more explanation about the site in this thread

The website has a very nice concept, almost everyone likes the game when they see it for the first time.

This thread is only for the bot I've made, you can find all the information you need about the game itself at their own bitcointalk thread:
https://bitcointalk.org/index.php?topic=709185
kotwica666
Legendary
*
Offline Offline

Activity: 2282
Merit: 1035



View Profile
December 30, 2015, 05:27:03 PM
 #4

How long did you test this bot?

How should we know that this bot will not be blocked in a few days?

.
..........
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
.....I AM BLACKJACK.FUN.....
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
..........
Dannie
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


View Profile
December 30, 2015, 05:35:28 PM
 #5

How should we know that this bot will not be blocked in a few days?

You mean blocked by BAB? Why would it be blocked? Ryan has set up a specific tab on BAB for users to write their own code for custom autobetting. You should check for any potential backdoor in the script before running it though.

luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 30, 2015, 05:50:50 PM
 #6

How long did you test this bot?

How should we know that this bot will not be blocked in a few days?

I,ve been testing the bot for about 1 week now. I will post some pictures soon with curves, at this moment i am using the bot for these pictures.

The bot can't get blocked because it is allowed to use custom scripts, visit www.bustabit.com for more information about the gameplay.

You can always check the script for backdoors but it is not possible to transfer bits to another account or to cash out. You have to do that manual.
Zer0CooL
Member
**
Offline Offline

Activity: 81
Merit: 10


View Profile WWW
December 30, 2015, 05:56:30 PM
 #7

f*ck that - for 5$ I'll give it a go
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 30, 2015, 06:02:26 PM
 #8

Only 1 coupon left for 50% discount, use "FirstFive" as coupon code.
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 30, 2015, 10:24:09 PM
 #9

First of all I want to say thanks because I never thought I would sell 5 copies in the first day, that's why I have added a new coupon code"25OFF" to get 25% discount.

I have added a test result for game mode 4 to the main post, more test results will come soon.

last I have added an affiliate option where you receive 25% of the purchase price when someone buys BustaBot using your referral link.



Goodluck and have fun with BustaBot Smiley

NorrisK
Legendary
*
Offline Offline

Activity: 1946
Merit: 1007



View Profile
December 30, 2015, 11:36:14 PM
 #10

Do you have data for longer periods of time? Those 4 hours could still be just a snapshot of a longer session only showing the upswing.

How is the bot working out for the people that bought it?

Would be nice to see a graph of a a week of running.
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 31, 2015, 12:01:33 AM
 #11

Do you have data for longer periods of time? Those 4 hours could still be just a snapshot of a longer session only showing the upswing.

How is the bot working out for the people that bought it?

Would be nice to see a graph of a a week of running.

Well, I am using the bots all day long for now and record their progress.

I will publish more results this week, I will also create new accounts so you can see their full graphics curve.

But like I said in the main post, you are gambling, don't run a single script for a week. There is no strategie that survives for a week.

The best thing you can do is make some profit and cash out, then try it again. Why should you risk your money + your profits if it's not necessary?

Patatas
Legendary
*
Offline Offline

Activity: 1750
Merit: 1115

Providing AI/ChatGpt Services - PM!


View Profile
December 31, 2015, 08:04:34 AM
 #12

Any vouches for the bot yet ? I would like to have a vouch copy if that's possible at all.However few brief reviews posted above are not enough for me to get a clear idea of the bot since I'm assuming in the long run they might find out and ban you .Let me know if you can give a vouch copy.
Pov
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
December 31, 2015, 08:21:24 AM
 #13

Any vouches for the bot yet ? I would like to have a vouch copy if that's possible at all.However few brief reviews posted above are not enough for me to get a clear idea of the bot since I'm assuming in the long run they might find out and ban you .Let me know if you can give a vouch copy.

Stop begging for free shit fucking Indian scum
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 31, 2015, 09:59:16 AM
 #14

Any vouches for the bot yet ? I would like to have a vouch copy if that's possible at all.However few brief reviews posted above are not enough for me to get a clear idea of the bot since I'm assuming in the long run they might find out and ban you .Let me know if you can give a vouch copy.

Hey, it is not possible to get banned if you use this bot, there is a section on the website for custom scripts so you don't have to worry about that.

I will pm you about a vouch copy.
Joel_Jantsen
Legendary
*
Offline Offline

Activity: 1862
Merit: 1308

Get your game girl


View Profile
December 31, 2015, 10:05:51 AM
 #15

How the script is executed ? The script runs in the server or just on the particular page which is non-persistent? Can we edit the text file and have your own concepts written in it ? I'm looking forward to use the random function in the script.Will buy the bot after sig payment. Smiley
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 31, 2015, 10:16:26 AM
 #16

How the script is executed ? The script runs in the server or just on the particular page which is non-persistent? Can we edit the text file and have your own concepts written in it ? I'm looking forward to use the random function in the script.Will buy the bot after sig payment. Smiley

The bot is written in javascript and will be delivered in a .txt file. You just have to edit the settings hoe you want them to be, copy the whole script and paste it into the website's custom script loader.

The strategies are not my own concepts but well known gamble strattegies.

My father also asked for a copy yesterday and he started with 10k bits, these are is results after 12 hours, almost 200% profit: https://www.bustabit.com/user/ruudpeters

Enjoy!
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 31, 2015, 10:20:28 AM
 #17

Another account that is using bustabot is: https://www.bustabit.com/user/yukongold

Also started with 10k bits and has now a net profit of 25k within 1 day.
jlfvr
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 31, 2015, 12:10:35 PM
 #18

How the script is executed ? The script runs in the server or just on the particular page which is non-persistent? Can we edit the text file and have your own concepts written in it ? I'm looking forward to use the random function in the script.Will buy the bot after sig payment. Smiley

Scripts in the strategy editor are executed on the side of the client. Consequently closing the browser will stop the script.
Zer0CooL
Member
**
Offline Offline

Activity: 81
Merit: 10


View Profile WWW
December 31, 2015, 01:39:57 PM
 #19

I have tried the script and it seems to work, however I usually play the 'Martingale' system, which is perfectly doable from the sites' own autobet bot
I'm surprised nobody tried to resell the script yet :-)
luxel (OP)
Member
**
Offline Offline

Activity: 130
Merit: 10


View Profile
December 31, 2015, 01:56:32 PM
 #20

I have tried the script and it seems to work, however I usually play the 'Martingale' system, which is perfectly doable from the sites' own autobet bot
I'm surprised nobody tried to resell the script yet :-)

There is an affiliate system, so you can profit from our bot if you can find another user that wants to buy the bot.

Read the mainpost for more information.
Pages: [1] 2 3 4 5 6 »  All
  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!