Bitcoin Forum

Economy => Gambling => Topic started by: WynBrew on September 06, 2017, 05:10:57 PM



Title: A non-martingale PrimeDice script! So far so good!
Post by: WynBrew on September 06, 2017, 05:10:57 PM
Good day All!

I have made a stable LAU script (for DiceBot) after a month of testing everything from martingale (always lose) to probability sniping (which always made you lose your whole balance in two losing bets). The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases. It profits on 3x winning streaks (4 and up seems to be more unstable).
Feel free to edit the script!  ;D

I am giving it away for free. If you find improvements please do share. And if you do make a good bunch of BTC also feel free to tip me @ 1ErzznzHFFNXkbpakgN8GvZAi9GEbzGBsV    :)

Kind regards and may you beat the dice!  8)

WynBrew

Code:
chance=50
basebet=0.00000001 --only for starters
nextbet=basebet
mult=1.5 --win multiplier
rollnum=0 --set starting value for max rolls
rollmax=1000 --max rolls
bethigh=true


function dobet()

basebet=balance*0.01 --comment out if too risky for you

if lastBet.Roll <= 50 then --switches high/low from prev roll
bethigh=false
else
bethigh=true
end

rollnum=rollnum + 1
if rollnum==rollmax then
stop()
else
  if !win then
  nextbet=0
  else
    if currentstreak==1 then
    nextbet=basebet
    else
      if currentstreak==4 then
      nextbet=0
      else
        if currentstreak==2 then
        bethigh=!bethigh
        nextbet=previousbet*mult
        else
        nextbet=previousbet*mult
        end
      end
    end
  end
end
end


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: leex1528 on September 06, 2017, 08:54:26 PM
Its interesting to say the least.  I would like to see a simulation of a large amount of rolls.  I am not sure if that is pseudo code or not but you could probably comment it a little bit better to make it so we don't have to go up and down in your code.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: WynBrew on September 07, 2017, 07:19:37 AM
Ok I have tried my best to provide a bit more details  ;D

Code:
--Script defaults to betting zero on losing streaks, and profits on 3 winning streaks (I found 4+ winning streaks to be more unstable).
--I am giving script away for free. If you find improvements please do share! And if you do make a good bunch of BTC also feel free to tip me @ 1ErzznzHFFNXkbpakgN8GvZAi9GEbzGBsV

--Initial conditions
chance=50 --win chance

basemult=0.01 --risks 1% of balance
basebet=balance*basemult
nextbet=basebet

mult=1.5 --win multiplier
rollnum=0 --set starting value for max rolls
rollmax=1000 --max rolls
bethigh=true --starts at betting high
winstreak=3 --0 bet after win streak of...


function dobet()

basebet=balance*basemult --adjusts for scaling purposes

if lastBet.Roll <= 50 then --switches high/low from prev roll
bethigh=false
else
bethigh=true
end

rollnum=rollnum + 1
if rollnum==rollmax then
stop()
else
  if !win then
  nextbet=0
  else
    if currentstreak==1 then
    nextbet=basebet
    else
      if currentstreak==(winstreak+1) then
      nextbet=0
      else
        if currentstreak==2 then
        bethigh=!bethigh
        nextbet=previousbet*mult
        else
        nextbet=previousbet*mult
        end
      end
    end
  end
end
end


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: OddEvenBets.com on September 07, 2017, 07:31:11 AM
Risk 1%.. How it possible dude?  ;D
Better manually play.
Bot is not magic in gambling!


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: HKGolden on September 07, 2017, 08:02:33 AM
thanks for giving away for free, however, do you have any stats which can be shared, if you don't mind.  ;)


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: MinerHQ on September 07, 2017, 08:16:45 AM
Based on my experience no script or method will lose for long in dice game because some how you will end up losing all your bankroll for sure. That's why I prefer to play this game manually until I get bored or my minimum bankroll finish. In that way, I can at least enjoy my time instead just use any bots and losing money.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: piloder on September 07, 2017, 05:53:04 PM
Even though your strategy/script is not martingale, it can't guarantee that you will only make profit with this one.
Do you have any screenshot of actual gameplay and results which you can share here? You have only shared plain script without any real world simulation or stats.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: LuanX3 on September 07, 2017, 07:12:31 PM
Even though your strategy/script is not martingale, it can't guarantee that you will only make profit with this one.
Do you have any screenshot of actual gameplay and results which you can share here? You have only shared plain script without any real world simulation or stats.

