Best brofist.io hacks 2018 (Hide and Seek)

This is a test. I will update to see if it works. PLEASE DONT INSTALL THE SCRIPT UNTIL FURTHER NOTICE!

נכון ליום 29-08-2018. ראה הגרסה האחרונה.

יוצר
Kaden Baker
דירוגים
0 0 0
גרסה
1
נוצר
29-08-2018
עודכן
29-08-2018
Size
1.67 קילו-בייט
רישיון
לא זמין
חל על

This is a test. Please do not install until further notice. Thank you and have a great day! :D
1 - Same speed as a seeker
2 - Cancel that
3 - Float and walk through objects
4 - Cancel that
5 - Reverse gravity and turn upside down
6 - Cancel that
7 - Fly up and down and go through walls
8 - Cancel that
9 - Teleport below where you're standing
0 - Teleport to Y level of where you're at

REMEMBER: This is a test. I will update it as soon as I know if it works or not. It will not be long because it really doesn't take that long.

If you want to try and change it, here is the copied version so you don't have to use this useless SHIT!


// ==UserScript==
// @name Best brofist.io hacks 2018 (Hide and Seek)
// @namespace Best brofist.io hacks 2018 (Hide and Seek)
// @include http://brofist.io/modes/hideAndSeek/c/index.html
// @version 1
// @description This is a test. I will update to see if it works. PLEASE DONT INSTALL THE SCRIPT UNTIL FURTHER NOTICE!
// @grant none
// ==/UserScript==
var oldName = client.name;
var oldSkin = client.skin;
document.onkeydown = function(event) {
if (event.keyCode == 38) {
client.runPhysics= false;
mode.player.gpData.p.force=[0, 700];
client.runPhysics= true;
}
if (event.keyCode == 40) {
client.runPhysics= false;
mode.player.gpData.p.force=[0, -700];
client.runPhysics= true;
}
if (event.keyCode == 49){
client.runPhysics= false;
mode.spd=3.5;
clienbt.skin = "Seeker";
client.ruPhysics= true;
}
if (event.keyCode == 50){
client.runPhysics= true;
mode.spd=3;
client.skin = "Tagged";
client.runPhysics= false;
}
if (event.keyCode == 51) {
mode.player.gpData.p.invMass = 0
}
if (event.keyCode == 52) {
mode.player.gpData.p.invMass = 1
}
if (event.keyCode == 53) {
mode.player.gpData.p.angle = 3.14159
mode.player.gpData.p.gravityScale = -1
}
if (event.keyCode == 54) {
mode.player.gpData.p.angle = 0
mode.player.gpData.p.gravityScale = 1
}
if (event.keyCode == 55){
mode.player.gpData.p.gravityScale=0;
mode.player.gpData.p.collisionResponse=0;
}
if (event.keyCode == 56){
mode.player.gpData.p.gravityScale=1;
mode.player.gpData.p.collisionResponse=1;
}
if (event.keyCode == 57){
mode.player.gpData.p.position[1]=1.719006061553955
}
if (event.keyCode == 48){
mode.player.gpData.p.position[1]=-122.38400268554688
}
};