├── LICENSE ├── README.md ├── Stuctures └── legendJsClient.js ├── commands ├── emotes │ ├── add-these.js │ ├── add.js │ ├── big.js │ ├── list.js │ ├── remove.js │ ├── rename.js │ └── stats.js └── info │ └── help.js ├── config.json ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/README.md -------------------------------------------------------------------------------- /Stuctures/legendJsClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/Stuctures/legendJsClient.js -------------------------------------------------------------------------------- /commands/emotes/add-these.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/add-these.js -------------------------------------------------------------------------------- /commands/emotes/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/add.js -------------------------------------------------------------------------------- /commands/emotes/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/big.js -------------------------------------------------------------------------------- /commands/emotes/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/list.js -------------------------------------------------------------------------------- /commands/emotes/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/remove.js -------------------------------------------------------------------------------- /commands/emotes/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/rename.js -------------------------------------------------------------------------------- /commands/emotes/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/emotes/stats.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/emote-manager/HEAD/package.json --------------------------------------------------------------------------------