You are viewing a potentially older version of this package. View all versions.
innominata-BepInEx_Console_Extensions-2.0.0 icon

BepInEx Console Extensions

Utilities for BepInEx console. Change Color, Output IL From Transpilers etc

Date uploaded a year ago
Version 2.0.0
Download link innominata-BepInEx_Console_Extensions-2.0.0.zip
Downloads 488
Dependency string innominata-BepInEx_Console_Extensions-2.0.0

This mod requires the following mods to function

xiaoye97-BepInEx-5.4.17 icon
xiaoye97-BepInEx

BepInEx5.4.17 mod plugin framework, Mod框架

Preferred version: 5.4.17

README

Simple mod to allow easy use of custom colours in the console by other BepInEx mods

Manual Installation:

  1. Install BepInEx
  2. Copy the BCE.dll to your BepInEx/plugins directory

Developer Usage:

using BCE;

 console.Write("SomeText ", ConsoleColor.Red);

 console.Write("SomeOtherText\n", ConsoleColor.DarkCyan);

 console.WriteLine("A Whole Line of Text", ConsoleColor.DarkGray);

Available Colors are found here, or via your IDE Autocomplete https://docs.microsoft.com/en-us/dotnet/api/system.consolecolor?view=net-5.0