soccercrazy 5 #1 Posted March 10, 2022 (edited) i got a system which has been doing good on advanced i just got an issue with it having to long green streaks so it doesnt work well.. as you can see its set to reset to bb which is 0.000014 when profit is above 0.00000001 but sometimes chance 90 can have 100 green streaks which makes like 0.00014 profit and then it will just keep playing at bb untill its lost which can take several thousand bets making very little wager. i know its posibel in script on dicebot to like have it allwyas update balance so it when it has its first red will play my system untill its above the balance it had when it lost the first bet so im seeking someone to write the script because i cant code... got the help needed looks like this. max=balance chance=90 bb=0.000001 w=0 l=0 function dobet() if win then w=w+1 nextbet=previousbet/1.05 l=0 else w=0 l=l+1 nextbet=previousbet*1.6 end if l>1 then nextbet=previousbet*2.08 l=0 end if w>4 then w=0 nextbet=previousbet*1.15 end if balance>max then max=balance l=0 w=0 nextbet=bb end end Edited March 10, 2022 by soccercrazy Quote Share this post Link to post Share on other sites
WinMachine 11 #2 Posted March 10, 2022 (edited) deleted Edited March 10, 2022 by WinMachine Quote Share this post Link to post Share on other sites
soccercrazy 5 #3 Posted March 10, 2022 27 minutes ago, WinMachine said: Hello! Using your advanced setup i made this code. -------------------------------------------------------------- -- crazzy v.1.01 -------------------------------------------------------------- -- crazzy.v.1.01.lua -------------------------------------------------------------- -- developed by WinMachine -------------------------------------------------------------- -------------------------------------------------------------- -- -- ( ( ) ( ( ( ( ( ) ) ) -- )\ )\ ( ((. )\: )\: )\ (\ )\ ( ((. (\( -- ((_) ((())\))\ ((_)((_)(_() (\((_) )\))\ )(| -- \ \ / /_)(_))| \/ |(_)()( ) |_ (_)(_)) ()\ -- \ \/\/ /| | ' \) |\/| | _` | _| \| | ' \) -_) -- \_/\_/ |_|_||_|_| |_|__/_|__|_||_|_|_||_|___| -- -------------------------------------------------------------- -- Gambling is gambling no matter what you do or how good your strategy is. -- The house will always win. -------------------------------------------------------------- bethigh = false st1chance = 90 st1basetbet = 0.000001 ------------------------------------------- ------------------------------------------- ------------------------------------------- betscount = 0 losecount = 0 losestreak = 0 winscount = 0 winstreak = 0 check_profit = true function IncreaseToBetAmountByPercentage(value,percentage) return value + (value* (percentage/100)) end function DecreaseToBetAmountByPercentage(value,percentage) return value - (value* (percentage/100)) end ------------------------------------------- -- INIT ------------------------------------------- chance = st1chance nextbet = st1basetbet resetstats() function dobet() if(win) then ----------------------------------------------- winscount += 1 winstreak += 1 ----------------------------------------------- -- on every streak of 1 win if(winstreak % 1 == 0) then nextbet = DecreaseToBetAmountByPercentage(previousbet, 5) end -- on every streak of 5 win if(winstreak % 5 == 0) then nextbet = IncreaseToBetAmountByPercentage(previousbet, 15) end -- check if we have profit, if on profit reset bet amount if(check_profit) then if(profit>0) then check_profit = false resetstats() nextbet = st1basetbet print("COST COVERED!") else print("COST NOT COVERED!") end end ----------------------------------------------- losestreak = 0 ----------------------------------------------- else ----------------------------------------------- losecount += 1 losestreak += 1 ----------------------------------------------- check_profit = true -- on every streak of 1 lose if(losestreak % 1 == 0) then nextbet = IncreaseToBetAmountByPercentage(previousbet, 60) end -- on every streak of 2 lose if(losestreak % 2 == 0) then nextbet = IncreaseToBetAmountByPercentage(previousbet, 30) end ----------------------------------------------- winstreak = 0 ----------------------------------------------- end ----------------------------------------------- betscount += 1 ----------------------------------------------- end the script i allready had posted who someone ells made for me works exactly as i wanted it to but still thanks Quote Share this post Link to post Share on other sites
soccercrazy 5 #4 Posted March 10, 2022 first run.. 1 dznuts8585 reacted to this Quote Share this post Link to post Share on other sites
soccercrazy 5 #5 Posted March 11, 2022 second run 1 dznuts8585 reacted to this Quote Share this post Link to post Share on other sites
soccercrazy 5 #6 Posted March 11, 2022 run number 3 1 dznuts8585 reacted to this Quote Share this post Link to post Share on other sites
soccercrazy 5 #7 Posted March 11, 2022 (edited) run number 4 0.03 was added to the balance bb change 0.00000001 uo for every 0.005 added to start balance. Edited March 11, 2022 by soccercrazy 1 fabiana reacted to this Quote Share this post Link to post Share on other sites
soccercrazy 5 #8 Posted March 13, 2022 (edited) 0.2 balance chance 9.9 bb 0.00000001 increase x2 after 3 red max red streak 60 after max red streak play with 0.00000002 bb same system untill balance is above the balance it had before the first 60 red streak. if it has another red streak of 60 before recovery done double bb again and keep playing untill recovery of all.. sooo i start the bot it makes 0.003 profit then it has a 60 red streak then it starts playing same set up but with 0.00000002 bb and will do so untill balance is above 0.203 and should it have another before recovered back to 0.203 it will then play with a 0.00000004 bb and so on and on and on Edited March 13, 2022 by soccercrazy Quote Share this post Link to post Share on other sites
WinMachine 11 #9 Posted March 14, 2022 (edited) Hello! Have fun! https://pastebin.com/KQhBVt7Q Edited March 14, 2022 by WinMachine 1 fabianabank reacted to this Quote Share this post Link to post Share on other sites
niw385 0 #10 Posted March 18, 2022 are scripts allowed here , on PD ? Quote Share this post Link to post Share on other sites
Crackit 0 #11 Posted March 18, 2022 A very useful thread to look into.... Quote Share this post Link to post Share on other sites
soccercrazy 5 #12 Posted March 18, 2022 (edited) 10 hours ago, niw385 said: are scripts allowed here , on PD ? you can use dicebot on pd and stake there is just no help from eighter site if you have issues seeing as they say they dont support the bot.. On 14/03/2022 at 10:55, WinMachine said: Hello! Have fun! https://pastebin.com/KQhBVt7Q lets say after a red streak i only wanted bb to go up by 70% insteed of double which one of all the 100 should i then change ?? the original set up in this one didnt work that great but i have modified it and is playing on 3 difrent sites were im in profit on all the site.. these 3 charts is only from that set up on the 3 sites plus a litle wager play but mainly from the profit set up Edited March 18, 2022 by soccercrazy Quote Share this post Link to post Share on other sites
soccercrazy 5 #13 Posted March 19, 2022 @WinMachine hey did you see the question i asked ? Quote Share this post Link to post Share on other sites
jorgf 1 #14 Posted March 20, 2022 On 14/03/2022 at 10:55, WinMachine said: Hello! Have fun! https://pastebin.com/KQhBVt7Q THIS IS GREAT HAVE BEEN LOOKING FOR A SCRIPT LIKE THIS Quote Share this post Link to post Share on other sites
soccercrazy 5 #15 Posted March 20, 2022 1 hour ago, jorgf said: THIS IS GREAT HAVE BEEN LOOKING FOR A SCRIPT LIKE THIS great hope you can use it i didnt have much luck as its set up but its pretty easy to make changes in it.. Quote Share this post Link to post Share on other sites
jorgf 1 #16 Posted March 20, 2022 32 minutes ago, soccercrazy said: great hope you can use it i didnt have much luck as its set up but its pretty easy to make changes in it.. yes i did some tweak to it since it quite easy to get a very long streak on 10X so i added a variance with 6x and increase on base after streak(but reduced the streak count). Quote Share this post Link to post Share on other sites
copeye 0 #17 Posted March 20, 2022 I hope to try although I do not understand Quote Share this post Link to post Share on other sites
soccercrazy 5 #18 Posted March 24, 2022 On 20/03/2022 at 14:37, jorgf said: yes i did some tweak to it since it quite easy to get a very long streak on 10X so i added a variance with 6x and increase on base after streak(but reduced the streak count). i did something similar Quote Share this post Link to post Share on other sites
soccercrazy 5 #19 Posted April 1, 2022 here you go Fabiana max = balance chance = 98 bb = 0.00003456 w = 0 l = 0 function dobet() if win then w = w+1 nextbet = previousbet/1.05 l = 0 else w = 0 l = l+1 nextbet = previousbet*7.2 end if l>1 then nextbet = previousbet*5.1 l = 0 end if w>20 then w = 0 nextbet = previousbet*1.7 end if w>45 then w = 0 nextbet = previousbet*1.6 end if w>75 then w = 0 nextbet = previousbet*1.5 end if balance>max then max=balance l=0 w=0 nextbet=bb end end 1 fabiana reacted to this Quote Share this post Link to post Share on other sites
Noteca 1 #20 Posted May 14, 2022 max = balance chance = 70 bb = balance*0.00001 w = 0 l = 0 nextbet = balance*0.00001 trailingstop = balance function dobet() if trailingstop < max/2 then stop() end if win then w = w+1 nextbet = previousbet/1.05 l = 0 else w = 0 l = l+1 nextbet = previousbet*7.2 end if l>1 then nextbet = previousbet*5.1 l = 0 end if w>20 then w = 0 nextbet = previousbet*1.7 end if w>45 then w = 0 nextbet = previousbet*1.6 end if w>75 then w = 0 nextbet = previousbet*1.5 end if balance>max then max = balance l = 0 w = 0 nextbet = balance*0.00001 end end 1 fabianabank reacted to this Quote Share this post Link to post Share on other sites
fr01 0 #21 Posted May 27, 2022 This is really interesting, how to implement this scripts Quote Share this post Link to post Share on other sites
fabianabank 127 #22 Posted June 4, 2022 On 27/05/2022 at 09:43, fr01 said: This is really interesting, how to implement this scripts programmer mod on dicebot On 14/03/2022 at 06:55, WinMachine said: Hello! Have fun! https://pastebin.com/KQhBVt7Q Win, im testing these, can u explain how include vault(..) ? idk which place include command, i copied below basebet and only send to vault when i start the script Quote Share this post Link to post Share on other sites
fabianabank 127 #23 Posted June 8, 2022 On 14/05/2022 at 13:59, Noteca said: max = balance chance = 70 bb = balance*0.00001 w = 0 l = 0 nextbet = balance*0.00001 trailingstop = balance function dobet() if trailingstop < max/2 then stop() end if win then w = w+1 nextbet = previousbet/1.05 l = 0 else w = 0 l = l+1 nextbet = previousbet*7.2 end if l>1 then nextbet = previousbet*5.1 l = 0 end if w>20 then w = 0 nextbet = previousbet*1.7 end if w>45 then w = 0 nextbet = previousbet*1.6 end if w>75 then w = 0 nextbet = previousbet*1.5 end if balance>max then max = balance l = 0 w = 0 nextbet = balance*0.00001 end end Can u explain me how to set a vault? Quote Share this post Link to post Share on other sites
yuliussaputra 2 #24 Posted June 13, 2022 i never using script, i always setting manual on dicebot 😏 Quote Share this post Link to post Share on other sites
vbtera 1 #25 Posted June 15, 2022 yuli you are right playing manual is best as per my recent experience Quote Share this post Link to post Share on other sites