Bitcoin Forum
May 03, 2024, 06:55:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 »  All
  Print  
Author Topic: DiceBot Script!  (Read 716 times)
HiDevin (OP)
Member
**
Offline Offline

Activity: 226
Merit: 30

so.. hru?


View Profile
March 18, 2018, 02:09:29 AM
 #1

Hey, just sharing a dicebot script, that I tweaked from stretched preroll martingale, and got the idea from 505, and MathWins mathingale Cheesy

I've made around 0.19 doge from 0.01 in one day so I hope you guys win too, just so you know, that no script will make you money forever.

EDIT: Please tip seuntjie if you do win!, he's the one who created dicebot and the script, I just put my settings in   Grin

Anyways, explanation of the script.

It increases the base bet by 2.5x every 8 turns, on a 8x multiplier, so each   I.E (1,1,1,1,1,1,1,1)(8 bets) loss is called a plateau.

When hitting in the beginning of a plateau, you gain massive profit, previous to the last plateau.

When hitting at the middle or the end of a plateau, you either break even or lose small on a win.
========================
For the best case scenario, You lost 24 times in a row (3 plateaus ), and hit on the 25th try (beginning of the 4th plateau).
(1* 8 ) + (2.5*8 ) + (6.25*8 ) = 78 units lost.
Now the next bet is 6.25*2.5 = 15.625
(15.625*8 ) = 125 units won
47 units profit, because you hit at the beginning of a plateau.
=======================
For the worst case scenario, You lost 23 times in a row(3rd plateau about to end ), and hit on the 24th try.(end of 3rd plateau)
(1* 8 ) + (2.5*8 ) + (6.25* 7) = 71.75 units lost
Our next bet is 6.25, because we didn't reach the 4th plateau.
(6.25*8 ) = 50 units won
-21.75 units profit.
========================
Basically, if you lose a lot, but hit in the beginning of a plateau, you will hit a lot.

If you lose a lot and hit at the end or middle of a plateau, you lose small, or break even.

Anyways, enough explaining, here's the script Smiley

Code:
--LOLDevin's modified mathingale.
--Thanks to Seuntjie, because of this script,
-- orangutan, and MathWins for this idea!

chance=12.38
multiplier=2.5
base=0.00002 -- balance/1000-10000
preroll=1
prebet=0.00000001
stretch=8
function dobet()
 tmp = currentstreak+preroll
 if win then
  nextbet=prebet
 else
  if tmp == 0 then
   nextbet=base
  end
  if tmp < 0 then
   if tmp %stretch == 0 then
    nextbet=previousbet*multiplier
   end
  end
 end
end
1714762510
Hero Member
*
Offline Offline

Posts: 1714762510

View Profile Personal Message (Offline)

Ignore
1714762510
Reply with quote  #2

1714762510
Report to moderator
1714762510
Hero Member
*
Offline Offline

Posts: 1714762510

View Profile Personal Message (Offline)

Ignore
1714762510
Reply with quote  #2

1714762510
Report to moderator
1714762510
Hero Member
*
Offline Offline

Posts: 1714762510

View Profile Personal Message (Offline)

Ignore
1714762510
Reply with quote  #2

1714762510
Report to moderator
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
wxa7115
Hero Member
*****
Offline Offline

Activity: 2716
Merit: 704



View Profile
March 31, 2018, 05:10:57 PM
 #2

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
milewilda
Legendary
*
Offline Offline

Activity: 3108
Merit: 1127



View Profile
March 31, 2018, 06:33:27 PM
 #3

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.
When he tried up to share this dicescript he had already the disclaimer which is somehow a decent way to tell gamblers that this script doesnt last forever even on the first use it can really bust up. 0.19 come from 0.01 doge on an entire day? That would be too long and i have seen those calculations its quiet impressive and do appreciate on the effort on what you have written on here but all of us know playing dice doesnt really need for you to take seriously on making money,instead on using complicated scripts then why wont just play dice on random basis? Sooner or later it will bust up even you do make use of scripts or not.

AceFairy
Newbie
*
Offline Offline

Activity: 100
Merit: 0


View Profile
October 06, 2019, 08:26:56 AM
 #4

