Skip to content

Instantly share code, notes, and snippets.

View binaryatrocity's full-sized avatar

Brandon Cornejo binaryatrocity

View GitHub Profile
@binaryatrocity
binaryatrocity / ToggleBrief.md
Created December 26, 2017 21:19
Adding brief/verbose combat to CowBar

Find the part that looks like:

]]>
</script>

Add this right above it:

#CLASS gmcp kill
#CLASS gmcp open
#FORMAT IAC %a 255
#FORMAT DONT %a 254
#FORMAT DO %a 253
#FORMAT WONT %a 252
#FORMAT WILL %a 251
#FORMAT SB %a 250
@binaryatrocity
binaryatrocity / FenceSheet.js
Created January 20, 2019 17:56
Google App Script for Fencing item spreadsheet
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Fencing Tools')
.addItem('Parse Output', 'parseFenceOutput')
.addItem('Clear Inputs', 'clearFenceInput')
.addToUi();
}
function onEdit(e){
var range = e.range;