Skip to main content

ODPlugin class

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

This is an Open Ticket plugin.

It represents a single plugin in the ./plugins/ directory. All plugins are accessible via the opendiscord.plugins global.

Don't re-execute plugins which are already enabled! It might break the bot or plugin.

View Source

Properties


crashed boolean boolean

Did this plugin crash? (A reason is available in the crashReason)

View Source


crashReason type null|"incompatible.plugin"|"missing.plugin"|"missing.dependency"|"executed"

The reason which caused this plugin to crash.

View Source


data interface api.ODPluginData

All plugin data found in the plugin.json file.

View Source


details interface api.ODPluginDetails

The additional details of this plugin.

View Source


dir string string

The name of the directory of this plugin. (same as id)

View Source


enabled boolean boolean

Is this plugin enabled?

View Source


executed boolean boolean

Did this plugin execute successfully?.

View Source


inherited id class api.ODId

The id of this data.

View Source


name string string

The name of this plugin.

View Source


priority number number

The priority of this plugin.

View Source


version class api.ODVersion

The version of this plugin.

View Source


Methods


constructor() function api.ODPlugin

(no description)

View Parameters (2)
  • dir: string string - Parameter Description Lorem Ipsum.
  • jsondata: interface api.ODPluginData - Parameter Description Lorem Ipsum.

View Source


inherited protected _change() function void

Trigger an onChange() event in the parent ODManager of this class.

View Source


inherited changed() function void

(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.

View Parameters (1)
  • callback: type null|(() => void) - Parameter Description Lorem Ipsum.

View Source


dependenciesInstalled() function string[]

Get a list of all missing npm dependencies that are required for this plugin.

View Source


execute() function Promise

Execute this plugin. Returns false on crash.

View Parameters (2)
  • debug: class api.ODDebugger - Parameter Description Lorem Ipsum.
  • force: boolean boolean - Parameter Description Lorem Ipsum.

View Source


getStartFile() function string

Get the startfile location relative to the ./plugins/ directory. (./dist/plugins/) when compiled)

View Source


pluginsIncompatible() function string[]

Get a list of all enabled incompatible plugins that interfere with this plugin.

View Parameters (1)

View Source


pluginsInstalled() function string[]

Get a list of all missing plugins that are required for this plugin.

View Parameters (1)

View Source


Defaults

under construction

We're still working on this part of the documentation!

Examples

under construction

We're still working on this part of the documentation!