NOTE: i have made settings to use for 28,000 DOGE, so check&change according to your coin and balance!

added stoploss and target conditions, so that it won't lose more than you are willing to sacrifice!
script works and makes steady increase [but keep in mind it is gonna bust at one point!]:
Code:
--https://bitcointalk.org/index.php?topic=3149724.0

--LOLDevin's modified mathingale.
--Thanks to Seuntjie, because of this script,
-- orangutan, and MathWins for this idea!

chance     = 12.38
multiplier = 2.5
base       = balance/100000
preroll    = 1
prebet     = 0.00000333
stretch    = 8

target   = 30000    --balance*1.02
stoploss = (balance)*0.99

function dobet()

if balance-nextbet <= stoploss and stoploss ~= 0 then
        print("\n\nStopLoss Reach\n\n")
        resetseed()
        resetstats()
        nextbet = 0.00000001    --0.00000001    (balance-sav)/div--(balance*0.01)   --+(100-(balance/100))
        stop()
        ching()
        end
       
if balance >= target then
    stop()
    print("")
    print("")
    print("=====================")
    print("TARGET REACHED!!!")
    print("Profit : "..string.format("%.8f", profit))
    print("Final Balance : "..string.format("%.8f", balance))
    print("=====================")
    print("")
    print(" ") 
end
       
 tmp = currentstreak+preroll
 if win then
  nextbet=prebet
 else
  if tmp == 0 then
   nextbet=base
  end
  if tmp < 0 then
   if tmp %stretch == 0 then
    nextbet=previousbet*multiplier
   end
  end
 end
end

pakhitheboss
Hero Member
*****
Offline Offline

Activity: 2114
Merit: 774


Top Crypto Casino


View Profile WWW
October 06, 2019, 09:06:10 AM
 #5

I still don't have a clue on how to use a script. It would be nice if anyone from this community can explain to me how to run this script and which website are compatible for it. Thanks in advance.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
safari88
Legendary
*
Offline Offline

Activity: 1960
Merit: 1026



View Profile
October 06, 2019, 10:40:17 AM
 #6

I still don't have a clue on how to use a script. It would be nice if anyone from this community can explain to me how to run this script and which website are compatible for it. Thanks in advance.

at first you need to download seuntjie bot here https://bot.seuntjie.com/
after that you need to set the setting to programmer mode and then paste the script above

if you still need another script you can search it here https://bot.seuntjie.com/Scripts.aspx#

.
..1xBit.com   Super Six..
▄█████████████▄
████████████▀▀▀
█████████████▄
█████████▌▀████
██████████  ▀██
██████████▌   ▀
████████████▄▄
███████████████
███████████████
███████████████
███████████████
███████████████
▀██████████████
███████████████
█████████████▀
█████▀▀       
███▀ ▄███     ▄
██▄▄████▌    ▄█
████████       
████████▌     
█████████    ▐█
██████████   ▐█
███████▀▀   ▄██
███▀   ▄▄▄█████
███ ▄██████████
███████████████
███████████████
███████████████
███████████████
███████████████
███████████████
███████████▀▀▀█
██████████     
███████████▄▄▄█
███████████████
███████████████
███████████████
███████████████
███████████████
         ▄█████
        ▄██████
       ▄███████
      ▄████████
     ▄█████████
    ▄███████
   ▄███████████
  ▄████████████
 ▄█████████████
▄██████████████
  ▀▀███████████
      ▀▀███
████
          ▀▀
          ▄▄██▌
      ▄▄███████
     █████████▀

 ▄██▄▄▀▀██▀▀
▄██████     ▄▄▄
███████   ▄█▄ ▄
▀██████   █  ▀█
 ▀▀▀
    ▀▄▄█▀
▄▄█████▄    ▀▀▀
 ▀████████
   ▀█████▀ ████
      ▀▀▀ █████
          █████
       ▄  █▄▄ █ ▄
     ▀▄██▀▀▀▀▀▀▀▀
      ▀ ▄▄█████▄█▄▄
    ▄ ▄███▀    ▀▀ ▀▀▄
  ▄██▄███▄ ▀▀▀▀▄  ▄▄
  ▄████████▄▄▄▄▄█▄▄▄██
 ████████████▀▀    █ ▐█
