ferryantoine
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 09, 2017, 06:57:49 AM |
|
Hi There,
wanted to ask something. Is there anyway that we can track rolled results?
what I mean is for example lets say each circle of x bets we track the rolled result in we track the circle of bets based on rolled numbers: for example lets say if in each 10 bets 3 times rolled result was less than number 30 then do that etc.
Thank you.
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4361
<insert witty quote here>
|
|
November 09, 2017, 10:20:39 AM |
|
You could probably set up an "array" and a counter to keep track of the last "x" bets... but the number would need to be kept to a "reasonable" level to prevent the memory usage getting too high and or the bot starting to slow down while it manipulates the array... I'm not sure I understand what it is that you are wanting to do with these 10 results tho? ... betArray = {} counter = 1 -- NOTE: LUA arrays indexed from 1 ;) ... function dobet() ... betArray[counter] = lastbet.Roll counter = counter + 1 ... if counter == 11 then -- do something based on the last 10 rolls ??? -- count them up or something and then set chance according to results? counter = 1 -- reset counter end ... end
|
|
|
|
ferryantoine
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 09, 2017, 01:38:12 PM Last edit: November 09, 2017, 02:02:35 PM by ferryantoine |
|
Wow,
Thank you for your Help HCP, I will give it a try based on your codes. btw that number 10 is just an imaginary number that I assume as a set of bets. actually I have a strategy in my mind that is kind of complicated, and its like if you got base amount profit it will be retested and it might gives profit based on how many wins or losses you have in a circle of bets, like lets say 10 bets. the program should be defined to behave in a different way based on current bet is which bet out of this set of bets. and if y lossess/wins in row happens do this.... if its LWLWLW do that....initial chance could be x1.6 and also it changes the chance depending on if the last bet was win or loss or if it was y lossess/wins in row. actually its all like brainstorming yet but Im trying to clean up my mind and work on it. its kind of fun for me. what I meant to do with the result was for example if in that circle of 10 bets, the dice rolled to below number 30, 3 times in total (for example) then do.... cheers and thank you again that you share all your knowledge.
|
|
|
|
sree6020
Newbie
Offline
Activity: 51
Merit: 0
|
|
November 16, 2017, 03:30:48 PM |
|
Today when I try to use Dice bot on Bitsler, I get an error that "parameter missing". It was working fine before .But today this error comes unexpectedly. There is no change in scripts or version of Dicebot which I was using before. Can someone help me with this problem.
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4361
<insert witty quote here>
|
|
November 16, 2017, 11:07:54 PM |
|
In all likelihood... Bitsler have probably changed something on their end... ie. updated the API either without giving Seuntjie a headsup, or the opportunity to update the bot... or they did, and Seuntjie hasn't updated due to being super busy...
If the bot is working on other sites, and it is just Bitsler that isn't working, then you'll have to hold tight until Seuntjie has a chance to investigate and/or talk to the Bitsler Devs.
|
|
|
|
houseworx
|
|
November 17, 2017, 02:07:40 AM Last edit: November 17, 2017, 05:19:33 AM by houseworx |
|
hey, anyone are much good in math and have good and easy to use formula for basebet calculation with editing "winrate"(increase number/overall gain) addition?!
i want something like that - i will give sample:
i bet 10$ 14x times in row on (X) percentage to win and all are losed, now i want calculate basebet accordingly that i have profit -140$ and now i will bet on another chance to win(Y) to get back to be break even to get zero, or till i need to get some part (1/2 or 1/5) of losed profit back.
so what i want!
formula what component:
-increase number = 1(then gains are zero break even if in forumula will be included 0.01 decrease house edge) and if i will make this number 1.01 then it will gain little profit, and if i make 1.1 then bigger, etc.
-in formula are used session profit
something like this
base = (profit) / (100 / chance / 1.01 - 1) * 1(increase number) + startbasebet
|
|
|
|
sree6020
Newbie
Offline
Activity: 51
Merit: 0
|
|
November 17, 2017, 04:23:58 AM |
|
In all likelihood... Bitsler have probably changed something on their end... ie. updated the API either without giving Seuntjie a headsup, or the opportunity to update the bot... or they did, and Seuntjie hasn't updated due to being super busy...
If the bot is working on other sites, and it is just Bitsler that isn't working, then you'll have to hold tight until Seuntjie has a chance to investigate and/or talk to the Bitsler Devs.
Thanks for replying HCP. Anyway my problem is solved as it was due to a small settings change that I made on bitsler site.I talked to Bitsler support and they helped me sort it out.
|
|
|
|
houseworx
|
|
November 20, 2017, 06:03:20 PM Last edit: November 20, 2017, 06:21:28 PM by houseworx |
|
I want to know, how is possible to make, every next bet after fixed "currentstreak" to change adjusted chances who will dereases by x.xxxx chances from "pervious bet chances" !?
something like this, but this version has problems with configuration for me, because the calculations before all was made.
if currentstreak>=-5 and currentstreak<=0 then base = x chance = X - (currentstreak * -4.00)
elseif currentstreak<=-6 and currentstreak>=-10 then base = x chance = X - (currentstreak * -2.00)
elseif currentstreak<=-11 and currentstreak>=-20 then base = x chance = X - (currentstreak * -1.00)
elseif currentstreak<=-21 and currentstreak>=-1000 then base = x chance = X end
I hope some1 will understand what i mean...
sample with words:
first 5 bets bet on 90 percentage and every bet, chances need to be decreased by -1.00% like 90, 89, 88, 87, 86
after that next 5 bets need to be decreased from last percentage buy 0.5% 86, 65.5, 85, 84.5, 84, 83.5, 83
and go on (its only sample)
|
|
|
|
houseworx
|
|
November 22, 2017, 01:15:09 PM |
|
hey, anyone are much good in math and have good and easy to use formula for basebet calculation with editing "winrate"(increase number/overall gain) addition?!
i want something like that - i will give sample:
i bet 10$ 14x times in row on (X) percentage to win and all are losed, now i want calculate basebet accordingly that i have profit -140$ and now i will bet on another chance to win(Y) to get back to be break even to get zero, or till i need to get some part (1/2 or 1/5) of losed profit back.
so what i want!
formula what component:
-increase number = 1(then gains are zero break even if in forumula will be included 0.01 decrease house edge) and if i will make this number 1.01 then it will gain little profit, and if i make 1.1 then bigger, etc.
-in formula are used session profit
something like this
base = (profit) / (100 / chance / 1.01 - 1) * 1(increase number) + startbasebet
I want to know, how is possible to make, every next bet after fixed "currentstreak" to change adjusted chances who will dereases by x.xxxx chances from "pervious bet chances" !?
something like this, but this version has problems with configuration for me, because the calculations before all was made.
if currentstreak>=-5 and currentstreak<=0 then base = x chance = X - (currentstreak * -4.00)
elseif currentstreak<=-6 and currentstreak>=-10 then base = x chance = X - (currentstreak * -2.00)
elseif currentstreak<=-11 and currentstreak>=-20 then base = x chance = X - (currentstreak * -1.00)
elseif currentstreak<=-21 and currentstreak>=-1000 then base = x chance = X end
I hope some1 will understand what i mean...
sample with words:
first 5 bets bet on 90 percentage and every bet, chances need to be decreased by -1.00% like 90, 89, 88, 87, 86
after that next 5 bets need to be decreased from last percentage buy 0.5% 86, 65.5, 85, 84.5, 84, 83.5, 83
and go on (its only sample)
|
|
|
|
goodbc
Member
Offline
Activity: 105
Merit: 11
|
|
November 26, 2017, 11:13:34 PM |
|
Is anyone here expert in bot programming mode and can implement my custom strategy on request?
|
Check your IQ! Send any amount to this address: 1GoodBTCiGyd1J1LkDhCThfTHG8n9WJnNn
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4361
<insert witty quote here>
|
|
November 26, 2017, 11:57:30 PM |
|
Is anyone here expert in bot programming mode and can implement my custom strategy on request?
There are several "experts" around here Myself and Chilly2k and one or two others...
|
|
|
|
mrmanir
Newbie
Offline
Activity: 1
Merit: 0
|
|
November 27, 2017, 10:38:35 AM |
|
Hi everyone. Is anybuddy here to write this program in dicebot?
roll 1: bet 1sat : if win > place 1 sat if loose > place 1 sat
in streak of 3 loose: (roll 4) place 100 sat if win > place 1 if loose > place 200
(roll 5) if win > place 1 if loose > place 400
. . . .
Actually I want to use martiangle method after 3 loose in a raw with a bot.
|
|
|
|
houseworx
|
|
November 27, 2017, 11:55:58 PM |
|
Hi everyone. Is anybuddy here to write this program in dicebot?
roll 1: bet 1sat : if win > place 1 sat if loose > place 1 sat
in streak of 3 loose: (roll 4) place 100 sat if win > place 1 if loose > place 200
(roll 5) if win > place 1 if loose > place 400
. . . .
Actually I want to use martiangle method after 3 loose in a raw with a bot.
hello, if im understnad right then try this - chance = 49.50 base = 0.00000001 nextbet = base enablezz = true enablesrc = true losecount = 0 betcount = 0 function dobet() if win then nextbet = base losecount = 0 betcount += 1 else losecount += 1 betcount += 1 nextbet = base end if (losecount > 2) then nextbet = 0.00000100 end if (losecount > 3) then nextbet = previousbet*2 end end end end
|
|
|
|
stormbreaker1
Newbie
Offline
Activity: 4
Merit: 0
|
|
November 28, 2017, 03:29:21 AM |
|
tnx good script i go to try
|
|
|
|
houseworx
|
|
November 28, 2017, 05:32:18 AM |
|
tnx good script i go to try
it's only what OP asked... i don't recommend that kind of stuff. with that kind of stuff you will lose same all bankroll maybe 10% less frequent than - simple double up every bet on 2x payout...
|
|
|
|
Nicoletta
Newbie
Offline
Activity: 31
Merit: 0
|
|
November 29, 2017, 09:53:22 PM |
|
Hi I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row? So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%? Is the idea explained correctly?
|
|
|
|
B4RF
|
|
November 30, 2017, 07:22:50 AM |
|
Hi I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row? So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%? Is the idea explained correctly?
Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds. It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss.
|
▄▄▄████████▄▄▄ ▄██████████████████▄ ▄██████████████████████▄ ██████████████████████████ ████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ████████████████████████████ ██████████████████████████ ▀██████████████████████▀ ▀██████████████████▀ ▀▀▀████████▀▀▀
| | | | ███████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ███████ | | | | ▄▄██████████████▄▄ ▄██████████████████████▄ █████ ▄██████████████████████████▄ █████ ████ ▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄ ████ ▄██▀ ████ █████ ██████ █████ ████ ▄██▀ ████ █████ ██████ █████ ████ ██▀ ████ █████ ██████ █████ ████ ██ ████ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀ ████ ▄██████▄ ████████████████████████████ ████████ ███████▀ ▀███████ ▀██████▀ █████▀ ▀█████ ▀██████████████████████████▀ ▀▀████████████████████▀▀ | | |
|
|
|
houseworx
|
|
November 30, 2017, 08:20:28 AM Last edit: November 30, 2017, 08:31:02 AM by houseworx |
|
Hi I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row? So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%? Is the idea explained correctly?
Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds. It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss. please don't write your pessimistic stuff all the time. you all people are angry because losed alot of money in dice, and now are saying to all other peoples, that there is no strategy to beat it(because you don't have enought knowledge to figure out it), that is why you all are doing it?! otherwise i dont understand all you pesimists.
|
|
|
|
B4RF
|
|
November 30, 2017, 02:16:02 PM |
|
Hi I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row? So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%? Is the idea explained correctly?
Doesnt seem that hard to accomplish but just for your interest, waiting for these kind of patterns doesnt change your odds. It's the same as prerolling. You will only bet after your pattern occured which makes you bet less often and will only postpone the possible loss. please don't write your pessimistic stuff all the time. you all people are angry because losed alot of money in dice, and now are saying to all other peoples, that there is no strategy to beat it(because you don't have enought knowledge to figure out it), that is why you all are doing it?! otherwise i dont understand all you pesimists. Cant remember saying something similar here but ok. I just tried to prevent someone from thinking that these kind of bets change something (I am fine with it as long as it is for fun purposes). I think I am currently in a plus on primedice but you cant possibly think that there is a winning strategy which will gain you profit over an inifinte amount of time, are you?
|
▄▄▄████████▄▄▄ ▄██████████████████▄ ▄██████████████████████▄ ██████████████████████████ ████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ████████████████████████████ ██████████████████████████ ▀██████████████████████▀ ▀██████████████████▀ ▀▀▀████████▀▀▀
| | | | ███████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ██████████ ███████ | | | | ▄▄██████████████▄▄ ▄██████████████████████▄ █████ ▄██████████████████████████▄ █████ ████ ▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄ ████ ▄██▀ ████ █████ ██████ █████ ████ ▄██▀ ████ █████ ██████ █████ ████ ██▀ ████ █████ ██████ █████ ████ ██ ████ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀ ████ ▄██████▄ ████████████████████████████ ████████ ███████▀ ▀███████ ▀██████▀ █████▀ ▀█████ ▀██████████████████████████▀ ▀▀████████████████████▀▀ | | |
|
|
|
Nicoletta
Newbie
Offline
Activity: 31
Merit: 0
|
|
November 30, 2017, 04:42:18 PM |
|
Yes i know it all but i think it is worth to try? So how this script could look like?
|
|
|
|
|