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
// ==UserScript== | |
// @name StarBreak: Super Macorn | |
// @namespace http://ryara.net/ | |
// @version 0.1 | |
// @author tobbez | |
// @match http*://www.starbreak.com/* | |
// @grant none | |
// @downloadURL https://gist.github.com/tobbez/f28a7abbdd956c3b783c/raw/starbreak-quick-swap.user.js | |
// @updateURL https://gist.github.com/tobbez/f28a7abbdd956c3b783c/raw/starbreak-quick-swap.user.js | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name StarBreak: Sprite Sheet Replacer | |
// @version 1.0 | |
// @match https://*.starbreak.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; |
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
// ==UserScript== | |
// @name StarBreak-Bots: Auto Loot | |
// @version 1.0 | |
// @match https://*.starbreak.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @grant GM_addValueChangeListener | |
// ==/UserScript== | |
let autoLootLeftCode = "Quote"; | |
let autoLootRightCode = "Backslash"; |
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
// ==UserScript== | |
// @name StarBreak-Bots: Combat | |
// @version 1.0 | |
// @match https://*.starbreak.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @grant GM_addValueChangeListener | |
// ==/UserScript== | |
let goToLeadCode = "KeyX"; | |
let jumpToLeadCode = "KeyS"; |
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
// ==UserScript== | |
// @name StarBreak-Bots: Login | |
// @version 1.0 | |
// @match https://*.starbreak.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// ==/UserScript== | |
let un = getAccountUsername(); | |
let accsData = getAccsData(); |
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
// ==UserScript== | |
// @name StarBreak: Double Shoot | |
// @version 1.0 | |
// @author raidan00 | |
// @match http*://www.starbreak.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @description https://www.youtube.com/@WipeFire | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name StarBreak: Multi Acc | |
// @version 1.1 | |
// @description StarBreak: Multi Acc | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// @grant GM_addValueChangeListener | |
// @match https://*.starbreak.com/* | |
// ==/UserScript== | |
let goToLeadKeyCode = 88; |
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
license: gpl-3.0 |