Bitcoin Forum
September 24, 2024, 04:44:47 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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 ... 86 »
561  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 04, 2017, 09:06:28 AM
Good news is, it appears I can now "donate" without any errors. (I guess it worked)

What does stop conditions "Withdraw" , "Stop playing" , and "invest" do? Withdraw and Stop playing are obvious.....what does the "invest" option accomplish?

I'm testing it again with the stop conditions @ a certain amount +Enabled. And using the "Withdraw" option to a valid BTC addy. < The first time I did this, the bot reached the stop limit, but at the bottom was an error > something to the effect of > "unexpected error" (it did stop though) However, the btc was never "withdrawn" to the address I provided.

I had to log into the real website via Chrome browser and withdraw manually from the site......wait a minute....I think I just figured out while typing. I have 2FA enabled on the site. That has to be it.

Anyway to work around this problem / issue without disabling 2FA on the website? Thanks.

Nope, if you have 2fa enabled and the site requires 2fa code for withdrawing, the bot cannot withdraw. On sites that support investing (and allow the bot to invest)0, like safedice and justdice, you can invest x whenever the conditions are met.
562  Economy / Gambling / Re: [Primedice-unofficial] FAQ, rules and chat commands on: March 02, 2017, 10:14:28 AM
http://prntscr.com/eezcwu

Is this normal or am i blacklisted for hungergames? Have a look username Klu.

