Bitcoin Forum

Economy => Digital goods => Topic started by: luxel on December 30, 2015, 03:01:47 PM



Title: BustaBot | #1 script for bustabit.com
Post by: luxel on December 30, 2015, 03:01:47 PM
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 :D). 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:
http://s27.postimg.org/foaquw3n7/Screen_Clip_1.png


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!!!!) :)
  • 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.


Title: Re: BustaBit | #1 script for bustabit.com
Post by: JeWay on December 30, 2015, 03:17:31 PM
I've opened the site, and i think it's quite interesting. I will waiting for more explanation about the site in this thread


Title: Re: BustaBit | #1 script for bustabit.com
Post by: luxel on December 30, 2015, 03:55:33 PM
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 (https://bitcointalk.org/index.php?topic=709185)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: kotwica666 on December 30, 2015, 05:27:03 PM
How long did you test this bot?

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


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Dannie on December 30, 2015, 05:35:28 PM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 30, 2015, 05:50:50 PM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Zer0CooL on December 30, 2015, 05:56:30 PM
f*ck that - for 5$ I'll give it a go


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 30, 2015, 06:02:26 PM
Only 1 coupon left for 50% discount, use "FirstFive" as coupon code.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 30, 2015, 10:24:09 PM
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 :)



Title: Re: BustaBot | #1 script for bustabit.com
Post by: NorrisK on December 30, 2015, 11:36:14 PM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 12:01:33 AM
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?



Title: Re: BustaBot | #1 script for bustabit.com
Post by: Patatas on December 31, 2015, 08:04:34 AM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Pov on December 31, 2015, 08:21:24 AM
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


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 09:59:16 AM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Joel_Jantsen on December 31, 2015, 10:05:51 AM
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. :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 10:16:26 AM
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. :)

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!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 10:20:28 AM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: jlfvr on December 31, 2015, 12:10:35 PM
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. :)

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


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Zer0CooL on December 31, 2015, 01:39:57 PM
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 :-)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 01:56:32 PM
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.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 31, 2015, 07:47:48 PM
Sales are going great, only 2 coupons left with 25% discount. Use "25OFF" as coupon code.

Thanks too all the buyers and goodluck!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 01, 2016, 03:18:15 PM
I have used the Pluscoup gamemode another time and it runned for about 11 hours.

My basebet was 220 and I cashed out at X1.25.


www.bustabit.com/user/yukongold is the account I played on, as you can see I've made about 37k profit the last 11 hours and my starting balance was 30k.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 02, 2016, 05:29:53 PM
game mode 2 and 3 dont start... i cant activate if i click on run

Do you have pop ups enabled? When you run Gamemode 2 or 3 you have to click on "ok" in the confirmation box because these gamemodes always set the multiplier to X2.0.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: krunox123 on January 02, 2016, 05:39:27 PM
I wonder if you are selling the same script that this user (https://bitcointalk.org/index.php?action=profile;u=709833) tried to sell (https://bitcointalk.org/index.php?topic=1312188.0)? If so, he only sell the script as low as $3.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 02, 2016, 05:48:02 PM
I wonder if you are selling the same script that this user (https://bitcointalk.org/index.php?action=profile;u=709833) tried to sell (https://bitcointalk.org/index.php?topic=1312188.0)? If so, he only sell the script as low as $3.

Thanks, reported this to the moderators.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: krunox123 on January 02, 2016, 07:05:40 PM
Enjoy the free script everyone: http://textuploader.com/5pa22
And here we go. Thank you for the leak.
I make a backup here: http://pastebin.com/EXj78N5A


Title: Re: BustaBot | #1 script for bustabit.com
Post by: papa_face on January 02, 2016, 07:17:44 PM
How can that be the case when the script you post doesn't even have the setting vars that the OP has stated? e.g var GameMode = 1;


Title: Re: BustaBot | #1 script for bustabit.com
Post by: polvb on January 02, 2016, 07:42:43 PM
my honest review :
The script is useless and rigged at the same time.Its just a code not a bot for real.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 02, 2016, 11:44:06 PM
Sad, that people can be so rude like this.

Someone is working hard for a good product and other people try to steal their concepts.

For the ones that dont believe that I am the creator, check this post's start date and you will notice that no other copy has been posted earlier.


In my opinion is leaking products like this the same as stealing mobile phones and give them out for free.

I will send a message to the moderators to take a look on this.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 03, 2016, 01:49:04 AM
This user is selling a public method which he acquired for free from hackforums I searched Google and found this in 1 minute

Don't accuse me of stealing something you do not own or created

Link for proof.   http://hackforums.net/showthread.php?tid=4893537


That code doesn't even look like mine... Yeah they both have a place to change settings....


Title: Re: BustaBot | #1 script for bustabit.com
Post by: BeastBTC on January 03, 2016, 02:54:37 AM
I received a vouche copy from a leaker (unknowingly).

Works very well for a beginner on BustABot!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 04, 2016, 11:02:38 PM
Version 2 of BustaBot is just released.

updates:
  • 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!!!!) :)
  • I was planning creating a 5th game mode but there were a few errors, There will be an update soon with a new game mode!

