Skip to content

Instantly share code, notes, and snippets.

View nitrog0d's full-sized avatar
👽
ayy lmao

nitro nitrog0d

👽
ayy lmao
View GitHub Profile
@nitrog0d
nitrog0d / NitroROSpawnerAutoBuy.js
Last active December 29, 2020 23:47
"Rede Obscure" Rankup Spawner Auto Buy
// 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',
@nitrog0d
nitrog0d / CustomRules.js
Created February 13, 2020 02:50
Correios Posta Restante - FiddlerScript
// 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);
}