Even if he does share those results, it doesn't matter, because in the end it will just lose and will never win in the long run. No gambling script, method, strategy or whatever action that require repetition will work in gambling. If something like that ever did work, then don't you guys think that the casinos would have closed a long time a go because there was a way to cheat the system through these methods?


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: iluvbitcoins on September 07, 2017, 07:39:31 PM
Even though your strategy/script is not martingale, it can't guarantee that you will only make profit with this one.
Do you have any screenshot of actual gameplay and results which you can share here? You have only shared plain script without any real world simulation or stats.

Even if he does share those results, it doesn't matter, because in the end it will just lose and will never win in the long run. No gambling script, method, strategy or whatever action that require repetition will work in gambling. If something like that ever did work, then don't you guys think that the casinos would have closed a long time a go because there was a way to cheat the system through these methods?

Ofcourse it doesn't gurantee profit
You will most definitely lose gambling manually too in the long term
Scripts are made to automate some of your gambling moves, so you don't have to do everything manually, not to guarantee profit


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Javi_Anibarro on September 08, 2017, 05:52:16 AM
it is gambling,
who can guarantee you a profit ? nobody!
if someone can do that,there'll be no one gonna open a gambling/casino site.
because no matter what the house will be win in the end.
so,it's pure of luck and if you're using automatic bet iam 100% you will get busted.
all of your bankroll will be wiped out by the house


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: B4RF on September 08, 2017, 06:14:27 AM
This script does only profit on 2 or 3 wins in a row, am I right?

Everything besides that it does only some prerolls which doesnt do shit.
You dont prevent hitting losing streaks, your losing streaks simply look different.

loss win loss win loss win loss win ...

^This is a losing streak for your script because you would bet 0 on every win and 1/100 of your bankroll on every loss.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: klf on September 08, 2017, 12:23:33 PM
it is gambling,
who can guarantee you a profit ? nobody!
if someone can do that,there'll be no one gonna open a gambling/casino site.
because no matter what the house will be win in the end.
so,it's pure of luck and if you're using automatic bet iam 100% you will get busted.
all of your bankroll will be wiped out by the house

True, this dice game result predicting is impossible and whatever your script or you do finally house is going to win. The more one gamble or play this game then more chances of losing money. The only way you can try is by having an unlimited bankroll but that is not possible so winning or making a profit this game also not possible.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Mike Mayor on September 08, 2017, 05:05:08 PM
Yolodice let's you use your own script, you can use api input. Why don't you try making this bot for Yolodice ?

I have a concern though. You have only 2 posts and you want people to download something that has to do with money. That seems a bit suspicious don't you think ? I would exercise extreme caution when dealing with this sort of thing. Please be careful and aware of what you download. Perhaps someone can download and run this bot in a safe environment and report back ? That way others will know. If the OP is legit he will not mind.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Fredomago on September 08, 2017, 05:10:42 PM
Good for some trial and see if this script will generate some good earnings, thanks for sharing OP its up to those riskier to follow and use this as we knew that inside gambling especially in a dice game its all about luck and nothing else,.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: PMmesexycoins on September 08, 2017, 05:19:42 PM
The idea for posts and videos like this one is to milk the donations. Any settings has near 50% chance of doubling your balance after all, so, some of the users, the lucky ones that succeed, might donate after it "worked" for them. There's also the possibility of earning from referrals with these.

Anyone that can figure out a method to bring the house down could be doing just that themselves. Why bother making posts like this one and try to get donations now?


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Zocadas on September 09, 2017, 07:38:12 AM
Hi I am not a programmer but I have a bot running. Maybe one can just tell me the adjustment of this script,


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: MinerHQ on September 10, 2017, 05:07:33 AM
Good for some trial and see if this script will generate some good earnings, thanks for sharing OP its up to those riskier to follow and use this as we knew that inside gambling especially in a dice game its all about luck and nothing else,.

You mentioned that some good earnings that means did you already checked this script?