██████████████▄ ▄▄▀██▄██
 ▐██████████████    ▄███
  ████▀████████████▄███▀
  ▀█▀  ▐█████████████▀
       ▐████████████▀
       ▀█████▀▀▀ █▀
.
Premier League
LaLiga
Serie A
.
Bundesliga
Ligue 1
Primeira Liga
.
..TAKE PART..
Haunebu
Hero Member
*****
Offline Offline

Activity: 3052
Merit: 969


www.Crypto.Games: Multiple coins, multiple games


View Profile
October 06, 2019, 11:03:25 AM
 #7

Interesting. I will definitely check this script out, but I am not expecting much since I have always busted in the short term as well as the long term using any form of Martingale which is why small amounts of Doge is the best way to try this out.

I still don't have a clue on how to use a script. It would be nice if anyone from this community can explain to me how to run this script and which website are compatible for it. Thanks in advance.
A script is basically a manually tweaked version of the auto-bot on gambling sites and you can find many different versions through the link that the poster above me posted. Don't rely too much on them though since there is always a degree of risk associated with them. Manual bets are almost always better in comparison.

█████████████████████████
███████▄▄▀▀███▀▀▄▄███████
████████▄███▄████████
█████▄▄█▀▀███▀▀█▄▄█████
████▀▀██▀██████▀██▀▀████
████▄█████████████▄████
███████▀███████▀███████
████▀█████████████▀████
████▄▄██▄████▄██▄▄████
█████▀▀███▀▄████▀▀█████
████████▀███▀████████
███████▀▀▄▄███▄▄▀▀███████
█████████████████████████
.
 CRYPTOGAMES 
.
 Catch the winning spirit! 
█▄░▀███▌░▄
███▄░▀█░▐██▄
▀▀▀▀▀░░░▀▀▀▀▀
████▌░▐█████▀
████░░█████
███▌░▐███▀
███░░███
██▌░▐█▀
PROGRESSIVE
      JACKPOT      
██░░▄▄
▀▀░░████▄
▄▄▄▄██▀░░▄▄
░░░▀▀█░░▀██▄
███▄░░▀▄░█▀▀
█████░░█░░▄▄█
█████░░██████
█████░░█░░▀▀█
LOW HOUSE
         EDGE         
██▄
███░░░░░░░▄▄
█▀░░░░░░░████
█▄░░░░░░░░█▀
██▄░░░░░░▄█
███▄▄░░▄██▌
██████████
█████████▌
PREMIUM VIP
 MEMBERSHIP 
DICE   ROULETTE   BLACKJACK   KENO   MINESWEEPER   VIDEO POKER   PLINKO   SLOT   LOTTERY
pakhitheboss
Hero Member
*****
Offline Offline

Activity: 2114
Merit: 774


Top Crypto Casino


View Profile WWW
October 06, 2019, 11:18:15 AM
 #8

I still don't have a clue on how to use a script. It would be nice if anyone from this community can explain to me how to run this script and which website are compatible for it. Thanks in advance.

at first you need to download seuntjie bot here https://bot.seuntjie.com/
after that you need to set the setting to programmer mode and then paste the script above

if you still need another script you can search it here https://bot.seuntjie.com/Scripts.aspx#

WOW!

Thanks for the quick reply mate. Now a lot of things are getting clear to me. I have already downloaded the bot and have added the script. I also found on thEir website supported Bitcoin casino website. I am gonna give it a try and see how it works for me.

Thanks once again👍


█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Ailmand
Hero Member
*****
Offline Offline

Activity: 1274
Merit: 519


Coindragon.com 30% Cash Back


View Profile
October 06, 2019, 01:28:08 PM
Last edit: October 06, 2019, 01:39:10 PM by Ailmand
 #9

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

Not all gamblers play for fun. Some gamblers play mainly for profit. And rhe disclaimer says it that scripts are not created for a long game and will not make you money forever. All who uses script is aware that scripts are not meant to be used for a long game or you will end up losing all your balance.

AceFairy
Newbie
*
Offline Offline

Activity: 100
Merit: 0


View Profile
October 06, 2019, 01:48:38 PM
 #10

