mouse484 / Ecstar

The easiest JavaScript/TypeScript Discord bot framework.
http://ecstar.js.org
MIT License
9 stars 3 forks source link

Request - guilds only #76

Open 7yultukuri7 opened 4 years ago

7yultukuri7 commented 4 years ago

指定したギルドのみ実行可能 help command にも対応してほしい https://github.com/mouse484/Ecstar/issues/44

export = class extends Command {
  constructor(client) {
    super(client, {
      name: 'command name', //Required
      guildsonly: ['443320971609374721', '391390986770710528'] // <--ここ
    });
  }
  run(message) {
    // ...
  }
};
7yultukuri7 commented 4 years ago

discord.jsの公式コマンドフレームワーク Commando にはない機能だからこれがあると便利になる。

mouse484 commented 4 years ago

guildOnly -> DM ❎

にする予定なので別の名前を考えてその機能実装したいです そのユーザー版も良いかもしれません

mouse484 commented 4 years ago

guildOnly can not be used in DM So think of another name.

User version may be good

mouse484 commented 4 years ago

add guildOnly #77

mouse484 commented 4 years ago

@7yultukuri7