Basic plugin skeleton

Overview

The most basic plugin for Hadouken does nothing. It is a simple .js file that exports a load function.

The plugin directory

Depending on whether Hadouken is installed or running portable, the JavaScript root varies.

  • If Hadouken is installed, plugins are (by default) loaded from %PROGRAMDATA%/Hadouken/js/plugins.
  • If Hadouken is running portable, plugins are (by default) loaded from js/plugins which is relative to where the hadouken.exe resides.

Basic plugin

exports.load = function() {};