you need to study bot and scripts on some kinfd of playmony; from what you told, at this point you are not ready to play for real money, not fit, too little understanding and knowledge; it can get into trouble real fast if you don't know the difference;

newbie base bet is always balance*0.00000001 or one ten-millionth part of your bankroll..

i just tested new script this morning, and i could not make more than 4% profit before dice casino started blocking my winning and tried to bust me;

you need mandatory stop-loss in the script, or it can take a nose-dive to zero, casinos do this,
they block return of bet result and bot thinks he keeps betting and sends your money [bets] to server,
but your game is already locked in and so bot just sends the rest of your balance to casino and returns a loss statement!

all this dice and bot business is really messed up -one who dares to play this, must really do a good job to study the matters!

please, pay attention, don't think it is a joke to play! or, in the end - the joke's will be on you!

"if you still need another script you can search it here https://bot.seuntjie.com/Scripts.aspx#' - NO, DON'T DO THAT
seuntjies script dirctory is full of half-ass failed experiments that will end you in the ditch! check my other posts ,
 there are links to best free internet scripts i found recently!
virasog
Legendary
*
Offline Offline

Activity: 2982
Merit: 1159



View Profile
October 06, 2019, 04:07:04 PM
 #11

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

I never use any dice Script but would like to know the outcome of this one. If anyone uses this script and get profit then do let us know with screenshots.
I prefer to play dice manually as only then I am in full control of the game. Smiley

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
AceFairy
Newbie
*
Offline Offline

Activity: 100
Merit: 0


View Profile
October 06, 2019, 05:20:44 PM
 #12

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

I never use any dice Script but would like to know the outcome of this one. If anyone uses this script and get profit then do let us know with screenshots.
I prefer to play dice manually as only then I am in full control of the game. Smiley

do you also want me to carry you to bathroom and hold your dick , while you take a piss? did you read previous posts?

i already tested this script this morning and could win up to few % of balance with it, but i pushed it to limit and busted my winnings because playing too much on the same account/IP; but that was my purpose - to test it how far it would let me go; now, i'm sending my 30k doge to 999dice and let's see what gives..
shoreno
Full Member
***
Offline Offline

Activity: 1750
Merit: 118


View Profile
October 08, 2019, 06:33:16 AM
 #13

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

Not all gamblers play for fun. Some gamblers play mainly for profit. And rhe disclaimer says it that scripts are not created for a long game and will not make you money forever. All who uses script is aware that scripts are not meant to be used for a long game or you will end up losing all your balance.

depends on how much balance you have . if you have a big balance , you can play longer but not so big balance can on play shorter   .

 scripts arent also made for profit or for longer play but itll also useful for challenges or other competitions like races  . you can set it depending on your preference . 
janggernaut
Legendary
*
Offline Offline

Activity: 2366
Merit: 1130


View Profile
October 09, 2019, 02:18:34 PM
 #14


i already tested this script this morning and could win up to few % of balance with it, but i pushed it to limit and busted my winnings because playing too much on the same account/IP; but that was my purpose - to test it how far it would let me go; now, i'm sending my 30k doge to 999dice and let's see what gives..
Those who say manually is better than using autobets just too  afraid losing their money without their own hands. For me, using autobets is much better than manually.
So what's your profit for now? It has been 3 days since you deposited your 30k doge on 999dice.
joshy23
Sr. Member
****
Offline Offline

Activity: 1078
Merit: 256



View Profile
October 09, 2019, 02:48:58 PM
 #15

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

I never use any dice Script but would like to know the outcome of this one. If anyone uses this script and get profit then do let us know with screenshots.
I prefer to play dice manually as only then I am in full control of the game. Smiley

SO do I, using script is complicated if you are not the one who program the system and if you are not knowledgeable with how things works. But it is interesting to see if there's already people around here who can share there experienced using this modified system. it's interesting if how the outcome brings to them, mostly it will burned your bankroll as house being a business can adjust anytime.
virasog
Legendary
*
Offline Offline

Activity: 2982
Merit: 1159



View Profile
October 11, 2019, 05:26:49 AM
 #16

I will never understand why people use this kind of scripts, the whole point of gambling is to have fun while you gamble creating an automatic script that bets for you and does all job is only justified if you could make money in the long run and we know that is impossible, so if people really want to throw away their money that much they could just burn it, that is faster.

