Bitcoin Forum
May 15, 2024, 01:28:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 [125] 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 »
  Print  
Author Topic: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!  (Read 274508 times)
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 17, 2017, 03:33:08 AM
 #2481

p.s i dont using this scripts. i given it like sample.
See... the thing is, is that you're asking us for assistance with your issue, but you are giving us a script that you're not even using. Roll Eyes Without seeing your ACTUAL code, there is no way we can debug it and have any certainty how or why your script is broken... or if it is the bot that has some weird overflow issue. Huh I understand this is because you have some "super secret" strategy that you don't want to share (given your redacting of bet amounts/chances etc), but working under these conditions effectively makes anything that we suggest or theorise, pure guesswork.

You will need to either give up the code (PM is fine if you're rather it was not made public) OR you will need to debug the code yourself...

If you want to try and debug it, do what chilly suggested... put a check right at the end of the dobet() function:

Code:
if nextbet < 0 then
  print("nextbet: " .. nextbet)
  print("base: " .. base)
  print("someVariableThatYouWantToSeeTheValueOf: " .. myVariable)
  print("profit: " .. profit)
  stop()
end

This will enable you to see what the various values of things are to try and figure out WHY it is attempting to generate negative bets... and stop the bot at that point to avoid it losing money etc.

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 17, 2017, 11:45:51 AM
 #2482

Seuntjie, now I made changes.

  • if win then
    nextbet=calculatedfromformula
    else
    nextbet=previousbet*multiplier
    end
but even now, its was making oversized mega large bet, who was 50x bigger than need to be, and it was not after win or lose, but simple middle on streak, so i thinks definetly problem is in bot or dice site.


████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 17, 2017, 12:05:44 PM
 #2483

p.s i dont using this scripts. i given it like sample.
See... the thing is, is that you're asking us for assistance with your issue, but you are giving us a script that you're not even using. Roll Eyes Without seeing your ACTUAL code, there is no way we can debug it and have any certainty how or why your script is broken... or if it is the bot that has some weird overflow issue. Huh I understand this is because you have some "super secret" strategy that you don't want to share (given your redacting of bet amounts/chances etc), but working under these conditions effectively makes anything that we suggest or theorise, pure guesswork.

You will need to either give up the code (PM is fine if you're rather it was not made public) OR you will need to debug the code yourself...

If you want to try and debug it, do what chilly suggested... put a check right at the end of the dobet() function:

Code:
if nextbet < 0 then
  print("nextbet: " .. nextbet)
  print("base: " .. base)
  print("someVariableThatYouWantToSeeTheValueOf: " .. myVariable)
  print("profit: " .. profit)
  stop()
end

This will enable you to see what the various values of things are to try and figure out WHY it is attempting to generate negative bets... and stop the bot at that point to avoid it losing money etc.

bets was not only negative, now after put this one, its oversized mega large, even if i dont use formula for nextbet after lose calculating, but simple with multiplier, and losing another bankroll yesterday.

allready pm'ed you.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 18, 2017, 04:44:09 PM
 #2484

I found out that issue for negative bets or megaoversized is not because of formula, its because bot are leak. bot time after time update balance wrong, and from that formula are making simple big bets, because "at that one moment when bot shows wrong balance(its millisecond)" what are been calculated from wrong given balance amount at a time.




https://imgur.com/AsWDyWJ here in screen you can see, bot shows that i lost 0.0377 BTC, but my balance was been from start only 30k satoshi, rly? WTF? Why bot show lost what is 100x real balance what Iv lost, and its even in graph?!

simple conclusion - many times bot shows what in reality are not true.

please explain Seuntjie.

I was lost in this bug issue many time, whats in end are ~0.2btc.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 18, 2017, 07:11:18 PM
 #2485

As I already suggested to you via PM, the most likely cause is that the site is reporting the balance incorrectly. The bot does not calculate your balance, it simply reports the balance given to it by the gambling site API.

If there is a problem with the figures being reported by the API, there isn't a lot the boy can do about it... Garbage in, garbage out Undecided

I would theorise that running multiple bots on the same site (same account?) Could be causing issues with the site reporting incorrect balance figures...

If you run one bot does and slow the betting down, does this problem continue to happen? If it doesn't then the problem is definitely the site and not the bot.


PS. On an unrelated note, You should be careful running multiple accounts on gambling sites, most sites disapprove of this behaviour and may ban your accounts and possibly freeze your fund! Shocked

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Nick7815
Full Member
***
Offline Offline

Activity: 159
Merit: 101


View Profile
December 18, 2017, 08:43:29 PM
 #2486

i wanted to ask what's the status with your app? will it come back someday? and hopefully NOT with mp?

houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 19, 2017, 06:15:08 PM
Last edit: December 19, 2017, 06:27:43 PM by houseworx
 #2487

As I already suggested to you via PM, the most likely cause is that the site is reporting the balance incorrectly. The bot does not calculate your balance, it simply reports the balance given to it by the gambling site API.

If there is a problem with the figures being reported by the API, there isn't a lot the boy can do about it... Garbage in, garbage out Undecided

I would theorise that running multiple bots on the same site (same account?) Could be causing issues with the site reporting incorrect balance figures...

If you run one bot does and slow the betting down, does this problem continue to happen? If it doesn't then the problem is definitely the site and not the bot.


PS. On an unrelated note, You should be careful running multiple accounts on gambling sites, most sites disapprove of this behaviour and may ban your accounts and possibly freeze your fund! Shocked

even with one runned bot, still has this issue, I'm specially tested it, because thinked same way.

I'm playing in YOLO, there is allowed multi accounts Wink

it's seuntjie dicebot fault, because bot was representing all bugbets in graph and in stats "window", bot are representing all fake profit&losses like it was real!

to avoid that issue, don't use any formulas for basebets/nextbets what are calculating it from balance or profit(idk who was buggy, maybe only one from both, but maybe both)
correct me, if you think that its not dicebot fault!?

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
seuntjie (OP)
Legendary
*
Offline Offline

Activity: 1717
Merit: 1125



View Profile WWW
December 19, 2017, 07:28:43 PM
 #2488

i wanted to ask what's the status with your app? will it come back someday? and hopefully NOT with mp?


I am waiting for MP to finish their API and to honor their promises (withdrawals etc) before I bring my app online again. I doubt I will launch the same app without MP.

As I already suggested to you via PM, the most likely cause is that the site is reporting the balance incorrectly. The bot does not calculate your balance, it simply reports the balance given to it by the gambling site API.

If there is a problem with the figures being reported by the API, there isn't a lot the boy can do about it... Garbage in, garbage out Undecided

I would theorise that running multiple bots on the same site (same account?) Could be causing issues with the site reporting incorrect balance figures...

If you run one bot does and slow the betting down, does this problem continue to happen? If it doesn't then the problem is definitely the site and not the bot.


PS. On an unrelated note, You should be careful running multiple accounts on gambling sites, most sites disapprove of this behaviour and may ban your accounts and possibly freeze your fund! Shocked

even with one runned bot, still has this issue, I'm specially tested it, because thinked same way.

I'm playing in YOLO, there is allowed multi accounts Wink

it's seuntjie dicebot fault, because bot was representing all bugbets in graph and in stats "window", bot are representing all fake profit&losses like it was real!

to avoid that issue, don't use any formulas for basebets/nextbets what are calculating it from balance or profit(idk who was buggy, maybe only one from both, but maybe both)
correct me, if you think that its not dicebot fault!?

Not all sites report the balance and the bot has to calculate the new balance after each bet. If your script is submitting invalid bets and the bot is able to parse the response as a bet, the bot will calculate the new balance accordingly.

Since you are so unwilling to help us help you buy(privately) sharing your script with one of us, do me a favour. Try doing a basic martingale  using the script below and see if you can reproduce the error (invalid/negative bets, bets with an ID of 0)

Code:
base = 0.00000001
chance= 49.5
nextbet=base
function dobet()
if win then
nextbet=base
else
nextbet=previousbet*2
end
 

houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 20, 2017, 01:05:30 AM
 #2489

i wanted to ask what's the status with your app? will it come back someday? and hopefully NOT with mp?


I am waiting for MP to finish their API and to honor their promises (withdrawals etc) before I bring my app online again. I doubt I will launch the same app without MP.

As I already suggested to you via PM, the most likely cause is that the site is reporting the balance incorrectly. The bot does not calculate your balance, it simply reports the balance given to it by the gambling site API.

If there is a problem with the figures being reported by the API, there isn't a lot the boy can do about it... Garbage in, garbage out Undecided

I would theorise that running multiple bots on the same site (same account?) Could be causing issues with the site reporting incorrect balance figures...

If you run one bot does and slow the betting down, does this problem continue to happen? If it doesn't then the problem is definitely the site and not the bot.


PS. On an unrelated note, You should be careful running multiple accounts on gambling sites, most sites disapprove of this behaviour and may ban your accounts and possibly freeze your fund! Shocked

even with one runned bot, still has this issue, I'm specially tested it, because thinked same way.

I'm playing in YOLO, there is allowed multi accounts Wink

it's seuntjie dicebot fault, because bot was representing all bugbets in graph and in stats "window", bot are representing all fake profit&losses like it was real!

to avoid that issue, don't use any formulas for basebets/nextbets what are calculating it from balance or profit(idk who was buggy, maybe only one from both, but maybe both)
correct me, if you think that its not dicebot fault!?

Not all sites report the balance and the bot has to calculate the new balance after each bet. If your script is submitting invalid bets and the bot is able to parse the response as a bet, the bot will calculate the new balance accordingly.

Since you are so unwilling to help us help you buy(privately) sharing your script with one of us, do me a favour. Try doing a basic martingale  using the script below and see if you can reproduce the error (invalid/negative bets, bets with an ID of 0)

Code:
base = 0.00000001
chance= 49.5
nextbet=base
function dobet()
if win then
nextbet=base
else
nextbet=previousbet*2
end
 

all script is basic, there is nothing to do, bot can't work correctly because of formula, that all.


Quote
if win then
nextbet=(((balance)-(profit*xxx))/xxxxxx)+0.0000000X
else
nextbet=previousbet*multiplier
end

he are fail of using this one.

there is no difference if this formula will be like me, or basebet=balance/xxx or something, he will fail time after time and make wrong decisions from that fail.



bot will made wrong decisions in every type of formula, where words balance or profit include in formulas for basebet calculating if bets are fast enough.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
ferryantoine
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
December 20, 2017, 12:54:18 PM
 #2490

People.

Is there any Dice website that allows to practice betting (different strategies) with Seuntjies DiceBot along with a fake credit ?  Undecided
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 20, 2017, 01:24:53 PM
 #2491

People.

Is there any Dice website that allows to practice betting (different strategies) with Seuntjies DiceBot along with a fake credit ?  Undecided

better one can be 999dice for that thing what you want, there you can get many free dogs(enough) to test bot/strategy's, only one BUT - in 999dice minimum play percentage is 5% so you can't test your strategy if its on lower than 5% chance. (like there is no possible to play @ 1%, 2%, 3%, 4%)

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
December 20, 2017, 05:56:53 PM
 #2492

Crypto-games.net has "PLAY" token on basically an unlimited faucet...

It's good for testing Wink

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


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

Activity: 1680
Merit: 655


View Profile
December 20, 2017, 06:11:49 PM
 #2493

People.

Is there any Dice website that allows to practice betting (different strategies) with Seuntjies DiceBot along with a fake credit ?  Undecided
Well do you consider free cryptocurrencies in their faucet as practice betting? If yes then a lot of Dice Sites have free faucets in which you can claim real cryptocurrencies and bet on them. But if you really want to practice bet FortuneJack has it too, they have their own "Play Money" in which they call it FortuneJack Coin in which you can replenish by Resetting it in your balances. But if I were you I would go to the Faucet Claims as you are using real money in which you will enjoy winning more.

..bustadice..         ▄▄████████████▄▄
     ▄▄████████▀▀▀▀████████▄▄
   ▄███████████    ███████████▄
  █████    ████▄▄▄▄████    █████
 ██████    ████████▀▀██    ██████
██████████████████   █████████████
█████████████████▌  ▐█████████████
███    ██████████   ███████    ███
███    ████████▀   ▐███████    ███
██████████████      ██████████████
██████████████      ██████████████
 ██████████████▄▄▄▄██████████████
  ▀████████████████████████████▀
                     ▄▄███████▄▄
                  ▄███████████████▄
   ███████████  ▄████▀▀       ▀▀████▄
               ████▀      ██     ▀████
 ███████████  ████        ██       ████
             ████         ██        ████
███████████  ████     ▄▄▄▄██        ████
             ████     ▀▀▀▀▀▀        ████
 ███████████  ████                 ████
               ████▄             ▄████
   ███████████  ▀████▄▄       ▄▄████▀
                  ▀███████████████▀
                     ▀▀███████▀▀
           ▄██▄
           ████
            ██
            ▀▀
 ▄██████████████████████▄
██████▀▀██████████▀▀██████
█████    ████████    █████
█████▄  ▄████████▄  ▄█████
██████████████████████████
██████████████████████████
    ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
    ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
       ████████████
......Play......
ferryantoine
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
December 21, 2017, 05:27:18 AM
 #2494

Thank you friends.

I think 999dice is the best choice as it is available on Seuntjies DiceBot as well. cheers Smiley
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 21, 2017, 01:40:01 PM
 #2495

Crypto-games.net has "PLAY" token on basically an unlimited faucet...

It's good for testing Wink

cryptogames is sh*t, because you can get faucet, when your bankroll managment will be only, i dont remember but something like 75/1, there is so high minimum bets for altocoins and playmoney. you can get BRM when your basebet will be balance/500 000 or so!

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
TheQuin
Hero Member
*****
Offline Offline

Activity: 2576
Merit: 882


Freebitco.in Support https://bit.ly/2I9BVS2


View Profile WWW
December 22, 2017, 08:43:29 AM
 #2496

cryptogames is sh*t, because you can get faucet, when your bankroll managment will be only, i dont remember but something like 75/1, there is so high minimum bets for altocoins and playmoney. you can get BRM when your basebet will be balance/500 000 or so!

The minimum dice bet is 10 PLAY which is 0.2 Satoshis. This is constant as the value of PLAY is tied to BTC. Your criticism may be true of some altcoins because the minimum bets were set some time ago and the exchange rates have changed dramatically. BTC has a minimum dice bet of 1 Satoshi making it a better choice than alts for low base bet strategies.


freebitcoin.TO WIN A  LAMBORGHINI!..

.
                                ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
                    ▄▄▄▄▄██████████████████████████████████▄▄▄▄
                    ▀██████████████████████████████████████████████▄▄▄
                    ▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
                    ▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
                      ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
                           ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 22, 2017, 08:54:40 AM
 #2497

cryptogames is sh*t, because you can get faucet, when your bankroll managment will be only, i dont remember but something like 75/1, there is so high minimum bets for altocoins and playmoney. you can get BRM when your basebet will be balance/500 000 or so!

The minimum dice bet is 10 PLAY which is 0.2 Satoshis. This is constant as the value of PLAY is tied to BTC. Your criticism may be true of some altcoins because the minimum bets were set some time ago and the exchange rates have changed dramatically. BTC has a minimum dice bet of 1 Satoshi making it a better choice than alts for low base bet strategies.



YOU CAN'T GET ANY FREE COINS IN CRYPTOGAMES, TO TEST STRATEGY, WITH BANKROLL MANAGMENT MORE THAN 1000/1 WHAT IS RIDICOULUS FUNNY! there is no talking about how much is it in btc.

to test normally bot/strategy are needed to be 500000/1+
it means if minimum bet for playcoins is 10, then you need to have 5 000 000 play coins - what is not reachable in cryptogames

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
TheQuin
Hero Member
*****
Offline Offline

Activity: 2576
Merit: 882


Freebitco.in Support https://bit.ly/2I9BVS2


View Profile WWW
December 22, 2017, 08:58:24 AM
 #2498

YOU CAN'T GET ANY FREE COINS IN CRYPTOGAMES, TO TEST STRATEGY, WITH BANKROLL MANAGMENT MORE THAN 1000/1 WHAT IS RIDICOULUS FUNNY! there is no talking about how much is it in btc.

to test normally bot/strategy are needed to be 500000/1+
it means if minimum bet for playcoins is 10, then you need to have 5 000 000 play coins - what is not reachable in cryptogames

I wasn't saying that they would give you free money to test your strategy. I was just pointing out that this is incorrect.

there is so high minimum bets for altocoins and playmoney.

The minimum bet on PLAY is very low.


freebitcoin.TO WIN A  LAMBORGHINI!..

.
                                ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
                    ▄▄▄▄▄██████████████████████████████████▄▄▄▄
                    ▀██████████████████████████████████████████████▄▄▄
                    ▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
                    ▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
                      ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
                           ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
houseworx
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
December 22, 2017, 09:23:51 AM
 #2499

YOU CAN'T GET ANY FREE COINS IN CRYPTOGAMES, TO TEST STRATEGY, WITH BANKROLL MANAGMENT MORE THAN 1000/1 WHAT IS RIDICOULUS FUNNY! there is no talking about how much is it in btc.

to test normally bot/strategy are needed to be 500000/1+
it means if minimum bet for playcoins is 10, then you need to have 5 000 000 play coins - what is not reachable in cryptogames

I wasn't saying that they would give you free money to test your strategy. I was just pointing out that this is incorrect.

there is so high minimum bets for altocoins and playmoney.

The minimum bet on PLAY is very low.



you don't even understanda what Im saying, and replied something for defend cryptogames.

BETS ARE HUGE FOR ALTCOINS, IF YOU COMPARE IT WITH BANKROLL(FAUCET) WHAT YOU CAN GET FREE IN CRYPTOGAMES!

you are so stpd, that even dont understand it, and write something.

so people asked where is place to test strategy, someone are answered that in cryptogames, iv was said it was wrong, and cryptogames are sh*t because there is no possible to test any strategy with bankroll managment 1000/1(basebet=balance/1000)

if you dont understand what im written, then better dont answer at all.

for test strategy i know only one place its 999dice, you can get till 0.1 doge(or 0.01 dont remember), and bet 0.00000001 doge minimum, that means you can get 10000000/1 (or 1000000/1) BRM.

████          O W N R   W A L L E T          ████   VISA PREPAID CARD    ████  Use crypto to pay in stores with OWNR  ████
❱❱❱❱ ❱❱❱ ❱❱ ❱     Buy, send, receive and exchange crypto        VISA    mastercard   SPA    UnionPay     ❰ ❰❰ ❰❰❰ ❰❰❰❰
BLOG       TWITTER     ██ █▌█ ▌     Manage crypto and VISA card in OWNR Wallet app    ▐ █▐█ ██     REDDIT   YOUTUBE
TheQuin
Hero Member
*****
Offline Offline

Activity: 2576
Merit: 882


Freebitco.in Support https://bit.ly/2I9BVS2


View Profile WWW
December 22, 2017, 09:47:42 AM
 #2500

you don't even understanda what Im saying, and replied something for defend cryptogames.

You don't understand I simply corrected something you said.

The minimum bet on PLAY is low which does make it good for testing strategies on. There may well be better places to try and test for free but that wasn't my point.

freebitcoin.TO WIN A  LAMBORGHINI!..

.
                                ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
                    ▄▄▄▄▄██████████████████████████████████▄▄▄▄
                    ▀██████████████████████████████████████████████▄▄▄
                    ▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
                    ▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
                      ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
                           ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Pages: « 1 ... 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 [125] 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 »
  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!