You need to be specifically whitelisted (There's a list in the first post of whitelisted users) and there are other requirements. I don't know what they are but I'm guessing your account needs to be >x days old, >y amount wagered, >z chat messages and you need to have been active in chat (>a chat messages) during a certain timeframe before the game started.

I talked in chat and rob said i am whiltelisted. I have wagered above 100 coins more than 10k chat msgs too and account older than a year. Something is still missing that's why i am not able to play HG. Suggest me if i am still missing something.

"you need to have been active in chat (>a chat messages) during a certain timeframe before the game started."
563  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 02, 2017, 09:59:37 AM
Hi Seuntjie,

I noticed a problem in all versions of the dicebot.
In long betting periods, DiceBot It is slowing down.

When you turn it off and on, Accelerating again.

Is there a way to fix this?





Hi ripzombie

Stop the live/embedded chart or reset it periodically.


I've been looking into ways to eliminate or minimize this effect. I'm still not decided on anything.
564  Economy / Gambling / Re: Help on python BOT to resolve PrimeDice Captcha on: March 02, 2017, 08:32:48 AM
Use the Primedice API, then you don't need tp bypass the captcha: https://primedice.com/api
565  Economy / Gambling / Re: [Primedice-unofficial] FAQ, rules and chat commands on: March 02, 2017, 08:22:04 AM
http://prntscr.com/eezcwu

Is this normal or am i blacklisted for hungergames? Have a look username Klu.

You need to be specifically whitelisted (There's a list in the first post of whitelisted users) and there are other requirements. I don't know what they are but I'm guessing your account needs to be >x days old, >y amount wagered, >z chat messages and you need to have been active in chat (>a chat messages) during a certain timeframe before the game started.
566  Economy / Gambling / Re: scripting primedice --- getting started on: March 02, 2017, 08:18:56 AM
I don't understand why people use this? There is an autoroll on the site already

Yeah but the auto roll sucks. What if you want to automate a betting system other than simple martingale, like labouchere for instance. Or d'alembert. Or you need a way to reset the bot after x profit, or stop after y loss. Or automatically withdraw you profits to your wallet.

People use other bots/custom bots for more features/settings/automation.
567  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 02, 2017, 06:18:42 AM
This is by design.

... Loads of useful stuff info ...

Ok... Thanks... very useful and good to know info there Smiley

In the meantime, I have figured out a "hackish" work around that works for my situation... instead of trying to use the stop() command outside the dobet(), I just initialise the bet amount to 0. This causes the site to refuse the bet as an invalid amount and the script will halt without any danger to my bankroll Cheesy

The whole point of this was to enable me to add in some sanity checks on my variable settings and stop if I had mis-typed something and didn't notice (again Tongue)



You could always use runsim and run a small 10 bet simulation or something.
568  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 02, 2017, 06:13:18 AM
Is it possible to add a function of trailing stop?
When the bot is in profit.It will automatically stop when the profit drops, say 0.00001000.
This will help to secure the profit. Thanks.

Not in the advanced mode. You can do this in the programmer mode though.
569  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: March 01, 2017, 08:20:35 AM
This is by design. When you enter start(), the bot executes ALL of the code in the code box, so it defines sets global variables (like nextbet) and defines the dobet function. It does not execute the dobet function. It places a bet using the nextbet, chance and bethigh values. Once the result is received, it calls the dobet function.

The dobet function is there to process the result of a bet. it can't process the result of a bet if there hasn't been a bet yet.

Here's a steemit article that explains the process the programmer mode uses: https://steemit.com/dicebot/@seuntjie/dicebot-programmer-mode-tutorial-02-process

A stop command outside of the dobet function wouldn't do anything. Internally the bot handles the start() function as:

  • Set Available LUA variables
  • Parse code in code box.
  • get variables from lua environment
  • indicate internally the bot is running auto bet (start the bot)
  • place the initial bet

If you use a stop command outside of the dobet function:
  • Set Available LUA variables
  • Parse code in code box.
  • Indicate to the bot to stop from the stop function. Stop betting processes etc
  • get variables from lua environment
  • indicate internally the bot is running auto bet (start the bot)
  • place the initial bet

If you don't want the bot to bet, don't start it.
570  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 28, 2017, 07:55:28 PM
There has been and will be for the next few hours some intermittent downtime on my site. I'm working on a few things on the server.

Edit: site should be running normally again.
571  Economy / Gambling / Re: 🔶 YOLOdice.com 🔶 FAST bets, chat, quick deposits, charts, PLAY or INVEST! on: February 28, 2017, 06:15:13 AM
Was rolling your site on dicebot and suddenly I realised the betting speed is getting slow with increasing number of rolls. With some "error" and "getting seed data...Please wait". Hope you resolve it with seuntjie and soon we get to see faster rolls even after 10k bets in a row

go to view->settings and disable the get seeds automatically settings. (remember to click save). The embedded chart slows down the bot after a few thousand rolls, stop the chart for faster continues rolls or reset it after every few thousand bets.
572  Economy / Gambling / Re: KINGDICE.COM - Bitcoin Dice & Invest in bankroll on: February 27, 2017, 07:00:29 AM
i dont understand how the provably fair works here. howt to check bet. and where

You can also visit https://kingdice.com/verify.php which describes the provably fair system and includes some pseudocode now on how the system works.

The description provided on https://kingdice.com/verify.php is not provably fair (but the site is, it's just a bad description).

Kingdice needs to mention that the server hash is calculated using a combination of the server seed (which is basically a salt) and the server roll, and they are combined.

Currently, they only say the server hash is calculated using the server seed, but the roll is calculated using the server roll and client seed, so the hash has no meaning and the server roll can be changed without affecting the hash.

So replacing
Code:
var $ServerHash = serverHash  // SHA256 of ServerSeed, generated server-side.

with
Code:
var $ServerHash = serverHash  // SHA256 of (ServerSeed+ '_KD_' + ServerRoll), generated server-side.]
Should resolve the issue

To re-iterate: KINGDICE IS PROVABLY FAIR, the description of their RNG on the verify page just isn't correct.
573  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 26, 2017, 09:03:42 PM
Can we have duckdice.io added to your bot too? It will be really good if we are able to roll that site through your bot.

I talked to duckdice admins about it briefly. the didn't seem interested (yet). Maybe you can convince them.

Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks
-snip-

This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.

okay, i will change my computer time +0 UTC . thanks Smiley

Edit: i have another problem, after i change my computer time and trying to relogin and then i start the bot but got notice "insufficient balance". i guess this error now from API rollin or something else  Huh



You didn't need to change your timezone, just make sure your time is correct for your timezone. It seems that you also changed your number format settings along with your timezone (so you probably changed your region). Make sure your number format uses a period as decimal separator, and not a comma.
574  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 26, 2017, 08:02:22 AM
Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks



This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.
575  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 25, 2017, 08:05:54 AM
Seuntjie,

A quick question regarding the "Maximum Bets" value in the stats window... is that the Bot's best "guess" at how many bets I can make using current settings before the dreaded "Bet is larger than Balance" message appears? Wink





Yeah, it's a GUESS. It only works with martingale and takes only a few calculations into account. I wouldn't use it if you don't have the most basic martingale settings set. I've actually been planning on removing it from the bot.
576  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 24, 2017, 11:08:25 AM
Hi, what is the fastest gambling site the bot works?
I know that bigger bets means faster bets, but any site in particular have a higher speed?
Thank you

999Dice
BetKing
Betterbets
Bitdice
Bitsler
BitVest.IO
CoinMillions
crypto-games
FortuneJack
Just-dice
KingDice
Monerodice
MoneyPot
NitrogenSports
Prime Dice
Provably.IO
Rollin.IO
SafeDice
Satoshi Dice
WealthyDice
YoloDice



Currently YoloDice is the fastest by far. I think my moneypot app is the fastest after that. Bitvest and rollin is also pretty fast. I think the rest are all about the same speed.

I don't really have good data on this. My internet is extremely slow, most sites are only slow because my internets latency is too high and transfer speeds are too low. Some users with better internet and that are closer to the servers might have better info on that.


Why not try by yourself? Honestly i didn't tried all those sites, i've just tried Bitsler, Justdice, and Safedice. I can say bitsler is faster from these sites i tried. Not sure if we can run fortunejack on seunjti bot, last time i tried, there is a problem with their couldflare.

Fortunejack still doesn't work
577  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 22, 2017, 08:01:41 AM
Some files in this bot will be deleted by anti-virus software.
Could you certify that this bot is safe by companys of anti-virus software?
Also, can I use this bot in Linux?

Anti-virus programs flags just about anything that is not signed with a software signing certificate, which I cannot afford. The bot is safe.
No, it's a .net program which is (for now) only running on windows.
578  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 22, 2017, 08:00:05 AM
Also, the "donate" button doesn't work. I click donate at the standard setting of 1.00% and it gives me some unexpected exception error.

On what site are you trying to donate?
Also, what are the exception message and details?
579  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 22, 2017, 07:58:53 AM
To the dicebot man......
Just Seuntjie is fine

 First, I am a new-ish user. I get the gist of it but there seems to be some bugs, even in the latest release.

Second, I doubt very seriously if they are bugs, but rather me doing something wrong. I'm playing on 999Dice with 2FA enabled and it lets me log in fine, etc. All good. One annoying thing I've noticed is that if I stop the bot and then (sometimes??) reset the chart and then start the bot again, the charting will start off correctly going up and down, etc....but then after maybe 25-50ish bets no matter if I win 50 times in a row or lose 50 times in a row the chart doesn't reflect up or down changes. It DOES correctly color wins and losses but the graph line literally looks like this > --------------------------------------------
I've never experienced this. I'll try to reproduce it.

Last night I finally got wise and stopped the bot, shut it down, restarted it, made sure all my settings were correct and then hit "start high" and the graph worked perfectly after that, all night long. Thoughts on what I'm doing wrong to cause the graph to not report correctly?

Also, for whatever reason last night, 999Dice came to a dead CRAWL on bets. So much so that I restarted it again this morning and logged back in. No troubles so far.

I have left this bot running for over 48hrs straight on 999Dice and the graph is beautiful. Smiley A nice and steady rise. (Stumbled on a killer setting) So I don't know what's up with it seemingly stopping or slowing down for no reason. I don't have ANY stop conditions. I'm winning just letting it run and run and run..... Thoughts?
The chart start taking up more and more memory after a few thousand bets and the bot become sluggish, as it needs to plot hundreds MBs of data to the chart the whole time. If you plan to run the bot for more than a few hours non stop, disable the live chart and use the charts in the view menu when you need to use a chart

Also, these "settings" that I am using and found elsewhere, it seems like the settings that ARE NOT EVEN ENABLED, if changed from the original formula I found which also DID NOT HAVE those same settings enabled.....it seems like even if I change those numbers, but still not enable them, the winning doesn't happen anymore. Sad

I literally copy every single number from the original formula I found, even if the original isn't enabled. To me, it should make no difference but I swear it does, OR, it's completely in my head. But when I copy every number exactly, enabled or not from the original formula, it works beautifully. I don't understand that. Thoughts?
Sounds like a gamblers fallacy to me.


Last, if I'm winning with this formula, the "coin" I use should not matter. Correct? I mean, the settings are the settings. Do the sites somehow magically know when you've changed from Doge Coin to Bitcoin or Litecoin? I haven't been brave enough to test that yet because what I have going on, I figure is too good to be true. I'm using Doge Coin and I've consistently let it run 48 hrs at a pop and I consistently get the same exact results > a slow and sure graph that goes up and up and up and the profits match it. Smiley Thoughts?

Thanks.
PS.....was going to include a screenshot but cant figure out how to insert an image.
Of course the site knows which coin your betting in, they have to process the bet. But they're not monitoring your rolls to make you lose if you use a different currency. The provably fair system makes it impossible for them to do so without the user being able to be detected.

I just want to make sure you understand that there is no betting system that will profit indefinitely. You will get unlucky at some point and lose. Gambling should always be for fun and not for profit.
580  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: February 19, 2017, 09:25:02 PM
DiceBot 3.3.1 Available for download! https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
Bitdice added username based login
Added YoloDice
Added Provably.io


Changes
Migrated Rollin to API
Some background changes that users won't notice but makes thing easier for me.
999dice proxy added


Bug Fixes
Bitsler randomly stopping for 2 minutes
Bitdice not betting
Rollin fixed
Betterbets fixed
Kingdice Fixed
SQLite queries, should fix some bet history and chart issues.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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 ... 86 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!