I never use any dice Script but would like to know the outcome of this one. If anyone uses this script and get profit then do let us know with screenshots.
I prefer to play dice manually as only then I am in full control of the game. Smiley

do you also want me to carry you to bathroom and hold your dick , while you take a piss? did you read previous posts?

i already tested this script this morning and could win up to few % of balance with it, but i pushed it to limit and busted my winnings because playing too much on the same account/IP; but that was my purpose - to test it how far it would let me go; now, i'm sending my 30k doge to 999dice and let's see what gives..

You tested the script and lost because you pushed it further to limit. Good but we never heard from you after you send your 30K coins to the 999dice. Its been almost a week now. Are you still alive or just got busted again.  Cheesy  
Scripts can take your balance and your life too  Wink

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
DGulari
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000


KawBet.com - Anonymous Bitcoin Casino & Sportsbook


View Profile
October 11, 2019, 11:53:35 PM
 #17

You tested the script and lost because you pushed it further to limit. Good but we never heard from you after you send your 30K coins to the 999dice. Its been almost a week now. Are you still alive or just got busted again.  Cheesy  
Scripts can take your balance and your life too  Wink
He seems already deposited that 30k doge as you can read his post before. But he hasn't been online since then until now so we can't be sure what happened with him (whatever he won or busted).


SO do I, using script is complicated if you are not the one who program the system and if you are not knowledgeable with how things works. But it is interesting to see if there's already people around here who can share there experienced using this modified system. it's interesting if how the outcome brings to them, mostly it will burned your bankroll as house being a business can adjust anytime.
Just copy and paste/import the script to your bot, where is the complicated thing you mean?

. .KawBet . .
BITCOIN CASINO & SPORTSBOOK
|               ____
        ¦¦¦¦¦¦¦¦¦¦
      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦
    ¦¦¦¦¦¦  ¦¦  ¦¦¦¦¦¦
  ¦¦¦¦¦              ¯¦¦¦¦¦
¦¦¦¦¦¦__    __    ¦¦¦¦¦¦
¦¦¦¦¦¦¦¦    ¯¯  _¦¦¦¦¦¦
¦¦¦¦¦¦¦¦    _    ¦¦¦¦¦
¦¦¦¦¦¦¯¯    ¯¯¯    ¦¦¦¦¦
  ¦¦¦¦¦                ¦¦¦¦¦
    ¦¦¦¦¦¦  ¦¦  ¦¦¦¦¦¦
      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦
         ¯¦¦¦¦¦¦¦¦¦¦¯
               ¯¯¯¯¯¯

UP
TO
7BTC
WELCOME
BONUS
|
        ¦¦¦¦
    ¦¦¦¦¦¦¦¦¦
 _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¯
    _¦¦¦¦¦¦¦¯
   _¦¦¦¦¦¦¦¯
  _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¯
           ¦¦¦¦¦¯
          ¦¦¦¦¦
         ¦¦¦¦¦
    ¯¦¦¦¦¦¦¦¦¦¦¦¦¯
    ¯¦¦¦¦¦¦¦¦¦¯
      ¦¦¦¦¦¯
      ¯¦¦¯

EASY DEPOSIT
FAST WITHDRAWAL
|
        ¦¦¦¦¦¦¦¦¦¦
      ¦                        ¦
    ¦     ¦¦¦¦  ¦    ¦     ¦
  ¦             ¦  ¦    ¦       ¦
¦         ¦¦¦¦  ¦¦¦¦         ¦
¦         ¦              ¦         ¦
¦         ¦¦¦¦                   ¦
  ¦                                ¦¦
    ¦         ¦  ¦  ¦         ¦¦¦
      ¦                         ¦¦¦¦
        ¯¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
               ¯¯¯¯¯¯          ¯¯
24H
LIVE
SUPPORT
|


¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦                          ¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦            ¦¦¦¦¦¦¦¦¦¦¦¦¦¦            ¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦          ¦¦¦¦¦¦¦¦          ¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦

NO KYC
REQUIRED
AceFairy
Newbie
*
Offline Offline

Activity: 100
Merit: 0