Thanks to all the 40 users that already bought a copy of BustaBot, the new version will be in your email account in a few minutes!

For the users that didn't already got a copy of BustaBot, here is 25% discount, use "BustaBot2" as coupon code.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: coaltin on January 05, 2016, 06:49:02 AM
He promises to provide a winning strategy which doesn't exists in the world of gambling.Be aware!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: krunox123 on January 05, 2016, 07:43:33 AM
He promises to provide a winning strategy which doesn't exists in the world of gambling.Be aware!
Indeed. There is no strategy that can guarantee you to make a lot of profit, it is just a matter of luck.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 05, 2016, 08:05:31 AM
He promises to provide a winning strategy which doesn't exists in the world of gambling.Be aware!

First of all, there is no 100% winning strategy, and please quote me where i've said that because it's just not possible.

But that doesn't mean that it's impossible to create a system that comes close to it, I am always thinking and working on the script to make your win chances higher and the chances to lose smaller. That's why i have update the new max profit and max loss functions.

The only way to make profit while you are gambling is to take out the money that you have won, therefore i have contacted the site owner and he is creating a second place in your account to keep your profits.

If you have any suggestions to lower the chance to bust, please tell me and I'll work them into the script.

Luxel.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: ClashBit on January 05, 2016, 03:51:35 PM
Bustabit has a 1% skill and you can have an advantage if you use it wisely. I will test the bot tomorrow.

Thanks!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on January 18, 2016, 09:05:14 PM
HEY LUXEL!, I am Spanish, and use a translator. sorry if there is an error.


I wanted to know if you can edit the pluscoup, in such a way that that when I lose have to win 2 or 3 times to increase the bet.

Thanks for your time.

Hello, please send me a private message with the exact settings that you want.

If it's only a small edit I will send you a custom script within a day or two.

Also give the transaction information and your email address that you've used at the payment.




Everyone can expect a free update in about 2 days with a new game mode.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: zmija on February 17, 2016, 07:44:50 AM
Hi, I've bought your script a couple of days ago and i have some suggestions. The problem that i'm facing is when i play mode 1 or 4 i keep getting out of money because, script is trying to return the loss when bustabit decides to collect the bits out of users that means it throws 5-10x below 2x multiplier, "red zone". So i'm thinking when that happens if i loose 2x or 3x in a role the script should stop betting and even rising the bet and should skip 2 or 3 bets, that would depent on variable set by user how many time should script skip the bet based on how many lost bets if u get me. Thx Take care  :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: franklintdv on February 26, 2016, 02:23:45 AM
I bought the bot and enjoyed the pluscoup strategy, I wonder if you would make a bot with this strategy to sites like just-dice , primedice and others.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on February 26, 2016, 05:35:47 AM
does this script have lifetime free updates?

update op contacted me yes it does you will receive it by email


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 07, 2016, 05:07:59 PM
does this script have lifetime free updates?

update op contacted me yes it does you will receive it by email


Yes, everyone will receive an email with the new version as soon as there is an update.

Post your suggestions in this topic and I will do my best to implement them into the script.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 10, 2016, 09:14:47 AM
BustaBot V3.0 released!

This update contains a new game mode, more information about this gamemode can be found in the main post of this topic.

Users that already bought the script will receive a free copy of V3.0 in their mailbox today.

