Bitcoin Forum
May 27, 2024, 01:02:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 22 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 »
1421  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 05, 2015, 11:57:27 AM
Hello seuntji..

how to make bet like this..

for every x roll loss increase by multiplier ..in example for every 100 loss increase by 100%

base bet 100 loss till 100th, then next bet 200..if it loss again on 100x rolls then next will be 400 bet...

thanks

Use the preset list and make a list of the bets you want it to make, or write a lua script to do it
1422  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 04, 2015, 12:29:53 PM
can't get this to work on Ubuntu are there any dependency I need to install
Yeah, dotNet. It's written for windows, it wouldn't work on unix.

You can try compiling it with mono, but you will need to compile every dll file with mono as well.
1423  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: April 03, 2015, 10:16:56 AM
Nice work seuntjie.
Can you add to zigzag option to switch hi low depending on roll number not just win loose. For example if roll below 50.0000 its hi and if higher 50.0000 its low. Or if roll below 50.0000 its low and if higher 50.0000 its hi. Thx.

Currently not and I don't plan on implementing it or something similar, but from the next build onward it will be possible to do this in the programmer mode.


Hello. If possible, please do so:


There's a bit more to it than most people realize. I will implement something like this soon, just need to figure out all of the details first.
1424  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 30, 2015, 10:53:24 AM
Hi,

Is it safe to run more than 1 instance of the bot?

I was hoping to run one for JD and another for PD.

Thanks!

There could be some file locking issues if you run both instances from the same folder, and if you use different settings, they might get mixed up when you close and open the bots.

So if you just copy the folder so that each instance runs in it's own folder and you check you settings each time before you start the bot, there should be no problem
1425  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 29, 2015, 01:36:02 PM


It works now But there is a problem .
I want to use multiplier on loss and multiplier on won options on martingale system , and beside them use this function . But it just multiple 1.1 and ignore those options .


Simply i don't want back to base bet after winning at martingale system , i looking for a function eliminate it but use other options .
See below picture :




Thanks for your help .



The martingale option will ALWAYS reset to base after the first win. That's the way it works and I'm not intending to change it.

Figure out how to write the lua code you want then. I can't give you the code if you keep leaving out pieces of the strategy. If you use programmer mode, All other settings are disabled and only the code is executed.


I saw that people started using bots over at satoshidice.com too now, maybe you should consider adding support for their API.

Sure, If someone pays me the 0.5Btc to add the site to the bot.
1426  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 29, 2015, 09:04:02 AM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.

How do that ?



Sir , seuntjie
I want to combine some systems together and really need this function in your bot at martingale system ,  Please do something .

I did something like that but it didn't work .




A series of betting that i want :

Base bet 10 doge
After loss multiplie by 1.1
After wiining again multiplie by 1.1

So :

10 Doge
11 Doge
12.1 Doge

It probably didn't work because you missed the second end.

So if you want it to just multiply by 1.1 after every bet, the code for lua will just be:

Code:
function dobet()
nextbet=previousbet*1.1
end

Make sure you copy the whole thing this time, and after you've copied it, type start() in the console to start betting, and stop() to stop betting.
1427  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 29, 2015, 08:48:27 AM
thanks for the bot  Grin.
i wanna ask an issue, theres when i use the on primedice it always crash.
anyone know how to fix this ? bcos in another dice site i works well.

When it crashes, please click on the details button and send me the complete error message as shown there. Without that, I can't fix the problem.
1428  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 28, 2015, 10:46:07 PM
So does anyone have a profitable algorithm to use with this bot yet?  I will pay bitcoin to someone who can come up with one that works.

How about paying bitcoin to the creator of the bot? I also need to make a living you know
1429  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 28, 2015, 11:00:37 AM
seunthji, how to use preroll on this bot?

i couldnt find it, is that in custom strategy? sometimes my bet just roll for 0 bet..is that error?


To set up prerolling for DiceBot, see
1430  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 10:13:44 PM
Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...


Usually there's a details button, If you open that, it should show the stack trace. I'd need to see the whole stack trace if possible.

  I just get a dice-bot has stopped working correctly.  The only option is to close the program.  This is running under windows 7 if that matters.  Let me know if there is any kind of dump I can take when it happens again. 

   And while I've got your ear.  Is there a way to print text and variables in the same line?  I've just coded 2 prints instead.  Figured I'd ask...

I was able to pull this up in windows event viewer.

Faulting application name: DiceBot.exe, version: 0.0.7.0, time stamp: 0x550c0f6f
Faulting module name: KERNELBASE.dll, version: 6.1.7601.18229, time stamp: 0x51fb1116
Exception code: 0xe0434352
Fault offset: 0x0000c41f
Faulting process id: 0x29e8
Faulting application start time: 0x01d068b40fc91db4
Faulting application path: C:\Users\user1\Bitcoin\Bots\dicebot b9\DiceBot-v3 Alpha\DiceBot.exe
Faulting module path: C:\windows\syswow64\KERNELBASE.dll
Report Id: 74ce37a2-d4ab-11e4-ad9b-40f02f074de8

Working back this is the prior error.

Application: DiceBot.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AggregateException
Stack:
   at System.Threading.Tasks.TaskExceptionHolder.Finalize()



There should be more after    at System.Threading.Tasks.TaskExceptionHolder.Finalize()