View Profile
October 12, 2019, 01:34:59 AM
 #18

omfg, childish idiots and dumb cunts - i do not care to report my game or winnings or losings to you! fuck off!
dice is a scam, and it is proven, so fuck off and i do not care a rat's ass what you do!
stop quoting my posts, goddamn motherfucked shitheads , LoL..
DGulari
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000


KawBet.com - Anonymous Bitcoin Casino & Sportsbook


View Profile
October 12, 2019, 03:20:35 AM
 #19

omfg, childish idiots and dumb cunts - i do not care to report my game or winnings or losings to you! fuck off!
dice is a scam, and it is proven, so fuck off and i do not care a rat's ass what you do!
stop quoting my posts, goddamn motherfucked shitheads , LoL..
It's funny to see when you say dice is a scam when you even created the script for bot. Dice game has provably fair system, how could you say it's proven scam? You are playing on 999dice, known as scam site, so who is the st*pid one now?

. .KawBet . .
BITCOIN CASINO & SPORTSBOOK
|               ____
        ¦¦¦¦¦¦¦¦¦¦
      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦
    ¦¦¦¦¦¦  ¦¦  ¦¦¦¦¦¦
  ¦¦¦¦¦              ¯¦¦¦¦¦
¦¦¦¦¦¦__    __    ¦¦¦¦¦¦
¦¦¦¦¦¦¦¦    ¯¯  _¦¦¦¦¦¦
¦¦¦¦¦¦¦¦    _    ¦¦¦¦¦
¦¦¦¦¦¦¯¯    ¯¯¯    ¦¦¦¦¦
  ¦¦¦¦¦                ¦¦¦¦¦
    ¦¦¦¦¦¦  ¦¦  ¦¦¦¦¦¦
      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦
         ¯¦¦¦¦¦¦¦¦¦¦¯
               ¯¯¯¯¯¯

UP
TO
7BTC
WELCOME
BONUS
|
        ¦¦¦¦
    ¦¦¦¦¦¦¦¦¦
 _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¯
    _¦¦¦¦¦¦¦¯
   _¦¦¦¦¦¦¦¯
  _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  _¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¯
           ¦¦¦¦¦¯
          ¦¦¦¦¦
         ¦¦¦¦¦
    ¯¦¦¦¦¦¦¦¦¦¦¦¦¯
    ¯¦¦¦¦¦¦¦¦¦¯
      ¦¦¦¦¦¯
      ¯¦¦¯

EASY DEPOSIT
FAST WITHDRAWAL
|
        ¦¦¦¦¦¦¦¦¦¦
      ¦                        ¦
    ¦     ¦¦¦¦  ¦    ¦     ¦
  ¦             ¦  ¦    ¦       ¦
¦         ¦¦¦¦  ¦¦¦¦         ¦
¦         ¦              ¦         ¦
¦         ¦¦¦¦                   ¦
  ¦                                ¦¦
    ¦         ¦  ¦  ¦         ¦¦¦
      ¦                         ¦¦¦¦
        ¯¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
               ¯¯¯¯¯¯          ¯¯
24H
LIVE
SUPPORT
|


¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦                          ¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦      ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
¦¦¦¦¦¦¦¦¦            ¦¦¦¦¦¦¦¦¦¦¦¦¦¦            ¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦              ¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦          ¦¦¦¦¦¦¦¦          ¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦¦¦¦¦
  ¦¦¦¦¦

NO KYC
REQUIRED
virasog
Legendary
*
Offline Offline

Activity: 2982
Merit: 1159



View Profile
October 12, 2019, 06:54:18 AM
 #20

omfg, childish idiots and dumb cunts - i do not care to report my game or winnings or losings to you! fuck off!
dice is a scam, and it is proven, so fuck off and i do not care a rat's ass what you do!
stop quoting my posts, goddamn motherfucked shitheads , LoL..
It's funny to see when you say dice is a scam when you even created the script for bot. Dice game has provably fair system, how could you say it's proven scam? You are playing on 999dice, known as scam site, so who is the st*pid one now?


He surely got busted on 999dice too with that fake script and now gone mad on losing. By the way he did not create that script, he just used that scripted. Poor guy !!

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
Pages: [1] 2 3 »  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!