We also created a new coupon code for 20% discount: "RECOVERY".


I have spoken with some customers and they gave me some cool ideas that I am willing to implement into the script, more updates soon!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: FaceTehWind on March 14, 2016, 02:57:27 PM
Hey, i bought the bot and i was wondering like you said in your post for the 4th gamemode, when you win it x1 your base bet. At the moment that ins't happening. Is it because i have MaxProfitMode and percentoftotal on in the script?


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 14, 2016, 06:31:10 PM
Hey, i bought the bot and i was wondering like you said in your post for the 4th gamemode, when you win it x1 your base bet. At the moment that ins't happening. Is it because i have MaxProfitMode and percentoftotal on in the script?

Yes, you can change this by changing this setting:

Code:
var MaxProfitMode = true;

into this:

Code:
var MaxProfitMode = false;

Now you will bet your BaseBet instead of a certain percentage of your total amount.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: FaceTehWind on March 14, 2016, 08:15:43 PM
Hey, i bought the bot and i was wondering like you said in your post for the 4th gamemode, when you win it x1 your base bet. At the moment that ins't happening. Is it because i have MaxProfitMode and percentoftotal on in the script?

Yes, you can change this by changing this setting:

Code:
var MaxProfitMode = true;

into this:

Code:
var MaxProfitMode = false;

Now you will bet your BaseBet instead of a certain percentage of your total amount.
Thanks ^^


Title: Re: BustaBot | #1 script for bustabit.com
Post by: bidz on March 15, 2016, 02:25:52 AM
Bought the script yesterday and soo far it is working good...  ;D


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 18, 2016, 12:02:56 AM
Bought the script yesterday and soo far it is working good...  ;D

Nice :)

Maybe you can attach a picture or your profile link to show your earnings.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: ranlo on March 18, 2016, 03:16:39 AM
Bustabit has a 1% skill and you can have an advantage if you use it wisely. I will test the bot tomorrow.

Thanks!

This is something so many people don't realize. Technically, I believe you can achieve a +EV under optimal circumstances by taking advantage of the bonuses. A bad streak would still wipe you out due to max. bets and wins though.

@OP: awesome options in the script! Some of those I've never heard of but look like they could really help with the bad streaks.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on March 18, 2016, 05:56:06 AM
Sent you a pm regarding update


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 18, 2016, 11:36:09 AM
Bustabit has a 1% skill and you can have an advantage if you use it wisely. I will test the bot tomorrow.

Thanks!

This is something so many people don't realize. Technically, I believe you can achieve a +EV under optimal circumstances by taking advantage of the bonuses. A bad streak would still wipe you out due to max. bets and wins though.

@OP: awesome options in the script! Some of those I've never heard of but look like they could really help with the bad streaks.

