3

I've tried

StackExchange.uc.setBalance(99999999);

and it was nothing more than a visual thing.

Also, I bought the power up and now I want an inspirational answer. Because I fell that the unicorns would appreciate the going.

Q: Is there a faster way to mine unicoins or set them so I can get ALL the unicoins.

EDIT:

I feel like the unicorns aren't happy with the decision I've made of asking. They're outside my house.

Unicorn edit:

We've got him. Don't come looking, he's ours now.

Albzi
  • 15,431
  • 6
  • 46
  • 63

1 Answers1

4

go to the mining page, execute the following code in your console, just keep moving your mouse over the rocks.

$('#uc-rockcanvas').mousemove(function(event) {
    for(var i = 0; i < 10; i++) {
           var mousedownEvent = document.createEvent ("MouseEvent");
           mousedownEvent.initMouseEvent ("mousedown", true, true, window, 0, 
                                          event.screenX, event.screenY, event.clientX, event.clientY, 
                                          event.ctrlKey, event.altKey, event.shiftKey, event.metaKey, 
                                          0, null);
           event.target.dispatchEvent (mousedownEvent);
    }
});
Roman
  • 5,888
  • 26
  • 47