Pages:
Author

Topic: A non-martingale PrimeDice script! So far so good! - page 2. (Read 1510 times)

hero member
Activity: 966
Merit: 535
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.
klf
legendary
Activity: 1344
Merit: 1000
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.
hero member
Activity: 813
Merit: 507
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.
sr. member
Activity: 1540
Merit: 282
tBTC - https://dapp.tbtc.network/
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
legendary
Activity: 2198
Merit: 1150
Freedom&Honor
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
hero member
Activity: 756
Merit: 505
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?
legendary
Activity: 966
Merit: 1006
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.
legendary
Activity: 1456
Merit: 1023
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.
sr. member
Activity: 308
Merit: 250
thanks for giving away for free, however, do you have any stats which can be shared, if you don't mind.  Wink
full member
Activity: 1022
Merit: 100
Risk 1%.. How it possible dude?  Grin
Better manually play.
Bot is not magic in gambling!
newbie
Activity: 2
Merit: 0
Ok I have tried my best to provide a bit more details  Grin

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
hero member
Activity: 784
Merit: 1000
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.
newbie
Activity: 2
Merit: 0
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!  Grin

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    Smiley

Kind regards and may you beat the dice!  Cool

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
Pages:
Jump to: