Giter Site home page Giter Site logo

dripbot's Introduction

DripBot v2.6

Makes dripstat fun again. Plays the game at http://dripstat.com/game optimally and automatically.

DripBot is an autoclicker as well! Dripbot defaults to not clicking, and when it does click uses an algorith to attempt to appear human. Although the algorithm is pretty good, USE AT YOUR OWN RISK. The pops from clicking and global dripping are on by default, and can be toggled with $dripBot.setShowPops(bool);, where bool is a boolean value (true/false). Defaults to false.

Usage

Get the Google Chrome extension! This will automatically load DripBot whenever you go to https://www.dripstat.com/game, and allows DripBot to reload itself when the game errors.

or

Use a bookmark to easily start DripBot. Create a new bookmark with javascript:(function(){$.getScript('https://apottere.github.io/DripBot/dripBot.js');}()); as the url. Then just head over to dripstat, and once the page loads click your bookmark.

or

After loading dripstat, paste the following into your browser's console and press Enter: $.getScript('https://apottere.github.io/DripBot/dripBot.js');

For more information on browser consoles, see http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers (YMMV).

Stages

  1. Story: Traverses the story, starting the game from any point.
  2. Purchase: Builds B/s as fast as possible, optimizing powerup and upgrade purchases with minimal dripping (dripping is waste). Runs untill a B/s threshold is reached. The threshold can be changed with $dripBot.setBPSThreshold(float);, where float is the desired threshold in MB/s. Defaults to 7.
  3. Win: Attempts to climb to first place by dripping constantly, and optionally stops when achieved. Whether to drip when in first place or not can be toggled with $dripBot.setBenevolentLeader(bool);, where bool is a boolean value (true/false). Defaults to false.

dripbot's People

Contributors

apottere avatar magei avatar ryangardner avatar

Watchers

 avatar  avatar  avatar  avatar

dripbot's Issues

chrome console spam

If this script gets served through gh-pages it would remove the console spam on chrome for every version check. (http://pages.github.com/)

Resource interpreted as Script but transferred with MIME type text/plain: "https://raw.github.com/apottere/DripBot/master/version.js?_=1392573195645".

Add autosave every five seconds

I've been having a lot of Refresh issues and I've found that if you add a an autosave (that calls $dripBot.save()) it will solve itself.

For now I've added it to the chrome plugin that is installed:

    function whenAvailable(name, callback) {
        var interval = 10;
        window.setTimeout(function() {
            if (window[name]) {
                callback(window[name]);
            } else {
                window.setTimeout(arguments.callee, interval);
            }
        }, interval);
    }
    whenAvailable("$dripBot", function(dripbot) {
        dripbot.autosave = setInterval(function() {
            dripbot.save();
        }, 1000*5);
    });

I've added this right after the dripBotPro line in the contentscript.js
However this isn't the most correct approach and would be best to add this to the main js.

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.