Last active
May 26, 2019 13:31
-
-
Save ruzli/e52a36dd10120793cb97e3210d1ee299 to your computer and use it in GitHub Desktop.
Instant betting(takes up to 10 seconds to finish place amount of bets you set with flat bets) [Balance: Any]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//******* INSTANT BETTING *******// | |
var config = { | |
baseBet: { label: "Bet", type: "balance", value: 100 }, | |
target: { label: "Target", type: "multiplier", value: 100 }, | |
betCount: { label: "Bet count", type: "number", value: 100 }, | |
resetStatistics: { label: "Reset statistics on launch?", type: "checkbox", value: true } | |
} | |
if (config.resetStatistics.value) this.resetStatistics() | |
for (let i = 0; i < config.betCount.value; i++) { | |
this.bet( config.baseBet.value, config.target.value).catch(this.stop) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment