poky1084 / bot4shuffle

a javascript bot for Shuffle.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bot4shuffle

a javascript bot for Shuffle.com casino. the strategy script must be coded in javascript, and not Lua script.

Videos:

install extension: https://vimeo.com/954086250

Info:

Please favourite the repo in case you liked/used it. Thank you!

Discord: fisk_992
Stake: poky1084
Telegram:: @poky_1084

Use:

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 

About

a javascript bot for Shuffle.com


Languages

Language:JavaScript 100.0%