Marma Kalari
Sr. Member
Offline
Activity: 546
Merit: 250
kittiefight.io Combat MMO Lending Jackpots
|
|
March 18, 2017, 10:09:38 AM |
|
Are people genuinely making long term profits with this software? I don't think that there's a way around the house edge, no matter which weird way you gamble.
Do you think that he build this software to make you profit in the long term bypassing the house edge ,he has given you more options than in a regular site and any one can create their own unique experience when it comes to rolling dice and with the options you have to come up with a solution on not to get busted,have some calculation and try that out with the bank roll you have and you will enjoy.
|
|
|
|
torry28
Legendary
Offline
Activity: 1680
Merit: 1001
|
|
March 18, 2017, 10:28:56 AM |
|
Are people genuinely making long term profits with this software? I don't think that there's a way around the house edge, no matter which weird way you gamble.
Yes, this bot doesn't guarantee you will be able to make profit, no matter what strategy you use, how weird you gamble, what kind of dice bot/script you use, you will lose in the long run because there is house edge and you can't avoid that. Do you think that he build this software to make you profit in the long term bypassing the house edge ,he has given you more options than in a regular site and any one can create their own unique experience when it comes to rolling dice and with the options you have to come up with a solution on not to get busted,have some calculation and try that out with the bank roll you have and you will enjoy. Agreed, with this bot we are having more options about the strategy which we want to try. The main purpose of this bot is only for entertain while you gamble.
|
|
|
|
seuntjie
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 18, 2017, 11:01:44 AM |
|
Are people genuinely making long term profits with this software? I don't think that there's a way around the house edge, no matter which weird way you gamble.
DiceBot, like all casinos and casino games is about having fun, not making money. Gambling is paying for entertainment, and DiceBot just makes the game of dice a bit more fun/interesting. DiceBot is not intended to be used for profit, as it cannot make you profit in the long run, its to be used for entertainment purposes only. Never gamble more than you afford can lose.
|
|
|
|
K128kevin2
|
|
March 18, 2017, 01:56:10 PM |
|
Are people genuinely making long term profits with this software? I don't think that there's a way around the house edge, no matter which weird way you gamble.
DiceBot, like all casinos and casino games is about having fun, not making money. Gambling is paying for entertainment, and DiceBot just makes the game of dice a bit more fun/interesting. DiceBot is not intended to be used for profit, as it cannot make you profit in the long run, its to be used for entertainment purposes only. Never gamble more than you afford can lose. Thanks for the explanation. That's what I thought, I just wanted clarification just to make sure Good luck with development.
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 18, 2017, 06:16:37 PM |
|
who can write a script for this bot?
|
|
|
|
March
|
|
March 20, 2017, 05:12:55 PM |
|
Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
|
|
|
|
CiderWaffles
Member
Offline
Activity: 64
Merit: 10
|
|
March 20, 2017, 10:02:18 PM |
|
Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
the answer is in the other dicebot thread, to one of my posts.
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4363
<insert witty quote here>
|
|
March 21, 2017, 12:54:16 AM Last edit: March 21, 2017, 01:09:42 AM by HCP |
|
Thanks for your explanation I do understand it. However, is it still possible to program the bot so when a streak of 6 reds happend, and let's stay you win on the 7th, the bot will automatically set the lossstartmult to, let's say, 4? Maybe seuntjie or some expert programmer might know it? So far i've been playing that way for days and i'm just betting small amounts, so it will need to be a 20'ish red streak at 60% to happen to bust me and it's working pretty well. Of course it is possible. You just need to create a variable to track your current loss streak, so that when a win happens you can check it to see if it satisfies your requirements, and then sets the lossstartmult to whatever you want... ... currLossStreak = 0 ... function dobet()
if win then if currLossStreak >= 6 then lossstartmult = 4 end currLossStreak = 0
-- do other win stuff
else currLossStreak += 1
-- do other loss stuff end
end
Hopefully you follow the logic: - Initialise currLossStreak to 0 - If the roll was a win, check to see if it was after a lossStreak of 6 (or more)... if it was, set lossstartmult. Reset currLossStreak to 0. - If the roll was a loss, then increment the currLossStreak counter. EDIT: Just remembered you'd actually posted your script earlier... you already have the lossCount variable... and the "if (!win)" section in your code... use those... if (!win) then lossCount += 1 else if lossCount >= 5 then lossStartMult = 4 -- you may also want to recalculate the maxLosses value that is set at start of script???? -- maxLosses = lossStartMult + 5 -- but I'm not 100% sure what you're trying to achieve with reseting the lossStartMult ;) end lossCount = 0 end
|
|
|
|
torry28
Legendary
Offline
Activity: 1680
Merit: 1001
|
|
March 21, 2017, 01:00:22 AM |
|
Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
It is very simple, you only need to set the multiplier below than 1.0000, in this case, set your multiplier to 0.9 (If you want -10%), 0.8 (if you want -20%). Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
the answer is in the other dicebot thread, to one of my posts. Here is the post (If he is too lazy to search it) how do i reduce a bet by a certain percentage or fraction in the martingale section, I've read the steemit post but can't work it out.
say if i want to reduce the bet by 20% or 1/5, how do i do that??
hope to see answer from this good question it would be a good information likewise im also trying to to figure out what would be a better settings not to lose with martingale set up if we can lessen it up using the bot what would be the best approach. reply from Seuntjie how do i reduce a bet by a certain percentage or fraction in the martingale section, I've read the steemit post but can't work it out.
say if i want to reduce the bet by 20% or 1/5, how do i do that??
multiplier = (100+percentage increase)/100 thus multiplier = (100+(-20))/100 = 80/100=0.8 Algebra. who can write a script for this bot?
There are lots people who can write the script,check on here first maybe the script what do you want has been written by someone else https://bitcointalk.org/index.php?topic=1114503.0
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 21, 2017, 04:17:11 AM |
|
Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
It is very simple, you only need to set the multiplier below than 1.0000, in this case, set your multiplier to 0.9 (If you want -10%), 0.8 (if you want -20%). Hello seuntjie just wondering can you add a minus on multiplier ? since in bitsler we can insert a multiplier to -100 %
the answer is in the other dicebot thread, to one of my posts. Here is the post (If he is too lazy to search it) how do i reduce a bet by a certain percentage or fraction in the martingale section, I've read the steemit post but can't work it out.
say if i want to reduce the bet by 20% or 1/5, how do i do that??
hope to see answer from this good question it would be a good information likewise im also trying to to figure out what would be a better settings not to lose with martingale set up if we can lessen it up using the bot what would be the best approach. reply from Seuntjie how do i reduce a bet by a certain percentage or fraction in the martingale section, I've read the steemit post but can't work it out.
say if i want to reduce the bet by 20% or 1/5, how do i do that??
multiplier = (100+percentage increase)/100 thus multiplier = (100+(-20))/100 = 80/100=0.8 Algebra. who can write a script for this bot?
There are lots people who can write the script,check on here first maybe the script what do you want has been written by someone else https://bitcointalk.org/index.php?topic=1114503.0there is no such no,my script is unique and very complex,no one can write ,
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4363
<insert witty quote here>
|
|
March 21, 2017, 04:42:11 AM |
|
So you're wanting to hire someone to code for you? Because that I am willing to discuss... If you can give some more details (PM, if you don't want your script details in a public forum) maybe we can come to some sort of agreement... but if it is as complex as you seem to think it is... then it certainly isn't going to be done for free.
|
|
|
|
freemanjackal
|
|
March 21, 2017, 09:25:04 PM |
|
it wont be hard to find someone to code the script if you dont know or dont want to code it
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 24, 2017, 06:30:26 AM |
|
how to make a script that would have done 1000 bets stopped and showed what was the biggest and smallest rolls
|
|
|
|
seuntjie
Legendary
Offline
Activity: 1717
Merit: 1125
|
|
March 24, 2017, 09:59:07 AM |
|
how to make a script that would have done 1000 bets stopped and showed what was the biggest and smallest rolls
take a look at the "jackpot hunter" script on my site, you can modify it a bit to do what you need: https://bot.seuntjie.com/scripts.aspx?id=65
|
|
|
|
dimondimon
Member
Offline
Activity: 270
Merit: 10
|
|
March 24, 2017, 11:45:43 AM |
|
I saw your script,but I failed to change,it is necessary that he did the following steps (1) chance 98 (2) bet=0.00000001 ( 3) number of bets=1000 (4) stop (5)to indicate the number fell the largest and the smallest,I thought your website could help me
|
|
|
|
ThePassenger
Newbie
Offline
Activity: 29
Merit: 0
|
|
March 24, 2017, 05:28:02 PM |
|
Thanks for your explanation I do understand it. However, is it still possible to program the bot so when a streak of 6 reds happend, and let's stay you win on the 7th, the bot will automatically set the lossstartmult to, let's say, 4? Maybe seuntjie or some expert programmer might know it? So far i've been playing that way for days and i'm just betting small amounts, so it will need to be a 20'ish red streak at 60% to happen to bust me and it's working pretty well. Of course it is possible. You just need to create a variable to track your current loss streak, so that when a win happens you can check it to see if it satisfies your requirements, and then sets the lossstartmult to whatever you want... ... currLossStreak = 0 ... function dobet()
if win then if currLossStreak >= 6 then lossstartmult = 4 end currLossStreak = 0
-- do other win stuff
else currLossStreak += 1
-- do other loss stuff end
end
Hopefully you follow the logic: - Initialise currLossStreak to 0 - If the roll was a win, check to see if it was after a lossStreak of 6 (or more)... if it was, set lossstartmult. Reset currLossStreak to 0. - If the roll was a loss, then increment the currLossStreak counter. EDIT: Just remembered you'd actually posted your script earlier... you already have the lossCount variable... and the "if (!win)" section in your code... use those... if (!win) then lossCount += 1 else if lossCount >= 5 then lossStartMult = 4 -- you may also want to recalculate the maxLosses value that is set at start of script???? -- maxLosses = lossStartMult + 5 -- but I'm not 100% sure what you're trying to achieve with reseting the lossStartMult ;) end lossCount = 0 end
Hi again! Thanks to your help, i've managed to achieve more or less what i wanted. However, do you know how i can set the parameters inside the script to only make the change of lossmult during a certain amount of bets, and then go back to the initial? Any help will be much apreciatted! thanks
|
|
|
|
biulas
Newbie
Offline
Activity: 49
Merit: 0
|
|
March 24, 2017, 10:10:42 PM |
|
Hi guys, congrats to us all for the wonderful forum. Now first and foremost also like to thank Seuntjie for the WONDERFUL tool and programming language (already donated my friend ) that enable me to streak 200000 bets (more than 24 hours) in a row without loosing my bankroll. The trick has Seuntjie stated is to low bet with high bankroll. The marvelous part of Seuntjie's bot is that one can make a strategy based on prebetting and then fish for the long loosing strike. I've programmed a version of one of Seuntjie's script that basically I can leave running for days and have a very low probability of loosing (about 0.84% in a 500 bet streak) My script can make profits of 60/70% of current balance and withstand 100+ loosing strikes. Slowly but surely, I've been getting steady profits and IT WORKS on the long run, despite the house edge (and what other people say). There is always a way to beat the house edge, its mathematical. Of course that using simple Martingale strategies and Labouchère on the long run you will ALWAYS loose. Even with high bank roll the math does not play in our favor. I've taken few hours in making the math and fine-tuning the script but it has guaranteed results. Now I'm not trying to sell anything here with this post but also please don't ask to give the script for free since I lost about 1.5 BTC in fine-tuning it... Investigate, loose money yourself - I'm the living proof that IT WORKS. This post is just a testimony that house does not always win and IT IS possible to win while sleeping on the long run! Seuntjie - you're a God. Congrats for the marvelous tool. https://i.imgur.com/zdKMrko.png
|
|
|
|
-sgt-
Newbie
Offline
Activity: 1
Merit: 0
|
|
March 25, 2017, 12:23:27 AM Last edit: March 25, 2017, 12:41:44 AM by -sgt- |
|
Hi guys, congrats to us all for the wonderful forum. Now first and foremost also like to thank Seuntjie for the WONDERFUL tool and programming language (already donated my friend ) that enable me to streak 200000 bets (more than 24 hours) in a row without loosing my bankroll. The trick has Seuntjie stated is to low bet with high bankroll. The marvelous part of Seuntjie's bot is that one can make a strategy based on prebetting and then fish for the long loosing strike. I've programmed a version of one of Seuntjie's script that basically I can leave running for days and have a very low probability of loosing (about 0.84% in a 500 bet streak) My script can make profits of 60/70% of current balance and withstand 100+ loosing strikes. Slowly but surely, I've been getting steady profits and IT WORKS on the long run, despite the house edge (and what other people say). There is always a way to beat the house edge, its mathematical. Of course that using simple Martingale strategies and Labouchère on the long run you will ALWAYS loose. Even with high bank roll the math does not play in our favor. I've taken few hours in making the math and fine-tuning the script but it has guaranteed results. Now I'm not trying to sell anything here with this post but also please don't ask to give the script for free since I lost about 1.5 BTC in fine-tuning it... Investigate, loose money yourself - I'm the living proof that IT WORKS. This post is just a testimony that house does not always win and IT IS possible to win while sleeping on the long run! Seuntjie - you're a God. Congrats for the marvelous tool. https://i.imgur.com/zdKMrko.pngwow.... I hope, I can follow your way... still try find the best scripts available, and find the suitable basebet vs bankroll... if I may ask, did you made the script by yourself from 0, or modified and finetune from available script @web...?
|
|
|
|
HCP
Legendary
Offline
Activity: 2086
Merit: 4363
<insert witty quote here>
|
|
March 25, 2017, 09:31:36 AM |
|
how to make a script that would have done 1000 bets stopped and showed what was the biggest and smallest rolls
Use the lastBet object... the value of the last roll is stored in lastBet.roll Then you just compare each roll to the biggest/smallest value and save it if it is bigger/smaller. So, something like this: --CODE HAS NOT BEEN TESTED!!
... other vars...
biggest = 0 lowest = 100
numBets = 0
function doBet()
... stuff ...
if lastBet.roll < lowest then lowest = lastBet.roll end if lastBet.roll > biggest then biggest = lastBet.roll end ... other stuff ... numBets = numBets + 1 if numBets >= 1000 then print("BIGGEST roll: " .. biggest) print("smallest roll: " .. smallest) stop() end end
Hi again! Thanks to your help, i've managed to achieve more or less what i wanted. However, do you know how i can set the parameters inside the script to only make the change of lossmult during a certain amount of bets, and then go back to the initial? Any help will be much apreciatted! thanks
ummmm put in another counter when you change the lossmult? set it to zero, increment it every roll... and when it gets to the number of bets you set, you can just set lossStartMult back to whatever you want... --CODE HAS NOT BEEN TESTED!
if (!win) then lossCount += 1 else if lossCount >= 5 then lossStartMult = 4
-- NEW COUNTER lossStartMultCounter = 0 end lossCount = 0 end
--Increment every roll lossStartMultCounter += 1
-- if it gets to big, reset lossStartMult and reset the counter as well if lossStartMultCounter >= xNumberOfBets then lossStartMult = initialLossStartMultValue (or whatever else you feel like) lossStartMultCounter = 0 end if
|
|
|
|
raven7886
Legendary
Offline
Activity: 1512
Merit: 1041
|
|
March 26, 2017, 01:10:07 PM |
|
Hi guys, congrats to us all for the wonderful forum. Now first and foremost also like to thank Seuntjie for the WONDERFUL tool and programming language (already donated my friend ) that enable me to streak 200000 bets (more than 24 hours) in a row without loosing my bankroll. The trick has Seuntjie stated is to low bet with high bankroll. The marvelous part of Seuntjie's bot is that one can make a strategy based on prebetting and then fish for the long loosing strike. I've programmed a version of one of Seuntjie's script that basically I can leave running for days and have a very low probability of loosing (about 0.84% in a 500 bet streak) My script can make profits of 60/70% of current balance and withstand 100+ loosing strikes. Slowly but surely, I've been getting steady profits and IT WORKS on the long run, despite the house edge (and what other people say). There is always a way to beat the house edge, its mathematical. Of course that using simple Martingale strategies and Labouchère on the long run you will ALWAYS loose. Even with high bank roll the math does not play in our favor. I've taken few hours in making the math and fine-tuning the script but it has guaranteed results. Now I'm not trying to sell anything here with this post but also please don't ask to give the script for free since I lost about 1.5 BTC in fine-tuning it... Investigate, loose money yourself - I'm the living proof that IT WORKS. This post is just a testimony that house does not always win and IT IS possible to win while sleeping on the long run! Seuntjie - you're a God. Congrats for the marvelous tool. [im g]https://i.imgur.com/zdKMrko.png[/img] If you are not trying to sell something and tell that you are not giving away anything for free… Isn’t that simple means “pm me about the price of the script” ? If you are not giving it away for free and if you are promoting it, showing results etc. That means you are selling it. You just didn’t put a price on it.
|
|
|
|
|