Bitcoin Forum
May 27, 2024, 08:56:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 [73] 74 75 76 77 78 79 80 81 82 83 84 85 86 »
1441  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 21, 2015, 08:12:02 AM

Thank you for the detailed screenshots, I'll take a look asap. Where are you from? I'm pretty sure this is a regional problem.


http://prntscr.com/6jetcs

from 40k doge ^^ UP UP UP


do you think this will bust suent? if you tell me before it does ill tip you 10k doge lolz

All strategies bust eventually. Just give it enough time and it will bust. So I suggest you set a profit target and stop if you reach it.
1442  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 20, 2015, 12:35:29 PM
Alpha version (build 9) of Seuntjies Dicebot is available at seuntjie.com/dicebot/dicebot-v3-alpha-b9.zip

New version fixes the bugs listed above as far as I was able to test. Also added safedice implementation to the bot. Enjoy.
1443  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 19, 2015, 07:56:36 PM
I downloaded DiceBot v3 Alpha and if I try to use Simulation, program crashes (Win 7 x32) How to fix it? Thanks Smiley

Which build are you using? I tested the sim on the latest buid (build 8 ) and it worked fine. Can you please send me the error details when the bot crashes?
I use DiceBot v3 b8 (http://seuntjie.com/dicebot/dicebot-v3-alpha-b8.zip) and when I choose 999dice and press Simulation it crashes...

Ok. I haven't had a problem before but I'll check it out

Edit: It seems that 999dices RNG and the seeds my bot were generating weren't liking each other. I found the problem and it'll be fixed in the next build. Thanks for pointing it out to me.
1444  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 19, 2015, 04:21:47 PM
Something else i found.

Sometimes I get connection errors and the bot just stops, I left it over night just to find the next morning that it run for 20 minutes and stopped.

Can you add some retry function?

On which site is this?

I saw on Just-dice yesterday, don't know if any other give this error

P.S.: Forgot to mention, using v8

no, you're using version 3, thus the v3 part in the name, you're using build 8 of the alpha, thus the alpha-b8 part in the name.

Not really so much I can do about it on just-dice though, sometimes the rolls get stuck server side, but still actually go through. Would be very bad if you're on your 20th loss and the bot retries a winning bet and you lose the retry.
1445  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 19, 2015, 02:51:56 PM
I downloaded DiceBot v3 Alpha and if I try to use Simulation, program crashes (Win 7 x32) How to fix it? Thanks Smiley

Which build are you using? I tested the sim on the latest buid (build 8 ) and it worked fine. Can you please send me the error details when the bot crashes?
1446  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 19, 2015, 12:22:51 PM
Something else i found.

Sometimes I get connection errors and the bot just stops, I left it over night just to find the next morning that it run for 20 minutes and stopped.

Can you add some retry function?

On which site is this?
1447  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 18, 2015, 09:34:06 PM
I've been asked a few times now to add dadice to my bot. I've been told that the site is getting an API, so when the address receives 0.5Btc or more and the site API is finished, I will add support for the site to my bot.

Balance at time of writing: 0
address: 1DaBotvWh6DnrKCdUQWkCpmj9qvSMNRLpk

https://blockchain.info/address/1DaBotvWh6DnrKCdUQWkCpmj9qvSMNRLpk
1448  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 18, 2015, 05:37:29 AM

How set amount for labouchere method ?



IN the labouchere tab there is a text box with a list of numbers. Those are the bets used in the labouchere method, 1 bet per line.

I haven't these numbers . i use alpha version



You have the box, so fill in the numbers. It sounds like you don't know how labouchere works, so here: http://en.wikipedia.org/wiki/Labouch%C3%A8re_system



I've been using v8 for just-dice and saw a bug, the stats are not begin updated consistently.

What I witnessed: I had 3 lost streaks of 3 and the "Worst lose streak" was stuck at 2

Screens:



EDIT
Just found out: "Largest loss" is always 0

Thanks for pointing this out, I'll get it fixed.
1449  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 17, 2015, 01:53:58 PM

How set amount for labouchere method ?



IN the labouchere tab there is a text box with a list of numbers. Those are the bets used in the labouchere method, 1 bet per line.
1450  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 17, 2015, 07:39:05 AM
Hi. In v3 b8, how do I set a percentage of balance bets in a martingale?

Thanks!

There isn't a specific setting to set your starting bet for martingale based on a percentage of your balance. Here's a little lua script that should be able to do it in programmer mode:

Code:
function dobet()
if (win) then
nextbet=balance*(percentage/100.0)
else
nextbet = previousbet *2
end
end

To use this script, set the bot to use programmer mode,
Copy and paste this script into the code box.
either replace percentage in the script by the percentage you want, or, in the console execute: percentage = 0.0005
   or whatever percentage you want to set it to
then, in the console, execute start() to start the bot, and stop() to stop the bot.

I tried the script and it creates the initial bet based on the percentage setting.
When it loses, it follows the "nextbet = previousbet *2"
however after it wins, the initial bet starts off at "0" instead of the percentage of the bet.

How do I fix this?

Thanks again.

I found a bug yesterday that causes the balance to be sent through as 0 to the lua environment, It's been fixed but you'll need to wait a few days before i can release the build, I've got some other fixes and features to finish before i can release.
1451  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 16, 2015, 12:40:25 PM
Hi. In v3 b8, how do I set a percentage of balance bets in a martingale?

Thanks!

There isn't a specific setting to set your starting bet for martingale based on a percentage of your balance. Here's a little lua script that should be able to do it in programmer mode:

Code:
function dobet()
if (win) then
nextbet=balance*(percentage/100.0)
else
nextbet = previousbet *2
end
end

To use this script, set the bot to use programmer mode,
Copy and paste this script into the code box.
either replace percentage in the script by the percentage you want, or, in the console execute: percentage = 0.0005
   or whatever percentage you want to set it to
then, in the console, execute start() to start the bot, and stop() to stop the bot.
1452  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 16, 2015, 12:12:29 PM
Hi, I hope noone asked this question before, but my problem is that I use 999dice, and the autowithdrawal pops up, when it has to, but it inserts a , ( coma ) instead of . ( dot ).
Could you fix it? By the way great program I really like it.

Simplest fix for you at this time is to change your date and number format to english US, or to try the alpha.


Alpha version (build 8 ) of Seuntjies Dicebot is available at seuntjie.com/dicebot/dicebot-v3-alpha-b8.zip
Dicebots Source is avilable at https://github.com/seuntie900/DiceBot
1453  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 13, 2015, 07:20:39 AM
what happen with my bot?

i cant even open it...say something wrong like that..im using dicebot ver 2.5.5


hmm.... Say something wrong like that..... Then it must be your computers flux capacitor that needs to be replaced. I'm surprised any other program can still run on your computer.....


But seriously, I'll need more information to help you. Send me a screenshot of the error or something. If the bot did work, and now it doesn't, something changed on your computer. Maybe you moved a file to the wrong directory or something



1454  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 10, 2015, 08:52:15 AM
for justdice, why so slow do bet.
This problem my computer or bot I do not know.
could you please tell me

I need more details please. Which version are you using, how large are your bets, how fast is your internet, how slow is slow? Keep in mind that just-dice throttles smaller bets, so if you have a very small starting bet, it probably gets throttled by the site.
1455  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 10, 2015, 07:32:04 AM
seuntjie bot not work for dadice or just my connection
im not seen my balance at bot

dadice? I've never implemented the bot for dadice, why would it possibly work?
i think this bot can be used for all dice site ,for the future, did you will make a bot for many dice site?

If someone pays me to implement it for a site and the site has an API, I will add support for that site.

I charge 0.5 btc for adding a site to the bot.
1456  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 09, 2015, 10:04:26 PM
Hello ,

Change once and variable options didn't work for me

Is that normal ?

That is not normal no. Which version are you using and can you please describe your settings and what the bot did do and did not do?

Last version  2.5.5

When i choose change once or variable options , the fields ( after X bets and times multiplier by ) are still inactive.

 I see. Wonder why no one ever mentioned this before. Select the one you want to use, close the bot and then open it again and the correct fields will be available. Or try the alpha. It works correctly in the latest build (b8 )
1457  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 09, 2015, 08:22:15 PM
Thanks for the link I saw there discussion about bot simple question bot help me to win or just place bets for me ? If just places bets then what is difference between bot and autobet ? Thanks for your time .

It just places bets. The difference between this bot and the autobet is the amount of settings and a few other features. This bot can do much more than the auto bet, including martingale, reverse martingale, preroll, labouchere, fibonacci, draw profit charts, keep a bet history. The latest build even has an embedded lua interface so you can script your own strategy, or basically write a plugin for the bot.

There's a bot for PD too or not?  Huh

I've released an alpha version of version 3 of the bot for public testing. This runs on primedice as well as the other sites. Alpha versions of programs are unstable and the bot could crash or malfunction, causing losses. Be careful while using the alpha version of the bot.

download: http://seuntjie.com/dicebot/dicebot-v3-alpha-b8.zip
1458  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 09, 2015, 06:15:08 PM
Hello ,

Change once and variable options didn't work for me

Is that normal ?

That is not normal no. Which version are you using and can you please describe your settings and what the bot did do and did not do?
1459  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 08, 2015, 11:00:39 AM
seuntjie bot not work for dadice or just my connection
im not seen my balance at bot

dadice? I've never implemented the bot for dadice, why would it possibly work?
How does the bot work ? Can some one explain how do I use bot on one of the sites mentioned above ? I am using Win 7 .

Here's a getting started guide: https://bitcointalk.org/index.php?topic=391870


Hey seuntjie,

Any reason you removed your bot for Primedice? We liked the features you supplied to chat. I also recommend discontinuing 999dice as they have multiple confirmed scam reports against them which definitely isn't something you want to promote.
Hey seuntjie,

Any reason you removed your bot for Primedice? We liked the features you supplied to chat. I also recommend discontinuing 999dice as they have multiple confirmed scam reports against them which definitely isn't something you want to promote.

Would like to know this as well, I used to use the bot for Primedice and it was great Cheesy Now I use it over at justdice. Thank you for you amazing bot.

I'm not sure what you mean? both seuntjiebot and the dicebot still works at primedice....? dicebot2.5.5 doesn't work at primedice because it's the version before i implemented primedice and i haven't released a stable dicebot v3 just yet (but it's close now), but the alphas of v3 works on PD

Build 7 of dicebot has a bit of a problem with the lua wrapper i used, but build 8 (being released later today) fixes that issue. I never dropped support for primedice
1460  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 08, 2015, 09:54:45 AM
seuntjie bot not work for dadice or just my connection
im not seen my balance at bot

dadice? I've never implemented the bot for dadice, why would it possibly work?
Pages: « 1 ... 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 [73] 74 75 76 77 78 79 80 81 82 83 84 85 86 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!