a javascript bot for Shuffle.com casino. the strategy script must be coded in javascript, and not Lua script.
install extension: https://vimeo.com/954086250
Please favourite the repo in case you liked/used it. Thank you!
Discord: fisk_992
Stake: poky1084
Telegram:: @poky_1084
functions: resetseed('clientseed'), resetstats(), vault(amount), log('text'), start(), stop(), resetAll(), resetChart(), deleteLogs()
!!the strategy must be in dobet()
method, and dobet()
must be declared as shown below!!
nextbet = 0.00001 //in crypto format, not USD
chance = 98
dobet = function(){
//strategy code
}
or:
function dobet(){
//strategy code
}
Plinko:
game = "plinko"
rows = 8
risk = "low"
Keno:
game = "keno"
numbers = [1,2,3,4,5,6,7,8]
risk = "low"
Mines:
game = "mines"
fields = [1,2,3,4,5,6,7,8]
mines = 3
Limbo:
game = "limbo"
chance = 49.5
nextbet = 0
Dice:
game = "dice"
chance = 49.5
nextbet = 0
bethigh = false
Wheel:
game = "wheel"
nextbet = 0
risk = "low"
segments = "10"
Crash:
game = "crash"
target = 1.5
chance = 99 / target
nextbet = 0