Thanks for your feedback!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: powrslave on March 19, 2016, 06:53:05 AM
The maximum usage limit of this coupon has been reached.

 :'(


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on March 20, 2016, 03:07:20 AM
can anyone provide some feedback on the new method how it works profit margin etc


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 25, 2016, 12:29:14 AM
Open for suggestions for new methods or other updates. :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: YoonYeonghwa on March 25, 2016, 12:31:44 AM
Nice bot, but i don't think ill be using that after losing so much money on bustabit, eventually making it back but yeah... It's too risky. Your bot looks interesting though.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on March 25, 2016, 03:53:56 AM
Nice bot, but i don't think ill be using that after losing so much money on bustabit, eventually making it back but yeah... It's too risky. Your bot looks interesting though.
I understand you but let me tell you my personal experience the first time I handled btc was about a year ago maybe even less and I was really new and I found satoshimines.com it looked interesting so I started playing with a real hope that I was going to get fast and free btc in the end I lost there about 30 dollars worth btc I knew is not a lot but I was very frustrated about so I went and bought a bit for that site in the end the bot would get me a profit of 1000 bits and then lose 5000 bits so it just had no point in continuing
So I bought this script it was the first time I played on bustabit.com
But this looks quite promising sol I decided to give it a shot first it took time till I figured out which game
Then I decided mode 4 is best to start with by the time I decided I was already 2000 bits in the minus so I transferred another 2000 bits but I lost it again
Asher that I was very frustrated and I decided to see what the problem was and I came to the conclusion is because it does not have enough to bet in order to make up for the losses do it just loses and finish gets stuck
So what I did was I decided that I will try once more with 10 k bits small bet low multiplier and saw great results with it
Now I'm up to net + 45 k
In dollars is not allot Bt don't forget with what I started
So to everyone
I can just wish you good luck





Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 28, 2016, 08:18:18 PM
Nice bot, but i don't think ill be using that after losing so much money on bustabit, eventually making it back but yeah... It's too risky. Your bot looks interesting though.
I understand you but let me tell you my personal experience the first time I handled btc was about a year ago maybe even less and I was really new and I found satoshimines.com it looked interesting so I started playing with a real hope that I was going to get fast and free btc in the end I lost there about 30 dollars worth btc I knew is not a lot but I was very frustrated about so I went and bought a bit for that site in the end the bot would get me a profit of 1000 bits and then lose 5000 bits so it just had no point in continuing
So I bought this script it was the first time I played on bustabit.com
But this looks quite promising sol I decided to give it a shot first it took time till I figured out which game
Then I decided mode 4 is best to start with by the time I decided I was already 2000 bits in the minus so I transferred another 2000 bits but I lost it again
Asher that I was very frustrated and I decided to see what the problem was and I came to the conclusion is because it does not have enough to bet in order to make up for the losses do it just loses and finish gets stuck
So what I did was I decided that I will try once more with 10 k bits small bet low multiplier and saw great results with it
Now I'm up to net + 45 k
In dollars is not allot Bt don't forget with what I started
So to everyone
I can just wish you good luck





Thanks for your feedback.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: FaceTehWind on March 28, 2016, 11:42:56 PM
Heyy, i was just wondering what would be the best gamemode and multiplier and basebet for 30k-40k bits? but awesome script ^^ it's working good so far.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: marc30 on March 28, 2016, 11:59:34 PM
Interesting website and bot. Might take a look at it in the near future.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: grendel25 on March 29, 2016, 02:46:48 AM
I have a question.  I just purchased the bot but I use an anonymous email that doesn't accept attachments.  This wasn't a problem since payivy gives a download link.  But what about updates that might be sent later?  Will I get a download link again?  I hope so since I can't receive attachments.

Thank you.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on March 29, 2016, 05:26:12 AM
I have a question.  I just purchased the bot but I use an anonymous email that doesn't accept attachments.  This wasn't a problem since payivy gives a download link.  But what about updates that might be sent later?  Will I get a download link again?  I hope so since I can't receive attachments.

Thank you.
I can tell you from my experience by me some how I didn't receive the update contacted op with proof of purchase and he sent it to me


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 29, 2016, 07:27:11 AM
I have a question.  I just purchased the bot but I use an anonymous email that doesn't accept attachments.  This wasn't a problem since payivy gives a download link.  But what about updates that might be sent later?  Will I get a download link again?  I hope so since I can't receive attachments.

Thank you.

Normally I sent emails with attachments, but if you can't receive attachments just send me a PM.

I will create a download link that will be available for 24 hours.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: grendel25 on March 30, 2016, 01:49:27 AM
I have a question.  I just purchased the bot but I use an anonymous email that doesn't accept attachments.  This wasn't a problem since payivy gives a download link.  But what about updates that might be sent later?  Will I get a download link again?  I hope so since I can't receive attachments.

Thank you.

Normally I sent emails with attachments, but if you can't receive attachments just send me a PM.

I will create a download link that will be available for 24 hours.

Thank you.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on March 31, 2016, 08:12:24 AM
25% off the price, use coupon code: 25DISCOUNT.

Only 5 codes available! Enjoy :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: franklintdv on March 31, 2016, 10:02:03 PM
I did not get the new version of bustabot in my email, my transaction ID is in your inbox


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 01, 2016, 09:07:10 AM
I did not get the new version of bustabot in my email, my transaction ID is in your inbox

I have sent the updated version to your mailbox, enjoy :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: franklintdv on April 01, 2016, 03:53:08 PM
Thanks, i will test the gamemode 5 and i will put the results here.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: icecube45 on April 01, 2016, 03:54:59 PM
This looks pretty awesome, Interested in getting a copy, need to test out bustabit though.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 05, 2016, 11:36:02 PM
Only 1 code left for 25% discount. Use "25DISCOUNT" as coupon code.

