Skip to content

Instantly share code, notes, and snippets.

View tmad40blue's full-sized avatar

Dylan Larkins tmad40blue

View GitHub Profile
@tmad40blue
tmad40blue / twitchstreaming.txt
Created September 18, 2016 23:32
Starting to stream on Twitch
See below for instructions
@tmad40blue
tmad40blue / bt_updater.sh
Last active March 31, 2016 07:24
BuildTools auto-updater
# Bash safety stuff
set -o errexit
# Environemnt variables
DIRECTORY="/home/minecraft" # Working directory for BuildTools (NOT your server directory - please make a separate one)
SERVDIR="/home/minecraft/servers/spigot_server" # The actual directory where your Spigot server is
MAXRAM="16" # How much RAM (in GB) to allocate to BuildTools - default is 1GB
@tmad40blue
tmad40blue / config_sample.yml
Created February 9, 2016 20:49
EntityScripter sample config file.
properties:
set_entity_type: "zombie"
set_custom_name: "muffin"
set_custom_name_visible: true
set_silent: true
potion_effects:
speed:
duration: 999
amplifier: 20
ambient: false
@tmad40blue
tmad40blue / mcserver
Last active April 2, 2016 13:12
All-in-one Minecraft server management script.
#! /bin/bash
set -o errexit
# Minecraft Server Management Script
# By tmad40blue - http://tmad40.blue/
# !!! EDIT THE VARIABLES BELOW TO MATCH YOUR SERVER'S INFO !!!
# !!! DO NOT EDIT ANY OTHER PART OF THIS SCRIPT !!!
SERVDIR="" # The complete directory path where your JAR file is - example: /home/minecraft/servers/
@tmad40blue
tmad40blue / bungee_updater
Last active January 26, 2016 05:41
BungeeCord updater script.
#! /bin/bash
# BungeeCord Updater/Restarter
# By tmad40blue - http://tmad40.blue/
# Bash safety stuff
set -o errexit
# Set username that should run this process
USERNAME="minecraft"
SERVNAME="bungee"