1
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
2
Programmer Mode / Re: BITVEST
« on: July 13, 2021, 09:16:16 am »
Doesn't run is a very broad term. Can you explain what happens when you click start? Are you sure your bet is above the minimum bet for the currency you're running?
3
Bugs and Suggestions / Re: DiceBot doesn't recognize balance in 999Dice
« on: July 12, 2021, 10:04:10 am »
Did you select the correct currency from the site menu?
4
DiceBot General Discussion / Re: Betting speed on 999Dice
« on: July 12, 2021, 10:03:56 am »
999Dice throttles bets based on size. Bigger bets are faster, smaller bets are slower.
Also, those videos are almost always sped up, so you don't see the actual betting speed.
Also, those videos are almost always sped up, so you don't see the actual betting speed.
6
Bugs and Suggestions / Re: I cannot login to Bitsler
« on: July 10, 2021, 07:51:39 pm »
Are you using your username, password AND API Key? All 3 are required to log in. If you have 2fa enabled, it is required as well.
7
DiceBot General Discussion / Re: No API KEY in Stake.com How to Login
« on: July 08, 2021, 07:54:03 pm »
There is nothing I can do about it. There isn't another way for DiceBot to log in but the API key. Voice your concern to stake support and request that they bring back the API key.
8
Bugs and Suggestions / Re: Login successful with Stake but no syncing with the site
« on: June 20, 2021, 08:24:04 am »Update : it is "successfully" logging me in whatever username or 2fa I put. Only the API key matters.
Yes, that's how API keys work. You don't need to enter a username or 2fa at all.
Can you post your dicebotlog.txt file please?
9
Bugs and Suggestions / Re: Login successful with Stake but no syncing with the site
« on: June 19, 2021, 10:56:20 am »
Did you switch your site to Stake in the site menu and select the currency you want to use? The default site is Primedice, and if you try to log into primedice with a stake token, it returns a success but doesn't load data, exactly as you described.
10
Programmer Mode / Re: How to tip from DuckDice?
« on: June 10, 2021, 02:24:08 pm »
Sorry for not replyinh faster, I wanted to test it to make sure they haven't removed/restricted the functionality before posting a solution.
Strings always need to be inside double quotes, otherwise the program just thinks bobdobbs is a variable.
Strings always need to be inside double quotes, otherwise the program just thinks bobdobbs is a variable.
Duckdice chat has a tip function like this: /tip {username} {amount} {currency} {comment?} {silent?}No.
Can i use that in my script to hide the tip from the chat? Like tip(3,"bobdobbs",silent) ?
11
Programmer Mode / Re: Script with every Streak and % of Balance
« on: June 10, 2021, 07:26:22 am »kickit=0You're dividing the balance by 1, so your basebet will be your balance. 100% = /1. So 0.0001% = /0.000001
losebb=balance/0001 --check that math, though
function dobet()
if win then kickit=1 nextbet=losebb end
if (!win) and kickit=1 then
nextbet=previousbet*10
end
--at some point you will want to set kickit back to zero. maybe at a threshold? but you will probably be broke by then unless your chance is high. your post is pretty vague.
end
12
Programmer Mode / Re: nextbet incrise proportionally to the balance
« on: May 17, 2021, 05:10:52 pm »
Is your balance large enough for you to place a viable bet with that factor? Secondly is it large enough to see a viable increase from that factor?
For example if your balance is 0.00010000, your bet would be 0.00010000/1410526=0.000000000007, which is obviously far below minimum bet.
If your balance is 1, you first bet would be 0.00000071. Meaning your balance after the bet would be 1.00000071 (assuming 2x payout), thus making your second bet 0.00000071.... It could take hundreds of bets before you see a 1 sat increase in your bet size.
Also, see the tutorials on https://forum.seuntjie.com/index.php?topic=2.0, specifically the one about variables. There are built in variables that tracks bets, wins and losses and functions to reset those values if needed.
For example if your balance is 0.00010000, your bet would be 0.00010000/1410526=0.000000000007, which is obviously far below minimum bet.
If your balance is 1, you first bet would be 0.00000071. Meaning your balance after the bet would be 1.00000071 (assuming 2x payout), thus making your second bet 0.00000071.... It could take hundreds of bets before you see a 1 sat increase in your bet size.
Also, see the tutorials on https://forum.seuntjie.com/index.php?topic=2.0, specifically the one about variables. There are built in variables that tracks bets, wins and losses and functions to reset those values if needed.
13
Programmer Mode / Re: How to make automatic bet apply to growing balance?
« on: May 10, 2021, 07:16:36 am »
Here is a sample script that does something similar to what you want: https://bot.seuntjie.com/scripts.aspx?id=8
14
Bugs and Suggestions / Re: "Please slow down" Question and report / betting stucks
« on: May 08, 2021, 10:03:15 am »
Primedice and Stake has rate limits, that error you're seeing comes directly from the site. Meaning you can only make x amount of requests to the site in a certain time interval before they start blocking requests. As I've mentioned before in several threads, you work around this by:
Closing the site in your browser (just having it open can cause the error. If you're chatting and/or betting while the bot is running, it also induces the error. Even if you're using different accounts).
Running only 1 bot from your IP
setting the bot speed setting in the advanced mode to a value that works for you (I've found around 1 bet/s to work well, you might find a bit higher or lower works for you). The bot speed setting is applied even when using the programmer mode.
Closing the site in your browser (just having it open can cause the error. If you're chatting and/or betting while the bot is running, it also induces the error. Even if you're using different accounts).
Running only 1 bot from your IP
setting the bot speed setting in the advanced mode to a value that works for you (I've found around 1 bet/s to work well, you might find a bit higher or lower works for you). The bot speed setting is applied even when using the programmer mode.
15