Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
l2r
on 23/06/2016, 02:55:13 UTC
If anyone want to try a new script in programming mode, check it out.

I have submitted the same to Seuntjie site as well and also pasted in the Pastebin.

DiceBot Script with Array and Random Multiplier
http://pastebin.com/P8c2Bn88

There is another version currently in testing, where I put some reset condition and additional variable to make better bet amount in case of loss streak

DiceBot Script with Array & Random Multiplier(Test Version)
http://pastebin.com/zJP2E6Pk

Please make sure you read the instructions on different variables for controlling your bank roll and stoploss.

I have tried this script 8-10 times with bankroll 0.01 and bet amounts 0.00000010, 0.00000100, and 0.00001000 and seems to be working fine.


https://bot.seuntjie.com/scripts.aspx?id=41 and https://bot.seuntjie.com/scripts.aspx?id=42


Hi Seuntjie,

How to make modifications to the script ?? There is a bug in the script.

the If loop,

Code:
if (balance > (balance+ sessionprofit)) then
print("Target Achieved")
stop()
end


The actual loop should be like this,

Code:
if (balance > (bankroll + sessionprofit)) then
print("Target Achieved")
stop()
end

The variable "balance" should be changes to "bankroll" in the addition to sessionprofit for a proper stop condition otherwise it will keep running and never stop.

Thanks
l2r