Code Monkey home page Code Monkey logo

Comments (15)

SampleProvider avatar SampleProvider commented on May 27, 2024

Fixed Again.

from meadow-guarder-old.

 avatar commented on May 27, 2024

Ok.

from meadow-guarder-old.

 avatar commented on May 27, 2024

Did you update?

from meadow-guarder-old.

 avatar commented on May 27, 2024

I can still do it.

from meadow-guarder-old.

 avatar commented on May 27, 2024

https://drive.google.com/file/d/16GP1zjO_03PXTpaItPp3l7E9hBiMU6io/view

VIEW THIS VIDEO TO SEE THE TUTORIAL FOR AUTO CLICK.

https://drive.google.com/file/d/1Vn08blFCBAHxZROAhfUqjow8g5E3--M4/view

VIEW THIS VIDEO TO THE TUTORIAL FOR THE AUTO MOVE GLITCH.

from meadow-guarder-old.

 avatar commented on May 27, 2024

I found away - you can press F7 and the auto glitch still works.

from meadow-guarder-old.

 avatar commented on May 27, 2024

Also, there is a way to do the glitch without using any keyboard keys. Just hold left clickd own and drag your cursor to the potions box and let go.

from meadow-guarder-old.

SampleProvider avatar SampleProvider commented on May 27, 2024

Fixed.

from meadow-guarder-old.

 avatar commented on May 27, 2024

Ok, there is still one way. Hold left click. Press Ctrl + Shift + C and open Chrome Devtools. Let go of left click on the chrome devtools part of the window. Then close chrome devtools and the glitch is there!

from meadow-guarder-old.

 avatar commented on May 27, 2024

There is stil a way to do the glitch, but you can only do it with a mouse. Hold down left click, unplug your mouse's USB and then plug it back in!

Of course, this isn't very practical, but it works!

from meadow-guarder-old.

 avatar commented on May 27, 2024

Note, there is a way to detect if touchpad if the mouse is being used: credits - https://stackoverflow.com/questions/10744645/detect-touchpad-vs-mouse-in-javascript

function detectTrackPad(e) {
var isTrackpad = false;
if (e.wheelDeltaY) {
if (e.wheelDeltaY === (e.deltaY * -3)) {
isTrackpad = true;
}
}
else if (e.deltaMode === 0) {
isTrackpad = true;
}
console.log(isTrackpad ? "Trackpad detected" : "Mousewheel detected");
}

document.addEventListener("mousewheel", detectTrackPad, false);
document.addEventListener("DOMMouseScroll", detectTrackPad, false);

from meadow-guarder-old.

 avatar commented on May 27, 2024

You can also do the auto click glitch by holding left click and releasing it on the downloads bar - this is the bar:
image

from meadow-guarder-old.

 avatar commented on May 27, 2024

I FIGURED OUT THE SOLUTION!!!!

Just add to your client/index.html

document.documentElement.onclick = function() {
socket.emit('keyPress',{inputId:"releaseAll",state:true});
}

from meadow-guarder-old.

 avatar commented on May 27, 2024

This is still possible for me by simply going to another tab while holding left click - then on the tab let go of your click and then come back to the game. I am on Chrome Canary and I used touchpad.

from meadow-guarder-old.

 avatar commented on May 27, 2024

This doesn't happen anymore.

from meadow-guarder-old.

Related Issues (20)

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.