I don't allow users to change scripts one they've been uploaded, otherwise someone could change a script to just withdraw or tip a users balance and hide it in the rest of the script after I've approved it.
I made the change you requested to the script
is there any way to use your bot and i can set max bet to x.xxbtc ?
If you want to use that script, you'll probably add something like this to the end of the dobet function:
if nextbet>maxbet then --where maxbet is a defined value at the top of the script
nextbet=maxbet
end
If you're just using the advanced mode, there is a max bet setting in the advanced bet settings or stop conditions tab.
I don't allow users to change scripts one they've been uploaded, otherwise someone could change a script to just withdraw or tip a users balance and hide it in the rest of the script after I've approved it.
I made the change you requested to the script
Thank you. It is a good decision for all users in long term.
If want to make any changes, will request in the forum. Mostly if there is any bug that is fixed.
By the way, is there a way to send/set clientseed with every bet ?
No, for two reasons:
1. Sites that use a nonce based provably fair method does not allow you to change the client seed without resetting the server seed, and almost none of the sites allow you to reset the server seed after each bet. It is, in my opinion, anyway better to use a single server client seed pair for an extended period of time and only randomize if you want to verify you bets.
2. If I allow users to set their own client seeds, people will use the same client seed over and over again, and this puts them at a risk of the site cheating. It's me being paranoid and it's highly unlikely, but it's better that the bot randomly generates a new seed for every bet when the site uses a per bet based client and server seed pair.
Got it. Can you please update second script with same if condition correction ?