plays roulette with the martingale bet strategy and joins chat rains automatically on growdice.net (growtopia betting)
clone package
git clone https://github.com/Zeeetu/growdicebot
enter directory
cd growdicebot
install with pip
pip install -U .
easiest way to use this is with the cli:
growdicebot <sessionid>
view the arguments with:
growdicebot -h
you can also use it in a python script:
from growdicebot import GrowDiceBot
bot = GrowDiceBot("your-session-id-here")
bot.run()
through cli:
growdicebot <sessionid> -mb <amount to bet in WLs> -mc <color to bet on>
or in python script:
from growdicebot import GrowDiceBot, RLT #class containing roulette colors
bot = GrowDiceBot("your-session-id-here")
bot.martingale(1, RLT.RED) # betting starts with 1WL on red
note: you don't have to call run()
when using martingale
extract sessionID from local storage after logging in on growdice.net on your browser
sessionID will look like this: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
-
multiple accounts
-
auto-tip to main account
-
play other games with different strategies
contributions are always welcome. attempt to mostly adhere to the basic structure of the project when adding new features