Bitcoin Forum
May 09, 2024, 07:21:13 AM *
News: Latest Bitcoin Core release: 27.0 [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 ... 86 »
441  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 06, 2017, 07:44:22 AM
Hi,

Is there a command line for playing sound files (.wav)? I've been looking around for examples to no avail. Thanks.

alarm() or ching()

You can select which files to play for each in the settings window (view-settings. Remember to save before you exit)

Or, if you can figure out how to bind to http://luaforge.net/projects/luacom/ from within LUA and how it handles playing sound files, you can try using that.
442  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 05, 2017, 08:01:29 PM
Sorry
I think i did brake bitsler.
I did not ment to.  Huh

Hello guys,

We will make an update at midday (GMT Time, in 2hours 30 minutes) It will last few hours.


- New deposit/withdrawal system :More instant deposits, withdrawal fee with estimation in block before confirmation.
- Password recovery by email (except for VIPs)  (set an email to get this option)
- Protection against hacking : Email confirmation if a new IP address login to your account (set an email to get this option)
- New chat features
- New connected list with your friends and followers
- Fixed a lot of small bugs
- New FAQ
- New catpcha
- New tags


We are sorry for the inconvenience.

Cheers,
443  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: May 04, 2017, 06:13:30 AM
I have problem with BitDice, i can login but can't bet  Angry can you tell to me why ? Thanks

Which version of the bot are you using (version number please)?
Do you see your balance after logged in?
Does it show any error message at the bottom of the screen after you try to bet?

I use new version dicebot 3.3.3
I dont see anything after success login
No


It looks like bitdice has made some updates again that broke the bot. I'll have to look into it.

Did you ever have a chance to look into why the bot wasn't working on BitDice? Seen several users report issues with it.

I unfortunately have not had the time to touch DiceBot in the last month.
444  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 02, 2017, 09:46:10 AM
Hello
Thanks again for all your help
I have one more question
Why when my chances are 49.50 when playing low it is ok but when changed to Hi it changes to 49.49??

That depends on the site you're playing on. it has to do with how some sites handles/parses the chance. You will see on rollin for example. you can set your chance to 49.5, but your actual chance will be 49 or 50, but not 49.5, because the site only allows integer chance.
445  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 30, 2017, 09:36:41 PM
Hi

I was using Seuntjies DiceBot for Bitsler and got my account hacked today! I just used this bot, nothing more.


Attention to all users using this bot!

Before you start throwing around accusations, let me ask you a few things.

Did you have multi factor authentication enabled at bitsler before trying to log in with DiceBot?
Where did you download DiceBot (please be honest)?
What version of DiceBot were you using, as in what was the downloaded archive name (again, please be honest)?

Here's why the official DiceBot is NOT the cause of your account being hacked.

1. Bitsler does not allow DiceBot to tip or withdraw funds from your account, and there is no code in DiceBot that allows it to do so at bitsler.
2. Your password and any other information is only sent to the site you're trying to log in to. You can verify this in the code of dicebot, since it is open source.
3. Bitsler requires that you have multi factor authentication enabled for DiceBot to be able to log in, so even if DiceBot did log your login details, I would be unable to log in unless I did it within 30 seconds of you logging in. I'm sure Baryom will be able to confirm that no IP or device that I've ever used to log in to bitsler has been used to log in to your account.
446  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 10:33:55 PM
You can't restart the bot once you call stop(), the only way for it to start up again is to enter start() in the console window like you do to initially start the script running...

So, instead of issuing the stop() command, just track your profit amount, when it reaches the target you're happy with, use the invest() command and then reset back to initial script settings and continue Wink

NOTE: I'm not sure if this will work with any site... I've never used the invest() command, but there seems to be invest() code for just-dice in the dicebot code, so I'm assuming it works

Code:
...
startBalance = balance
runProfit = 0
profitTarget = 1.0 -- Set this to how much PROFIT you want to make before you invest, not the balance!
....

function dobet()

  runProfit = balance - startBalance

  if (win) then
    --do win stuff
  else
    -- do loss stuff
  end

  if runProfit >= profitTarget then
    ching()
    alarm()  
    print("Your Balance is " .. balance)
    print()
    print("TARGET ACHIEVED!!!")
    print()
    print("You Won " .. runProfit .. " for this Session")
    print()

    print("Investing: " .. runProfit)
    invest(runProfit) -- invest winnings
    
    -- reset back to beginning and continue
    startBalance = balance
    runProfit = 0
    chance = 90
    bethigh = true
    nextbet = basebet

    print(" ")
 end

end

Ok that probably why i got a lot of luna errors when i tried putting in the invest() and start() commando after stop(). I'll give yours a try to see if it works Wink thanks for the help so far Wink

Take a look at the tutorials linked on https://bot.seuntjie.com/programmermode.aspx, specifically https://steemit.com/dicebot/@seuntjie/dicebot-programmer-mode-tutorial-02-process
It will give you an overview of the process the bot follows every time a bet is placed.

Calling stop, then invest/withdraw/tip, the invest/withdraw/tip commands will still be executed/processed, as the whole dobet function is completed. But you cannot start the bot again after stopping it from within the script. It should never be necessary to do so as all of the functions that can be called from the programmer mode as synchronous and serial.

Edit: Also, see https://bot.seuntjie.com/features.aspx for a list of features that is enabled for the supported sites.
447  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 29, 2017, 10:21:50 PM
I do not understand the difference between seuntjie dice bot and dice website. Could you please give me a clear distinction between them ?
Plus if there is a script writers place would we be able to use them on both the website or the bot ? Is there a restriction in any of them other than playing on other websites ?

DiceBot is an application used to automate bets placed on dice websites. Any bet placed through DiceBot is placed at a dice website (you can choose where by selecting a site from the site menu in the bot before logging in), against the websites bankroll and the bet is process by the site. DiceBot simply places the bets on your behalf at a dice site and determines what the bets should be based on the results of the bets and how you (the user) configures or programs the bot.

LUA Scripts written for DiceBot work only with DiceBot, but will work with any website supported by DiceBot. You cannot use a LUA script written for DiceBot in a browser console, nor can you use a script intended to be used in a browser console in DiceBot.

Sites sometimes restrict what DiceBot is allowed to do. Some sites will not allow the bot to withdraw money or tip other users, while other sites do. For a list of features supported for all of the supported sites, please see https://bot.seuntjie.com/features.aspx
448  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 29, 2017, 10:42:25 AM
I was under impression that waiting simulates more human behavior so maybe does not attract system attention?
You're betting via API's... the site already knows you are likely using the Dicebot... not many people are going to take the time to handcraft JSON and POST requests to roll dice when you can just load up the website and bet via the front end Wink

Also, it isn't like the site owners don't know about and/or allow the Dicebot... they actually have to pay Seuntjie to get their site added into the Dicebot! Tongue


Also, sites don't monitor your rolls, figure out what strategy your using and make you lose. They don't need to, since the sites have a mathematical advantage over the player. And if they did, you can prove that they did by taking them up on their provably fair offers and checking your bets. The provably fair concept basically states that they cannot change the outcome of your bet to make you lose without you being able to prove it.
449  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 26, 2017, 05:47:18 AM
DiceBot is intended to be used for entertainment purposes only. Gambling = paying for entertainment. There is no way to always win in gambling. Never gamble more than you can afford to lose.
450  Economy / Gambling discussion / Re: Guide For Seuntjies Dice Bot on: April 25, 2017, 04:11:42 PM
Hi, Seuntjie

Recently I want to login to rollin.io using dicebot. I created an API Key and got both key and the secret code. But when I filled all that information plus my username into the dicebot login pane, unfortunately, it gives me an error message which mean I can't login to rollin.io using dicebot. I use the recent version of your dicebot, v3.3.3. I need your help to resolve this problem. Thanks!

Best Regards!

Please ensure that your computers time and time zone is configured correctly. It has to be correct to the second for rollin to work.
451  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 25, 2017, 04:09:56 PM
Hello seuntjies

Is there simulate log wher i can check?

Thanks

If you're running a simulation from the simulation form (View-> simulate), you can click on the export sim button to save the simulation to a csv file.
452  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 20, 2017, 05:47:49 AM
Just installed on new computer and Bot is crashing. Chart is hidden. Running list in Prelist. Rebooted after 1st crash. 2nd crash near 999 bets. Info is:

 System.OverflowException was unhandled
Message: An unhandled exception of type 'System.OverflowException' occurred in System.Windows.Forms.dll
Additional information: Value was either too large or too small for a Decimal.

See this before? Any ideas?


OK Seuntjie, tried 3rd time and it is crashing at 1000 bets exactly. Running 3.3.3

Thank you for the error, you're the first one to actually send it to me. Could it be possible for you to send me the complete error message? That should be only a small portion of the whole message. This already helps a lot and gives me a better idea of what's causing it.

The chart is still updated even when hidden. You can stop/disable the chart by clicking on "stop chart" before hiding it. That should solve this problem until I can release a fixed version.

Can you please export your settings and send it to me (via email/pm if you don't want to share). I haven't been able to reproduce the error myself.
453  Economy / Gambling / Re: KINGDICE.COM - Bitcoin Dice & Invest in bankroll on: April 19, 2017, 08:38:35 AM
Invest in Bankroll :
   
  • Real time Investments/Divestments.
  • Investors keep 50% of profits.
  • Commission taken every Monday at 00:01 CET and is never charged twice on same profits.
  • Password prompt upon Divest, for security purposes.
  • Max profit is determined on 1% of the total bankroll.
  • Investors are in Top priority in terms of Support/Issues and Feature Requests.
  • Investors Funds are kept in a public Cold Storage address, which will be soon announced in this thread.
  • Investment Transaction History  actions can be seen under "Bankroll Transactions" on Transaction History.
  • Investments/Divestments are fully working on any device giving easy access and total control.

Before you invest read about Investors Shares and Investors Risks: Here
   

Quote for my reference, look like a great website to play with.
I'm wondering how much return to get for a bankroll investment such as BTC0.1 or BTC1 for a start   Huh I mean, an average profits for a week. Pardon me, but, do you still accept an investor ? I'm sorry if I bother you.

You can't predict the outcome of your roi nor from OP because this is not something that you can predict. Peolle win or lose depends on their luck, if they lose you will get much in return and if they win you will lose ot for sure. But for a long term it always roi, just matter of time. And I believe OP also can't even give you an exact number for your roi too

The best estimate you can make is that you will probably make, on average, <house edge%>-<commission %> every time the bankroll is turned over. So if the current bankroll is 200 Btc and it takes a week for the users on the site to gamble 200Btc (I'm pulling these numbers out of my arse to use as an example), you can expect to make 0.5% profit on your investment every week. Of course, some weeks you're going to make a loss as someone wins and walks away, other times your going to make 5% profit as someone loses a crap ton. Over an infinite amount of bets, you can expect to make 5% profit for every time the bank is turned over.

If KingDice can tell us how often the bankroll is turned over, you can kind of make some estimates, but it'll still be guesstimates and not extremely accurate.
454  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 18, 2017, 04:03:42 PM
Working good on one laptop.

Made .2 BTC each day for 2 days in row starting with .04 BTC bankroll using Preset list of 1400 bets using 396x odds, progressive bet increase. Only lost two full betting series of .04 BTC and still withdrew .4 BTC, with enough left in account for 2 more series loses.

Sending a donation!

But... Just newly installed on 2nd laptop and it crashes at 1000 loses. Only have Preset list set to reset on win, stop st end of list. No other stop/reset set. Any suggestions?

Sounds like it's likely caused by the chart. Are you using version 3.3.3? Are you resetting your chart? Can you send me the error details from when it crashes?
455  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 17, 2017, 06:44:50 PM
Hi,

I have an issue connecting with Seuntjies bot on your site, tried everything from disabling 2FA to registering a new account. It just says that the password/username is wrong.

If you are from the US or any region that needs to complete a captcha in your browser before you can open the site, DiceBot will not be able to log in.
456  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 17, 2017, 06:43:59 PM
Question to the developer, you can make a website in the bot freedoge.co.in

Please see "Can you add my site to the bot?" on https://bot.seuntjie.com/faqs.aspx#faq8
457  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 17, 2017, 01:34:18 PM
Hi there!

Is there any option to reset to base condition when there is a WLWLWLWL.... streak ?
My system fails if I face too many WLWLWLWL, so how I can activate an option when for example I face 4 or 5 zigzag win & loose streak to automatically reset? ?

I use martingale:
After two loss multiplier x 
After two win multiplier y
and reset when 3 wins in a row.

the only option that I want to add is to reset when I face (WLWLWLWL....) OR (LWLWLWLWL...) streak!

You will need to use the programmer mode to do this. See the programmer mode page on my site: https://bot.seuntjie.com/programmermode.aspx
458  Economy / Gambling / Re: Rollin.io is not a fair gambling site on: April 14, 2017, 10:14:31 AM
edit: additionally random_seed is not used for bet result:

Code:
HmacSHA512(server_seed, client_seed)

'random_seed' is simply an extra string for the hash.. probably because they are afraid someone might brute-force server_seed (which isn't possible with that length - but okay.)

Actually... that does strike me as being a bit of a flawed system... It would appear that they are manipulating the server_seed hash they give to you before a roll and this actually prevents them from being able to prove that they haven't modified the server_seed. All you get is a "random_seed" that was supposedly hashed with the "server_seed" to give the server_seed hash.

Note: I am NOT claiming this is what Rollin does, but what could potentially happen with a setup like this...

What's to stop someone from just pre-generating a couple of different server_seed+random_seed combinations that make the same hashes... Now, a player gets a big "win", and then the casino could just search through their list of server+random seed combinations until they find the one where the server_seed makes that roll a loss... Then, they could just post the loss result, say here is the server_seed that was used... and we can "prove" it because it matches up with the server_seed_hash... provided you add in this "random" number that we just picked out of nowhere but didn't give you up front?

I'm sure the math involved in the hashing functions probably makes the likelihood of hash collisions for server+random seed combinations very very very small... but then, why even use the random_seed in the first place? The chances of someone brute_forcing the server_seed from just the hash are supposed to be just as tiny, aren't they?



What stops them from generating different combinations that match is the 2^512 resulting hashes that you get from HmacSHA512. It'd be nearly impossible to generate two seed pairs with matching hashes.

I also prefer nonce based RNGs, but one upside or a per bet based system is that you can verify the rolls as you play, where with nonce based systems you can only catch nonce skipping as you play. There's some security in that I guess.
459  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 14, 2017, 07:01:36 AM
For some reason, not able to download the latest build 3.3.3 It gives a red error:

Something went wrong while fetching your file! Please reload and try again. If the problem persist, please contact seuntjie.

However, when I go to the Download page, older builds download ok...  Maybe link is broken or is it just me?

THANKS!

Sorry about that, should be working fine now.

You set your multiplier mode to max. That means it's going to multiply your bet 3 times and then not again until you've won.

You're trying to reset your bet using a setting that changes it once. Use a reset condition.

So set your multiplier mode to CONSTANT.
DISABLE the "after x bets change your bet to y" setting
go to the stop conditions tab and ENABLE the "reset after x losses in a row" setting.

Thanks alot! didn't know the stop conditions tab has similar feature as i didn't really use that tab really appreciate your help!

One issue here, i tried login in kingdice with the id and password, but it says wrong password or create new account. The id and password can be logged in the website, should i delete any cache file or something?

Kingdice had to disable DiceBot logins for security reasons. I'm working with them to find a work-around

Alright thanks for your quick response and help

Such a great and friendly developer!

Thanks for your contribution towards the community Smiley
Yeah he has been here for a long long time helping out gamblers.

Seuntjie I wanted to ask one thing, If I remember correctly this was based on C# coding, I assume c# base and .net involved heavily on your website but what else was needed to build the website itself ?

c#, asp.net stack and MSSQL
460  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 13, 2017, 03:59:08 PM
You set your multiplier mode to max. That means it's going to multiply your bet 3 times and then not again until you've won.

You're trying to reset your bet using a setting that changes it once. Use a reset condition.

So set your multiplier mode to CONSTANT.
DISABLE the "after x bets change your bet to y" setting
go to the stop conditions tab and ENABLE the "reset after x losses in a row" setting.

Thanks alot! didn't know the stop conditions tab has similar feature as i didn't really use that tab really appreciate your help!

One issue here, i tried login in kingdice with the id and password, but it says wrong password or create new account. The id and password can be logged in the website, should i delete any cache file or something?

Kingdice had to disable DiceBot logins for security reasons. I'm working with them to find a work-around
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 ... 86 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!