您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Copy and paste this code into console or use tampermonkey or greasemonkey (may not work). This code will allow you to press '1' and teleport to the start of the level as a playable character after you have ghosted. It can be extremely useful. I have found a bug where after using this code buttons do not work so I am trying to find a way to fix it.
// ==UserScript== // @name Brofist.io Respawn (Un-Ghost) (2PA) // @namespace Brofist.io Respawn After Ghost // @include http://brofist.io/modes/twoPlayer/c/index.html // @version 1.4 // @description Copy and paste this code into console or use tampermonkey or greasemonkey (may not work). This code will allow you to press '1' and teleport to the start of the level as a playable character after you have ghosted. It can be extremely useful. I have found a bug where after using this code buttons do not work so I am trying to find a way to fix it. // @grant none // ==/UserScript== var oldName = client.name; var oldSkin = client.skin; document.onkeydown = function(event){ if (event.keyCode == 49) client.start(); };