This file contains 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
// I made this script to automatically buy spawners in some trash ass Brazilian rankup server called "Rede Obscure" | |
// Scaffold was used as "auto place" | |
// It uses LiquidBounce ScriptAPI and needs https://github.com/CzechHek/Core to run, also fuck Nashorn goddamn wtf is this JavaScript | |
// At the end we got banned but it was fun while it lasted, we broke the economy | |
// First Minecraft Script, 29/12/20 | |
///api_version=2 | |
var script = registerScript({ | |
name: 'ROSpawnerAutoBuy', | |
version: '1.0', |
This file contains 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
// This is a script I made while I worked at Correios (internship for 1 year, first job experience), to speed up one of the most annoying parts of my day there, it's very simple but works perfectly as how I wanted. | |
import System; | |
import Fiddler; | |
class Handlers { | |
static function addCode(oSession: Session, originalCode: String, newCode: String) { | |
oSession.utilReplaceInResponse(originalCode, originalCode + newCode); | |
} |