Skip to content

A script to claim the daily reward on popular gambling site Chumba Casino

Notifications You must be signed in to change notification settings

seth-milojevic/chumba-claim-daily

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chumba-claim-daily: Chumba Casino daily reward claimer

A simple script to automatically claim rewards from the popular gambling website Chumba Casino.

Usage Instructions:

  1. Clone the repository

  2. Within the repository, create the following file: users.json

  3. Within users.json, provide the login(s) in JSON format like so:

{
    "users": [
        {"email": "[email protected]","password": "PASSWORD"},
        {"email": "[email protected]","password": "PASSWORD"},
        {"email": "[email protected]","password": "PASSWORD"}
    ]
}

Done! Feel free to cargo run and watch the script go.

Below are optional steps for the following:

Docker Instructions:

  1. Navigate into the repository

cd /path/to/cloned/repository

  1. Build the docker image and name it "chumba-claim-daily".

docker build -t chumba-claim-daily .

  1. Run the docker image

docker run --rm chumba-claim-daily:latest

Voila! Docker will create and run a container with the script running inside.

Cron Instructions

There will be two sets of cron instructions:

Note

Both methods will utilize the crontab of the host machine. The only difference is where the chumba-claim-daily script is executed.

Host Machine

  1. Open crontab

crontab -e

  1. Add the following to crontab to execute the script every day at 5am

0 5 * * * cd /path/to/cloned/repository && cargo run --release

Done! Every day at 5am, cargo run --release will be executed within the repository's directory and run the script.

Docker

I have personally had issues with running docker commands from within crontab, so I create shell scripts containing the docker commands I need crontab to run.

  1. Create a shell script such as docker-run.sh and add

docker run --rm chumba-claim-daily:latest

  1. Open crontab

crontab -e

  1. Add the following to crontab to execute the script every day at 5am

0 5 * * * /bin/sh /path/to/shell/script/docker-run.sh

  1. Save changes and exit crontab

Done! Every day at 5am, the container will be created and run the script.

About

A script to claim the daily reward on popular gambling site Chumba Casino

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published