All suggestions for updates are welcome.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: grendel25 on April 10, 2016, 05:39:18 PM
Hello, I bought this when v1 came out. I received an email with v2, but not v3. Do I have to purchase again?

I wouldn't think so.  You should PM the OP with your purchase details.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: JasonXG on April 10, 2016, 08:36:39 PM
How is a bot any better then not using one ? It just means it's automatic that's all.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: grendel25 on April 11, 2016, 01:20:43 AM
How is a bot any better then not using one ? It just means it's automatic that's all.

Bots are great for monotonous and repetitive tasks.  Just depends on the person.  Some people like manual and some people like to set it and forget it.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: factor280 on April 11, 2016, 03:46:18 AM
Just bought this thing. Script works nicely. Thanks to OP for a good automated betting tool!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 11, 2016, 04:51:19 AM
Thanks for all the nice reactions!

I wasn't able to send updates last week, everyone should get the update today to v3 who pm'ed me.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 13, 2016, 04:51:16 PM
Added another 5 coupon codes for 25% discount. Use "25DISCOUNT" as coupon code! :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 15, 2016, 07:24:23 AM
Really great bot. The Pluscoup strategy is amazing tbh. Made over 0.03 bitcoin from just 0.0134 in a matter of 2 days!

Thanks for your feedback :)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 18, 2016, 11:09:48 PM
Online for support and suggestions!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: rod1234 on April 19, 2016, 12:20:34 AM
Online for support and suggestions!
method 4 has a small problem the problem is if you lose it increases then if you lose again it does it again and you get a real big lose do what I suggest is that it should take a break every second or third game and then resume


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 20, 2016, 11:22:26 AM
Online for support and suggestions!
method 4 has a small problem the problem is if you lose it increases then if you lose again it does it again and you get a real big lose do what I suggest is that it should take a break every second or third game and then resume

If you take a break after 3 games, the odds stay the same.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: valiv on April 24, 2016, 06:47:17 PM
Hi all !
Luxel > I sent you a PM for a personnalized script.
Please reply me whether you can or cannot help.
I'll pay you first if you agree.
Thanks


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 26, 2016, 03:36:59 PM
We now use another website for our payments since payivy.com is not available anymore.

BustaBot V3.0 is now available at: https://aiobuy.net/buy/4611

We still accept PayPal and Bitcoins.


Payment emails and transaction id's from payivy are saved, everyone that already purchased the script will still receive free updates and support.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on April 28, 2016, 09:37:36 PM
I am now offering a service for custom made bustabot scripts since I got a lot of requests for it in the last few days.

There are 2 free vouch copies available, check the thread here: https://bitcointalk.org/index.php?topic=1453985.0



Title: Re: BustaBot | #1 script for bustabit.com
Post by: grendel25 on May 06, 2016, 01:04:41 AM
I noticed in the script it says that the Random Break feature "will not happen on a loss streak".  I there some way to fix that so that it will take a random break whenever regardless of win or loss?


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on May 30, 2016, 08:21:48 PM
I noticed in the script it says that the Random Break feature "will not happen on a loss streak".  I there some way to fix that so that it will take a random break whenever regardless of win or loss?

It's not implemented, I can change the code and send it to you if you want.

Let me know if you are still interested.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Ethey on June 26, 2016, 01:38:13 AM
Can there any User please report over Payment profe or maybe a Picture of good Earnings from one Day?

Iam interested in buying a copy of theese.
Please let me know

regards


Title: Re: BustaBot | #1 script for bustabit.com
Post by: tomaso88 on July 05, 2016, 03:00:49 PM
Can there any User please report over Payment profe or maybe a Picture of good Earnings from one Day?

Iam interested in buying a copy of theese.
Please let me know

regards

Hey I can vouche for this script, I turned $5 in to $170 on my first day using the bot.

What I will say though is it's not 100% guarantee to earn you money, dont get me wrong ive been making heaps but you have to keep an eye on it depending which method you are using just to make sure it doesn't lose to much.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: StarBruck on July 10, 2016, 07:27:58 PM
Hey,