I never run any bots for dice game expect using auto bet options which site usually provides. I don't believe that in dice game we can make money but we can spend our time by exploring different options in a dice game.



Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Lizzie_Girl on September 10, 2017, 06:24:32 PM
I wouldn't trust this. Also bots don't even work. It's gamblers fallacy. The bot just does everything automatically so you don't have to.
So what's the point of playing then if you not even there.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Skarner21 on September 10, 2017, 06:36:38 PM
How to use this do i need to copy paste this script into developer mode of chrome?
Do you have other script that we can use in yolodice looks like i need some script to do some experiment doing some martingale bets..
And why you call it non martingale? it is because after 3 winning streak it will turn into normal bet again. just curious..


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Oilacris on September 10, 2017, 07:20:07 PM
How to use this do i need to copy paste this script into developer mode of chrome?
Do you have other script that we can use in yolodice looks like i need some script to do some experiment doing some martingale bets..
And why you call it non martingale? it is because after 3 winning streak it will turn into normal bet again. just curious..
It would really be need to post those codes on developer mode (Pressing F12) to apply those scripts.I have seen this thing which you are waiting for 3 consecutive loss and going back to base bet. Some said it is working but i dont really trust up any scripts on this online world.It might still be worth to try this one but dont expect too much on making money.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: PMmesexycoins on September 10, 2017, 10:41:05 PM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

No, that's not what it does. Anyway, with any strat, you are always hoping the numbers work out in your favor. In the very long run there's ought to be little difference between one and another. It's all in getting lucky.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: MinerHQ on September 11, 2017, 01:50:45 AM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

If any script can know these things in advance then you wouldn't have seen any online gambling sites by now because everyone will buy these scripts and make all casinos bankroll empty.

These scripts can limit your continuous losses if you set the maximum continuous losses in your bot or script but it will not completely help you from losing money.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Fredomago on September 11, 2017, 04:33:49 AM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

If any script can know these things in advance then you wouldn't have seen any online gambling sites by now because everyone will buy these scripts and make all casinos bankroll empty.

These scripts can limit your continuous losses if you set the maximum continuous losses in your bot or script but it will not completely help you from losing money.
and if there's such kind of script for sure the gambling owners will adjust with that and make sure their bankroll still safe, a gambling site is not a charitable
business they build it to gain more from those addicted gamblers that's why its really hard to take advantage.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: RealPhotoshoper on September 11, 2017, 05:02:36 AM
I wouldn't trust this. Also bots don't even work. It's gamblers fallacy. The bot just does everything automatically so you don't have to.
So what's the point of playing then if you not even there.
Yeaaa , i only see that this is just a random pattern .
He throw it here and think that it is a winning strategy , works for him but doesn't mean will work for you too.
Dice is a completely random game with only luck could help you to win , that is my opinion. Goodluck!


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: kevpantof on September 12, 2017, 04:33:13 AM
it is gambling,
who can guarantee you a profit ? nobody!
if someone can do that,there'll be no one gonna open a gambling/casino site.
because no matter what the house will be win in the end.
so,it's pure of luck and if you're using automatic bet iam 100% you will get busted.
all of your bankroll will be wiped out by the house
You are definitely right. This is what almost all the gamblers sitting around the globe believe in. As far as money is coming in their accounts, they are very much happy with it. I think it is all and all their luck which comes into play, there is no other rocket science which can earn you money in gambling.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: btc-facebook on September 12, 2017, 05:19:23 AM
Good day All!

I have made a stable LAU script (for DiceBot) after a month of testing everything from martingale (always lose) to probability sniping (which always made you lose your whole balance in two losing bets). The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases. It profits on 3x winning streaks (4 and up seems to be more unstable).
Feel free to edit the script!  ;D

...

Is it possible for me to doing martiangle 33% ?

it is gambling,
who can guarantee you a profit ? nobody!
if someone can do that,there'll be no one gonna open a gambling/casino site.
because no matter what the house will be win in the end.
so,it's pure of luck and if you're using automatic bet iam 100% you will get busted.
all of your bankroll will be wiped out by the house
You are definitely right. This is what almost all the gamblers sitting around the globe believe in. As far as money is coming in their accounts, they are very much happy with it. I think it is all and all their luck which comes into play, there is no other rocket science which can earn you money in gambling.

People may experiment with their own gameplay in order to get profit but yes that's true , you need many method in order to get profit since you will loss eventually in long run if you're using same method


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: BTCevo on September 14, 2017, 12:11:43 AM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

If any script can know these things in advance then you wouldn't have seen any online gambling sites by now because everyone will buy these scripts and make all casinos bankroll empty.

