您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This new version of the script is STILL a test. Do not install this until I've made it perspicupous that it works. I don't have a 100% gurantee that it will work, but we'll all see.
当前为
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 have easy access to it.
// ==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
}
};