I could use a little help with the script. When I use the pluscoup option, the base bet stays the same, even when losing. So if it bets 2 a round, it will bet 2 constantly. I have checked the pluscoup options and they should work. I have no idea why it doesn't, but if someone can help me, it would be greatly appreciated.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: jrdudley20 on November 11, 2016, 03:33:17 PM
Is this bot still available anywhere? The link supplied at the beginning of this thread is broken.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 04, 2016, 10:28:56 PM
Is this bot still available anywhere? The link supplied at the beginning of this thread is broken.

I've recently updated the payment link.


I am still receiving a lot requests for custom scripts for bustabit, please send me a pm if you're interested.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: icecum on March 04, 2017, 10:05:51 AM
i think coupon 5dollar is expired LOL  ;D


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Eildosa on May 31, 2017, 02:39:59 PM
Is this dead?


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Space3003 on June 12, 2017, 10:49:05 AM
cannot buy anymore:
HexPay is shutting down on May 1st, 2017

If you are seeing this page, HexPay is no longer online.

anyway script s here : https://bot.seuntjie.com/scripts.aspx?id=36
setting 4: oscars-grind-system-pluscoup-progression
not much saver as martingale , you also need a large bankroll to cover the progression  losing bets in this system.


Title: Re: BustaBot | #1 script for bustabit.com
Post by: ViceOfBTC21 on June 18, 2017, 01:32:34 PM
I figured out how to run script on shell/VPS/any other server.
Linux skill requirement: Basic
1) Buy server. You just need 512 MB RAM if you want to use XFCE or LXDE. Personally I'm using XFCE even on gaming computer.
2) When you bought, configure new sudo account. Do not use system on root! Use it only to set up safe user account!
3) If you have <1 GB RAM, enable swap. Set swappiness to low setting. Also, set cache pressure to something conservative. You don't need supercomputer, but it's recommended.
4) Install graphical interface that works over VNC. Don't use X11 since sshd kills programs when you disconnect.
5) Install web browser (I prefer Chrome/ium on desktops, Firefox on servers) and upload bustabit script to server.
6) Login to graphical interface and log in to bustabit.com. Run script and display JavaScript console. Lock your screen before you disconnect. This will protect you from hackers as second line of defense when they will bypass firewall and connect to them directly.

I hope you have set your firewall to allow only incoming connections over SSH. If you want to modify file, do it over SSH or SFTP. VNC is too laggy so useful only to very basic changes or in emergency. I'm planning to write script that will configure this settings for you. You just need to upload to server and run it.

Lots higher return than HYIPs but also riskier. I've got on Pluscoup x1.25 awesome return (more than 20% a day)! Thank you!

