As a prerequisite, download and install PxPlus IBM VGA8 font.
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Railgun", | |
"type": "coreclr", | |
"request": "launch", |
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
@echo off | |
@echo Among Us Downloader v1.0.1 by UpcraftLP | |
@echo check https://gist.github.com/UpcraftLP/c5972d37474450f56ff8069d96f4b8b6 for updates | |
@echo( | |
:setup | |
:: https://github.com/SteamRE/DepotDownloader | |
SET "DEPOTDOWNLOADER=depotdownloader/depotdownloader.bat" | |
SET "STEAM_USER=INVALID" |
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
::disable command feedback | |
@echo off | |
::all varables are local now, and expanded at execution time ratehr than at parse time. | |
setlocal enabledelayedexpansion | |
::set text color to magenta | |
echo [95m | |
::clear the CMD greeter |
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
package core.upcraftlp.craftdev.api.util; | |
import com.google.common.collect.Lists; | |
import core.upcraftlp.craftdev.common.CraftDevCore; | |
import core.upcraftlp.craftdev.config.CoreInternalConfig; | |
import net.minecraft.util.StringUtils; | |
import net.minecraftforge.common.ForgeVersion; | |
import net.minecraftforge.fml.common.FMLCommonHandler; | |
import java.util.List; |