These scripts can limit your continuous losses if you set the maximum continuous losses in your bot or script but it will not completely help you from losing money.
and if there's such kind of script for sure the gambling owners will adjust with that and make sure their bankroll still safe, a gambling site is not a charitable
business they build it to gain more from those addicted gamblers that's why its really hard to take advantage.

You can't take any advantage due to face up with house edge, what you really need is some luck which can give you better result of your profit. And the way to make this happens is by playing with some strategy if you are willing to do. But with some case most of them are too greedy and lead them into losing everything in that instant. This is the most case of every gambler


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: milewilda on September 14, 2017, 02:33:36 PM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

If any script can know these things in advance then you wouldn't have seen any online gambling sites by now because everyone will buy these scripts and make all casinos bankroll empty.

These scripts can limit your continuous losses if you set the maximum continuous losses in your bot or script but it will not completely help you from losing money.
and if there's such kind of script for sure the gambling owners will adjust with that and make sure their bankroll still safe, a gambling site is not a charitable
business they build it to gain more from those addicted gamblers that's why its really hard to take advantage.

You can't take any advantage due to face up with house edge, what you really need is some luck which can give you better result of your profit. And the way to make this happens is by playing with some strategy if you are willing to do. But with some case most of them are too greedy and lead them into losing everything in that instant. This is the most case of every gambler
When someone that they do have some weapon on playing gambling like scripts/bots etc. then most of them do really thinking off already that they can able to make money and do have already an edge against on the site which they are able to make money and this is the time that their betting would be careless because of their confidence which would commonly end up on losing instead.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: adaseb on September 15, 2017, 05:05:45 AM
Listen this still won't work due to the fact that there is a house edge, it would actually work the opposite way if you were running the casino maybe.

Go on google and find some "dice simulator" put in a house edge and you will see whatever stragety you use, after a certain amount of rolls you will always go bust. The higher the house edge the faster you go bust.



Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: BTCevo on September 16, 2017, 05:24:29 AM
The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases.
I am not able to understand what you are saying here?

The script knows in advance when you will have a losing streak and will stop betting?

If any script can know these things in advance then you wouldn't have seen any online gambling sites by now because everyone will buy these scripts and make all casinos bankroll empty.

These scripts can limit your continuous losses if you set the maximum continuous losses in your bot or script but it will not completely help you from losing money.
and if there's such kind of script for sure the gambling owners will adjust with that and make sure their bankroll still safe, a gambling site is not a charitable
business they build it to gain more from those addicted gamblers that's why its really hard to take advantage.

You can't take any advantage due to face up with house edge, what you really need is some luck which can give you better result of your profit. And the way to make this happens is by playing with some strategy if you are willing to do. But with some case most of them are too greedy and lead them into losing everything in that instant. This is the most case of every gambler
When someone that they do have some weapon on playing gambling like scripts/bots etc. then most of them do really thinking off already that they can able to make money and do have already an edge against on the site which they are able to make money and this is the time that their betting would be careless because of their confidence which would commonly end up on losing instead.

That is somehow so true, becauase the real weapon is bankroll, the higher your bankroll the longer that you can play, mean while most of them are really depends on luck with such low bankroll. This is what mostly people do wrong

Btw about this script, anyone already tried it yet and got any good result here? Because I do not see anyone posted it yet. And btw how to work using this script? Because I am not a coder but may be I might try it with some lower bankroll.


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: Aengus on September 16, 2017, 07:44:26 AM
Primedice not PrimeDice!

Good to see some awesome scripts being made, looks funky to say the least :D


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: monica69 on September 16, 2017, 07:51:36 AM
How to use this do i need to copy paste this script into developer mode of chrome?
Do you have other script that we can use in yolodice looks like i need some script to do some experiment doing some martingale bets..
And why you call it non martingale? it is because after 3 winning streak it will turn into normal bet again. just curious..

you need to have seuntjie bot and go to programmer mode...copy and past there...

anyone have try this script? work?


Title: Re: A non-martingale PrimeDice script! So far so good!
Post by: moonbind on November 17, 2018, 08:49:26 AM
it has hold it's worth for 10,000 hands and that is a good start [in my practice!]:

http://prntscr.com/ljgbuz

i've seen a few more complex scripts bust much early with death-dive into red bad-streak!