Home

Awesome

Il2CppInspector Plugins Repository

This is the official repository of plugins for Il2CppInspector

Current plugins

Core

These plugins are part of the base functionality of Il2CppInspector. They are enabled by default and should always be present (but may be disabled if desired).

Loaders

These plugins allow the processing of IL2CPP workloads not directly supported by Il2CppInspector.

Examples

These plugins are intended as tutorial samples for plugin writers.

Installing plugins

Download all current plugins as a bundle (NOTE: does not include example plugins)

You can also use the get-plugins.ps1 or get-plugins.sh scripts supplied with Il2CppInspector to fetch the current plugins.

Place plugins in a folder called plugins which should be created in the same location as Il2CppInspector.exe.

Use --plugins at the command line or click Manage Plugins... in the GUI to configure your plugins.

Learn more in the Using Plugins section of the Il2CppInspector README.

Issue reports

ONLY use the issue tracker to report bugs in plugins.

DO NOT use the issue tracker to request plugins, request features for existing plugins, ask for help with plugins or report bugs in Il2CppInspector. These issues will be ignored. The plugin architecture exists to help you create new functionality, but we do not provide official support or take requests.

To report bugs in specific plugins, file an issue in the plugin owner's GitHub repo.

To report bugs in Il2CppInspector or its handling of plugins, use the Il2CppInspector issue tracker.

If you need plugin options, hooks or access to data that is not currently supported, or other plugin API features, feel free to suggest them on the Il2CppInspector issue tracker!

Creating plugins

See the Il2CppInspector Plugin Development Wiki for information about how to create plugins.

Submitting plugins

There are two ways to submit a plugin:

To submit a plugin whose code will reside directly in this repository:

To submit a plugin with code from a separate repository:

Submission requirements

If you plugin operates on a specific application, you must attach the related files to the PR so that we can test it, but do not include them in commits.

Plugin submissions should include source code and documentation only.

Plugin submissions should not include files from 3rd party commercial applications. If your plugin requires a 3rd party DLL or other file to function, create an option which asks the user to supply it. Dependencies such as nuget packages and open-source code from github are permitted.

One plugin, one purpose

Plugins are designed to be chained. Do not include multiple unrelated functions in your plugin. Create separate plugins for each task.

Code style

Your plugin should as closely as possible follow the code style demonstrated in the existing plugins. Comment your code clearly so that its functionality can be understood by others.

Use descriptive, grammatically correct and correctly capitalized names and descriptions for your plugin and their options (if English is not your first language, we will help you).

Plugin updates

Submit updates to your plugins as PRs as above.

Licensing

Submissions that are accepted will be licensed under AGPLv3. If your code is in a separate repo, your license must be compatible with AGPLv3.

We may change, split, merge or remove plugins over time to keep the codebase clean and logical, or incorporate new features added to Il2CppInspector.