Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
seuntjie
on 16/12/2016, 08:07:16 UTC
Hey seuntjie. I just ran across your bot a few days ago and am EXTREMELY impressed. Great work!

Also, your kingdice link has some formatting issues.
Regarding kingdice, I tried them yesterday, but they were down. Are they up and running fully now or more of a beta launch currently?

Thanks again.

Derp. Thanks for letting me know. They're up and running now and the site seems to be pretty stable.

No problem.

I have read through your documentation and watched your videos, but I have not been able to find something I was looking for.
Is there a way to have a dice bot script reference the current balance against the balance at the script start at every bet?
Thanks

edit: better to ask in the programming thread or pm?

The balance variable isn't always set at when you open the bot for the first time (something I still need to fix). what you can try in the meantime

Code:
startbalance = -1
--all your other variables
function dobet()
if startbalance = -1 then startbalance=balance end
--rest of your code
end