Code Monkey home page Code Monkey logo

bot4stake's Introduction

bot4stake

a javascript coded bot for Stake, Primedice, copy-paste in the console. (Dice, Limbo, Crash, Slide, Keno, Plinko, Mines, Roulette, Wheel, Baccarat, Dragontower)
the strategy script must be coded in javascript, and not Lua script.

Videos:

install extension: https://vimeo.com/954123726
install console: https://cos.tv/videos/play/52855058251682816

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"

baccarat:

game = "baccarat"
player = 0.001
banker = 0
tie = 0

dragon tower:

game = "dragontower"
nextbet = 0
difficulty = "easy"
eggs = [0,1]

Roulette:

game = "roulette"
chips = [{"value": "number0", "amount": 0.001},{"value": "colorBlack", "amount": 0.001}]

Crash:

game = "crash"
target = 1.5
chance = 99 / target
nextbet = 0 

Slide:

use: https://www.youtube.com/watch?v=TkDPeuxEOUM

game = "slide"
nextbet = 0.01
target = 1.5
chance = 99 / target

dobet = function(){

 if(id["identifier01"]){
    log("identifier01 won.")
 }

 if(id["identifier02"] == false){
    log("identifier02 lost.")
 }

 makebet(nextbet, chance, "identifier01")
 makebet(nextbet, chance, "identifier02")
 makebet(nextbet, chance, "identifier03")
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.