My winning settings:
Deposit 1000 bits (you are using it as margin, use local machine and don't trust with server provider) and run this script for slow but sure 3000 bits:
Code:
var GameMode = 4;				//Default: 5		1 = Martingale, 2 = Paroli, 3 = D’Alembert, 4 = Pluscoup, 5 = Recovery
var MaxProfitMode = true; //Default: true If this setting is true, you will always bet ("PercentOfTotal" * your balance), if this setting is false you will just bet your BaseBet.
var PercentOfTotal = 0.1; //Default: 0.1 If MaxProfitMode is true, your BaseBet will always be ("PercentOfTotal" * your balance). Default 0.1% of your total balance.
var BaseBet = 100; //Default: 100 This is the value of your first bet (in bits) when MaxProfitMode is set to false.
var Multiplier = 1.25; //Default: 1.05 This is the multiplier where the bot will stop (not on GameMode 2 and 3).
var dalembert = 1; //Default: 1 When you play D'alembert you will raise your bet after a loss or lower your bet after a win with this amount.
var MaxBet = 1500; //Default: 1000000 The bot will never bet more than this amount (in bits).
var MaxProfit = 3000; //Default: 100000 The bot will stop when your total balance is higher that this value (in bits).
var MaxLoss = 25000; //Default: 25000 You will never lose more than this amount (in bits). If a bet would exceed this amount, the bot stops automatically.
var RandomBreak = 35; //Default: 0 Before the bot places a bet it generates a random number between 0 and 100, if that number is lower than "RandomBreak" the bot will take a break for 1 game. (This will not happen on a loss streak )
I did some calculations on script simulator and tried on reality and it works off the bonuses. Even though it's working, I'm publishing to prove that this bot can earn 5000 bits. Remember that you are still gambling and I take no responsibility for losing any funds. It's best not to gamble at last resort.

This strategy won bad train battle with server and this margin helped in winning that battle. You can get as high as 10% of initial balance, but still left script running. Never stop this script or reboot computer unless bet is =< 3 units. Wait until it will get =< 3 units. This is why I recommend using remote server for this purpose. I almost tripled my 1000 bits, running this script for 2 days and spent only 145 bits for running server. (Minimum top up is 10$, but price is time-measured)


Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on June 29, 2017, 12:34:53 AM
Currently the sales website is down and the bot isn't for sale anymore.

Before publishing it again i want to create a couple of new game modes and functions.

If someone of you have some nice ideas for the updated bustabot, please send them to me and I will provide you with a free copy once it's released!

Luxel


Title: Re: BustaBot | #1 script for bustabit.com
Post by: redhat39 on June 29, 2017, 02:31:17 AM
Awesome, I don't have any ideas since I'm new to Bustabit.

I wanted to buy your script and found it wasn't for sale.

I did manage to find an old version on the net somewhere and it was amazing. Can't wait to see what you do with the new version. :)

Currently the sales website is down and the bot isn't for sale anymore.

Before publishing it again i want to create a couple of new game modes and functions.

If someone of you have some nice ideas for the updated bustabot, please send them to me and I will provide you with a free copy once it's released!

Luxel


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Sansugo on July 01, 2017, 11:51:33 PM
When will the script be released?


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Gr33nR00t on August 03, 2017, 08:21:44 PM
He's a fucking swindler.

http://imgur.com/N52Q1No
http://imgur.com/eS0ozm7

He receives money from me and he has no answer.
Everyone, please be careful.





Title: Re: BustaBot | #1 script for bustabit.com
Post by: Gr33nR00t on August 03, 2017, 09:17:28 PM
He's a fucking swindler.

http://imgur.com/N52Q1No
http://imgur.com/eS0ozm7

He receives money from me and he has no answer.
Everyone, please be careful.



Title: Re: BustaBot | #1 script for bustabit.com
Post by: luxel on December 26, 2017, 07:18:52 PM
He's a fucking swindler.

http://imgur.com/N52Q1No
http://imgur.com/eS0ozm7

He receives money from me and he has no answer.
Everyone, please be careful.



Be carefull, that is not my skype account!


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Iliektuh on February 21, 2018, 08:11:43 AM
Hey,

What do you do if you lose x1.25 while playing with Pluscoup?

For example,

I bet 1000 mXrb on Raigames,

Game 1 - 1000 bet, 250 won
Game 2 - 1000 bet, 250 won
Game 3 - 1000 bet, 1000 lose

So?

I bet 1000 again if I lose, if I win that 1000, I bet 2000, if I win, I bet 2500 or 3000 for getting my first bet back. But it seems it is not good idea.

Any recommendation?


Title: Re: BustaBot | #1 script for bustabit.com
Post by: chadherrella on June 30, 2018, 06:58:09 AM
Hey,

What do you do if you lose x1.25 while playing with Pluscoup?

For example,

I bet 1000 mXrb on Raigames,

Game 1 - 1000 bet, 250 won
Game 2 - 1000 bet, 250 won
Game 3 - 1000 bet, 1000 lose

So?

I bet 1000 again if I lose, if I win that 1000, I bet 2000, if I win, I bet 2500 or 3000 for getting my first bet back. But it seems it is not good idea.

Any recommendation?

like the OP said...you lose stay at same bet...and bet again...you win...increase bet by one....so your bets are wrong, it should be:

game 1 - 1000 bet, 250 won
game 2 - 1001 bet, 251,25 won
game 3 - 1002 bet, 1002 lose

but you have to keep going...keep adding +1 when you win, stay when you lose...watch your graph...when you graph shows uptrend then stop...and start at your base bet.

i started at 1 bit as base bet.  it took me up to a bet of 50 bits to see profit. 


Title: Re: BustaBot | #1 script for bustabit.com
Post by: Cryptopoc on September 25, 2018, 05:43:16 PM
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. :)

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!
"""
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
"""
ouch.. was he able to recover on a new account?