-
-
Save pwfff/8966300 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Go To flapmmo.com | |
// Open Web Inspector | |
// Go to sources tab | |
// On the side bar, find main.js | |
// Pretty Print main.js (in Chrome, its the curly bracket symbol on the bottom) | |
// Add breakpoint on line 142 by literally clicking where the line number is listed | |
// Go to the console tab. | |
// You can have a friend tell you their server and then use this to be on same sever as them. | |
// To set the server to something you want, run this. | |
r = 'ws://198.58.104.108:2829'; | |
// To override the gravity and use your mouse to navigate, copy and paste this code | |
document.onmousemove = function(event) { c.y = event.clientY; } | |
setInterval(function(){ | |
c.vy = 0; | |
},10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment