Bitcoin Forum
April 24, 2024, 02:43:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: A non-martingale PrimeDice script! So far so good!  (Read 1472 times)
WynBrew (OP)
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 06, 2017, 05:10:57 PM
 #1

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
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713969837
Hero Member
*
Offline Offline

Posts: 1713969837

View Profile Personal Message (Offline)

Ignore
1713969837
Reply with quote  #2

1713969837
Report to moderator
1713969837
Hero Member
*
Offline Offline

Posts: 1713969837

View Profile Personal Message (Offline)

Ignore
1713969837
Reply with quote  #2

1713969837
Report to moderator
leex1528
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


View Profile
September 06, 2017, 08:54:26 PM
 #2

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.
WynBrew (OP)
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 07, 2017, 07:19:37 AM
 #3

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
OddEvenBets.com
Full Member
***
Offline Offline

Activity: 1022
Merit: 100



View Profile WWW
September 07, 2017, 07:31:11 AM
 #4

Risk 1%.. How it possible dude?  Grin
Better manually play.
Bot is not magic in gambling!

███████████████████████████████████████
OddEvenBets - it's not my domain now! I lost it.
 
████████████████████████████████████████████████████████
HKGolden
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
September 07, 2017, 08:02:33 AM
 #5

thanks for giving away for free, however, do you have any stats which can be shared, if you don't mind.  Wink
MinerHQ
Legendary
*
Offline Offline

Activity: 1456
Merit: 1023


View Profile
September 07, 2017, 08:16:45 AM
 #6

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.
piloder
Legendary
*
Offline Offline

Activity: 966
Merit: 1006


View Profile
September 07, 2017, 05:53:04 PM
 #7

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.
LuanX3
Hero Member
*****
Offline Offline

Activity: 756
Merit: 505



View Profile
September 07, 2017, 07:12:31 PM
 #8

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?
iluvbitcoins
Legendary
*
Offline Offline

Activity: 2198
Merit: 1150


Freedom&Honor


View Profile
September 07, 2017, 07:39:31 PM
 #9

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

Looking for a signature campaign.
Javi_Anibarro
Sr. Member
****
Offline Offline

Activity: 1526
Merit: 282

tBTC - https://dapp.tbtc.network/


View Profile
September 08, 2017, 05:52:16 AM
 #10

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
B4RF
Hero Member
*****
Offline Offline

Activity: 813
Merit: 507


View Profile
September 08, 2017, 06:14:27 AM
 #11

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.


▄▄▄████████▄▄▄
▄██████████████████▄
▄██████████████████████▄
██████████████████████████
████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
████████████████████████████
██████████████████████████
▀██████████████████████▀
▀██████████████████▀
▀▀▀████████▀▀▀
   ███████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
██████████
███████
BTC  ◉PLAY  ◉XMR  ◉DOGE  ◉BCH  ◉STRAT  ◉ETH  ◉GAS  ◉LTC  ◉DASH  ◉PPC
     ▄▄██████████████▄▄
  ▄██████████████████████▄        █████
▄██████████████████████████▄      █████
████ ▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄ ████     ▄██▀
████ █████ ██████ █████ ████    ▄██▀
████ █████ ██████ █████ ████    ██▀
████ █████ ██████ █████ ████    ██
████ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀ ████ ▄██████▄
████████████████████████████ ████████
███████▀            ▀███████ ▀██████▀
█████▀                ▀█████
▀██████████████████████████▀
  ▀▀████████████████████▀▀ 
✔️DICE           
✔️BLACKJACK
✔️PLINKO
✔️VIDEO POKER
✔️ROULETTE     
✔️LOTTO
klf
Legendary
*
Offline Offline

Activity: 1344
Merit: 1000


View Profile
September 08, 2017, 12:23:33 PM
 #12

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.
Mike Mayor
Hero Member
*****
Offline Offline

Activity: 966
Merit: 535


View Profile
September 08, 2017, 05:05:08 PM
 #13

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.

Fredomago
Legendary
*
Offline Offline

Activity: 2954
Merit: 1050


Leading Crypto Sports Betting & Casino Platform


View Profile
September 08, 2017, 05:10:42 PM
 #14

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,.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
PMmesexycoins
Full Member
***
Offline Offline

Activity: 546
Merit: 102

Stake's discord https://discord.gg/cZhK9vp


View Profile
September 08, 2017, 05:19:42 PM
Last edit: September 08, 2017, 07:22:23 PM by PMmesexycoins
 #15

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?
Zocadas
Hero Member
*****
Offline Offline

Activity: 909
Merit: 508


View Profile
September 09, 2017, 07:38:12 AM
 #16

Hi I am not a programmer but I have a bot running. Maybe one can just tell me the adjustment of this script,
MinerHQ
Legendary
*
Offline Offline

Activity: 1456
Merit: 1023


View Profile
September 10, 2017, 05:07:33 AM
 #17

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.

Lizzie_Girl
Full Member
***
Offline Offline

Activity: 332
Merit: 103


View Profile
September 10, 2017, 06:24:32 PM
 #18

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.
Skarner21
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500

Massive price drop coming...


View Profile WWW
September 10, 2017, 06:36:38 PM
 #19

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..

Make crypto as your bank.
Oilacris
Hero Member
*****
Offline Offline

Activity: 3010
Merit: 611


Crypto Swap Exchange


View Profile
September 10, 2017, 07:20:07 PM
 #20

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.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Pages: [1] 2 »  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!