marlboroza
Legendary
Offline
Activity: 1932
Merit: 2272
|
|
March 04, 2018, 09:16:51 AM |
|
Hey guys Is it possible to set up bot to place random bets? Example H L H H L H L L L etc?
|
|
|
|
BTCevo
Legendary
Offline
Activity: 1834
Merit: 1008
|
|
March 05, 2018, 12:22:03 AM |
|
Hey guys Is it possible to set up bot to place random bets? Example H L H H L H L L L etc?
I believe all of these gambing things results is always random but more people just believe that if they use bot it will predictable because it will minimize their loss and boost the result. This is what usualy happened but if you said to set up a random bot, first, maybe it is very easy job for coder to make this random bot, second, why do you want to make it random by using bot if you can do it manually?
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4361
<insert witty quote here>
|
|
March 05, 2018, 01:18:56 AM |
|
Is it possible to set up bot to place random bets? Example H L H H L H L L L etc?
Yes... you can use "math.random()"... and you'll want to initialise the seed using "math.randomseed()" Something like this: math.randomseed(os.time()) -- sets random seed using system time
-- set basebet and chance according to your requirements basebet = 0.00000001 chance = 49.6
if (math.random(100) >= 50) then bethigh = true else bethigh = false end
nextbet = basebet
function dobet()
if (win) then -- do stuff else -- do other stuff end
if (math.random(100) >= 50) then bethigh = true else bethigh = false end
end
NOTE: This code, as is, just flat bets the basebet... randomly setting "High" and "Low"... but you can easily modify it to include bet increase/decrease/reset strategies etc by just adding in the appropriate code in the "if (win)" section etc...
|
|
|
|
marlboroza
Legendary
Offline
Activity: 1932
Merit: 2272
|
|
March 05, 2018, 12:32:06 PM |
|
I believe all of these gambing things results is always random
but more people just believe that if they use bot it will predictable because it will minimize their loss and boost the result.
Who are these people? why do you want to make it random by using bot if you can do it manually?
Why not?
~
As I am not programmer I was hopping someone can point me in right direction but I don't really understand this. I need something for this settings: payout 2.3X or 2.4X, bet increase on win 1.9X(90%) with random bets all the way.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 05, 2018, 01:25:43 PM |
|
As I am not programmer I was hopping someone can point me in right direction but I don't really understand this. I need something for this settings: payout 2.3X or 2.4X, bet increase on win 1.9X(90%) with random bets all the way. The programmer mode is the only way to bet randomly in any way. You can ask on https://bitcointalk.org/index.php?topic=1114503.new#new for help using the programmer mode
|
|
|
|
AsTuRkInG
|
|
March 07, 2018, 12:22:58 PM |
|
I don't know if is just me or what.
The bot stop betting on bitsler when was doing her job for 1 hour more and less.
Other versions works fine until this last one
Other versions can't log in to bitsler, so how can they continue to bet for more than an hour? It's likely that the cloudflare cookie expires after an hour unless certain actions are performed. I will have to investigate before I can be sure. Can anyone else confirm this behavior? It is possible this is local to your machine (network outages, IP change etc). I will need others to confirm this is happening with them as well before I can look into it any news?
|
|
|
|
hi5burger
Newbie
Offline
Activity: 28
Merit: 0
|
|
March 08, 2018, 05:22:41 AM |
|
Anyone can help to program the bot with info below?
Base bet: 0.00001 Multiplier: 5 Chance: 66.6% Bet: low
Condition If betting lose more than 2 times, and follow by win (at least 1 win) and if the following lose betting appear then the bot will multiply base bet with multiplier. If it is losing, when the next condition fulfill, the betting amount increased to 2x multiplier. Reset to base bet if win.
Example 1 L base bet L base bet W base bet L base bet L multiplier 1x W base bet W base bet W base bet L base bet W multiplier 2x L base bet
Example 2 L base bet L base bet L base bet W base bet W base bet W base bet L base bet L multiplier 1x W base bet L base bet L multiplier 2x L base bet W base bet L base bet W multiplier 3x W base bet
Thanks.
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 08, 2018, 05:42:52 AM |
|
I don't know if is just me or what.
The bot stop betting on bitsler when was doing her job for 1 hour more and less.
Other versions works fine until this last one
Other versions can't log in to bitsler, so how can they continue to bet for more than an hour? It's likely that the cloudflare cookie expires after an hour unless certain actions are performed. I will have to investigate before I can be sure. Can anyone else confirm this behavior? It is possible this is local to your machine (network outages, IP change etc). I will need others to confirm this is happening with them as well before I can look into it any news? No. No-one else has confirmed this behaviour yet and I have not had time to look into it.
|
|
|
|
|
xMossx
Newbie
Offline
Activity: 121
Merit: 0
|
|
March 09, 2018, 12:01:25 AM |
|
Also, dicebot has stopped writing to the db file and I'm not sure how to fix this.
Great. The bot creates the db file but just don't save anything into it .
I am unable to reproduce the error. I tried several sites and currencies and all my bets wrote to the file. Can you give me more details, like which site and currency are you using? Are you running the bot as administrator? do you do anything with the sql file like open in the sqlite browser or from the programmer mode (like getbethistory etc)? I'm playing on PrimeDice. Don't think I'm accessing the sql file. Using lastBet.Roll in programmer mode.
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 11, 2018, 11:15:13 AM |
|
Add function of viewing of the smallest and biggest stone for the last several rates
for example
quantity of rates: 1000 = min roll - 0.01 max roll- 99,90
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 11, 2018, 12:03:35 PM |
|
Add function of viewing of the smallest and biggest stone for the last several rates
for example
quantity of rates: 1000 = min roll - 0.01 max roll- 99,90
use the programmer mode to track this for yourself.
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 11, 2018, 12:36:37 PM |
|
Add function of viewing of the smallest and biggest stone for the last several rates
for example
quantity of rates: 1000 = min roll - 0.01 max roll- 99,90
use the programmer mode to track this for yourself. Not perhaps I use the mode (advanced) as I can watch stones in regime of the programmer? For this purpose I have to play (programmer) I am not able to write scripts what team to write that he would show me information ?
|
|
|
|
TheQuin
|
|
March 11, 2018, 02:35:19 PM |
|
Add function of viewing of the smallest and biggest stone for the last several rates
for example
quantity of rates: 1000 = min roll - 0.01 max roll- 99,90
use the programmer mode to track this for yourself. Not perhaps I use the mode (advanced) as I can watch stones in regime of the programmer? For this purpose I have to play (programmer) I am not able to write scripts what team to write that he would show me information ? The answer to your question can be found 4 post above: Have a look in that thread and ask programming related questions there.
|
|
|
|
AsTuRkInG
|
|
March 12, 2018, 08:15:54 AM |
|
I don't know if is just me or what.
The bot stop betting on bitsler when was doing her job for 1 hour more and less.
Other versions works fine until this last one
Other versions can't log in to bitsler, so how can they continue to bet for more than an hour? It's likely that the cloudflare cookie expires after an hour unless certain actions are performed. I will have to investigate before I can be sure. Can anyone else confirm this behavior? It is possible this is local to your machine (network outages, IP change etc). I will need others to confirm this is happening with them as well before I can look into it any news? No. No-one else has confirmed this behaviour yet and I have not had time to look into it. I think that I have identified when this problem happens. I think I identified when this problem happens It seems that happens when high security is activated and cloudflare is turned on
|
|
|
|
ripzombie
|
|
March 14, 2018, 09:25:13 AM |
|
Hi Seuntjie, Have a problem ?? 0.00000050 BTC PROFİT (Clicking) but not reset bets ?? Why ?
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 14, 2018, 12:27:52 PM |
|
And general settings of feet through xxx bet doesn't work, only once works if to clean history of rates
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 14, 2018, 12:40:26 PM |
|
Hi Seuntjie, Have a problem ?? 0.00000050 BTC PROFİT (Clicking) but not reset bets ?? Why ? The profit value in the stats tab has nothing to do with the reset after x profit setting. The reset after x profit setting restets when you have x or more profit since the last reset. Thus if you have 5 profit and it resets, and you go down to 1 profit, it won't reset again until you have 5+x profit (because you're not actually in profit until you're above 5 again.) And general settings of feet through xxx bet doesn't work, only once works if to clean history of rates
I do not understand what you're talking about. "feet through xxx bet"?
|
|
|
|
houseworx
|
|
March 14, 2018, 02:06:41 PM |
|
Hi Seuntjie, Have a problem ?? 0.00000050 BTC PROFİT (Clicking) but not reset bets ?? Why ? how can you made 120million bets in 999dice, if there bets are so much slow
|
|
|
|
seuntjie (OP)
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 14, 2018, 03:04:28 PM |
|
how can you made 120million bets in 999dice, if there bets are so much slow The bets are only slow if you bet extremely small
|
|
|
|
|