Skip to content

Instantly share code, notes, and snippets.

View PaintNinja's full-sized avatar

Paint_Ninja PaintNinja

View GitHub Profile
@PaintNinja
PaintNinja / MMC-CLI-Extender.cmd
Last active July 12, 2017 21:03
Extends MultiMC's core commandline functionality to permit basic creation, deletion and modification of instances. Must be put in the same folder as the MultiMC exe.
@echo off
set BINDIR=%~dp0
cd /d %BINDIR%
if "%1"=="create" (goto CreateInstance)
if "%1"=="delete" (goto DeleteInstance)
if "%1"=="add-component" (goto AddComponentToInstance)
:Welcome
echo MMC CLI Extender v0.1
echo.