That's the part I really need
1431  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 04:44:06 PM
Perfect...  Sounds like you have most of the stuff covered.  I was able to recreate the code pretty easy.  I just created it yesterday...   It takes more then a day to forget what the heck I did...  Cheesy  I've been just pasting the code into the code area for now.  I'll play with the file functions a little later. 

   I did crash a few more times.  What info are you looking for? I really just get a little pop-up that says dice-bot has crashed, close the program....  Not sure if there is some setting I can check to get better info...


Usually there's a details button, If you open that, it should show the stack trace. I'd need to see the whole stack trace if possible.
1432  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 27, 2015, 04:04:50 PM
 Seuntjie,

   Played around with the programmer mode.  How do you save the code?  I was hoping it was automatic, but after a crash and losing my code, I find it is not.  
I can't seem to cut/paste in the code box either...  Can I put it into a file and have it automatically loaded?  

EDIT: ctrl-c and ctrl-v work, so I'm able to code it up in note pad and copy it over...

As of yet, I haven't added a way of saving the code automatically or loading code into the bot. Been meaning to do so, just haven't gotten around to it.

for now, you can use the dofile() method to load from a file.

To do this, just delete the dobet function from the code box (would be best if it's empty), then execute dofile("your script name.txt") from the console. If you start the bot now, the loaded method will be executed. Alternatively you can replace the code in the code box with dofile and just start the bot normally.

Note: It's important that the dobet() function is NOT in the code box when you start betting. when executing start(), the code in the code box is executed. If dobet is present, it will override the one in your file.


  A few questions came to mind while playing around.  How is the first roll's input determined?  IE the bet amount and hi/low?  I added a few variable inits before the dobet() function.  They seem to get set correctly, but not before the first roll..  

At the moment, the first roll is determined by the base bet text box in the basic and advanced modes, same for chance and it defaults to betting high. In build 9 there is a bug that prevents changing these values from outside the dobet function, but I've been working on improving it and the next version will fix these issues.

Some of these issues has already been fixed and the code has been committed to github if you want to compile the bot yourself and test it out.

I don't know how many people you have using the programmer mode, but a cool addition would be to have a few screen areas defined for input and output.  This would allow changing parms from the panel, and displaying some output related to the run.  

The console is there to allow input and output. you can declare and set variables using the console, as well as get their values using the print function. you can also use the print function from inside your code to print applicable info to the console during the run. The stats windows and some other hidden features will be view-able while in the programmer mode in the next build (these updates has already been committed to github).

The console is pretty much like a javascript console. You can execute just about any code from it.

I coded up the mutawa function with a zig/zag twist.  It was working great till the bot crashed and I lost it all.  Not a huge deal about 40 lines of code,  and I remember most of it...    
Sorry to hear you lost the code. I know it's an inconvenience and I will make it save the settings automatically soon.
Would be great if you could send the error details from when the bot crashed though, Hard for me to fix errors if i don't know what they are Smiley




Edit: github repo: https://github.com/seuntie900/DiceBot
1433  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 25, 2015, 05:58:40 PM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.
1434  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 25, 2015, 08:08:00 AM
http://c2n.me/3eQ69Tz

bug fix please

Where are you from?
on which site are you betting?
what do you do when this happens?
which build are you using?
I need more details.
1435  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 11:28:15 PM
999dice is a scam, why promote it with this bot?

Prove it .

Are you really trying to tell me 999dice isn't rigged?

LOL
Rigged or not it pays out instantly when you withdraw sooooo how is it a scam?


Not on this thread please. This thread is to discuss the bot, not how scammy the sites are. Take it somewhere else.
1436  Economy / Gambling / Re: SafeDice.com ★ Bitcoin Dice ★ Low 0.5% Edge ★ Referral ★ Fast Cashout ★ Fair on: March 23, 2015, 07:30:00 PM
you are the best ref's ever!! <3



I beg to differ =D

1437  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 02:10:29 PM
Are you ever going to make a PD bot? We could use a reliable bot, they're much needed over autobet
I think that their API is very limited in requests and their API is also limited. Their autobet is also pretty good and I would be fine in keeping it (no reason to pay for another bot). PD works perfect for martingale and it has been very profitable for me.

Like i said, The alpha version of v3 already supports primedice. Stunna was generous enough to pay for the bot, so you all can get it for free. Latest download link is just on the previous page
1438  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 10:25:02 AM
Are you ever going to make a PD bot? We could use a reliable bot, they're much needed over autobet

Check out the alpha version, download link is on the previous page.


seuntjie, what about my question on previous page?
Bot is still regular crash when choosing strategy (Win7 x32). Is possible fix it?.
Thanks.

I've been busy with other work and I have not yet had chance to work on the bot.

But here goes the questions.
What is manual settings? I don't know what manual settings in the bot is.
Does it work when it's not on "manual settings"?
where are you from?

If your computers calculator uses a comma instead of a period, try setting your date and number format to english US before opening the bot.
1439  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: March 21, 2015, 12:02:39 PM
When ever i try to log in to dadice I get an error 502 page from cloudflare as well. It could be related to Tidus' issue. Maybe there's a connection issue to your database or api servers? I've seen many other users complaining about similar issues on primedice chat, So it's something you might want to take a look at.
1440  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: March 21, 2015, 09:46:53 AM
I'll just leave this here seeing as i can't post the link or the address in the site chat.:

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


Just to clarify, this is for DiceBot, the betting bot, not the chat bot.
Pages: « 1 ... 22 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!