Skip to content

Indigo Mod is a Minecraft Bedrock modloader using web socket connections.

License

Notifications You must be signed in to change notification settings

IndigoMod/IndigoMod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



Indigo Mod is a Minecraft Bedrock modloader using web socket connections.

Installation

1. Download Python (Python 3 recommended) https://python.org 2. Download IndigoMod Zip (Not quite ready) 3. Unzip IndigoMod Zip

Usage

1. Open Minecraft Bedrock Edition 2. Create a new world with cheats enabled or use an existing world with cheats enabled. 3. Open run.cmd, not indigomod.py. First time use may take a while to load. 4. Open the chat window in Minecraft. 5. Enter /connect (code). You can find your code in the window that opened when you ran run.cmd. 6. Open the chat window in Minecraft. 7. Type .version to verify that IndigoMod loaded properly.

Plugins

Plugins do not change the way your game looks. Some plugin developers may pair a plugin with an addon.

WARNING

IndigoMod is not responsible for harmful plugins. A list of approved plugins are coming soon.

Installation Instructions

1. To install a plugin, download the plugin file. It should look like plugin.py. 2. Locate the indigomod/plugins directory. If you have never ran IndigoMod before, the directory may not appear. 3. Place the plugin into the indigomod/plugins directory.

Developing Plugins

This is a tutorial for developers. You shoud have basic Python skills.

Imports

Your plugin should have one import, from api import *. This import is not required if you are not going to do anything ingame (for example, just using it to log actions) IndigoMod just grabs variabled from your file, so there is no need for special naming or other imports.

Events

You can find a full list of events here. https://github.com/Beta5051/MinecraftWS/blob/master/MinecraftWS/event.py

def onAchivement(args): # You can set this to anything. args is a required argument, even if you are not going to use them.
  print("GG! You got an achivement!")
events = {
  "AwardAchievement" : onAchivement # onAchivement not onAchivement()
}

About

Indigo Mod is a Minecraft Bedrock modloader using web socket connections.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages