Basic inhibitor setupInhibitors are a great way to prevent users from using certain commands or allIn this tutoroial ill show how to them upthis guide assumes that you are already using the intro bot//mod.ts...//You are going to add this under the command handlerinhibitorHandler: NaticoInhibitorHandler = new NaticoInhibitorHandler(this, { directory: './inhibitors', });... async start(token: string) { //Set the inhibitor handler to be used this.commandHandler.setInhibitorHandler(this.inhibitorHandler); //Then load the commands as usual await this.commandHandler.loadALL(); //And the inhibitors await this.inhibitorHandler.loadALL(); return this.login(token); }CopyCreating a inhibitor#//inhibitors/notTricked.tsimport { DiscordenoMessage, NaticoCommand, NaticoInhibitor } from '../deps.ts';export default class notTricked extends NaticoInhibitor { constructor() { super('notTricked', { //Higher priotiry = earlier fire priority: 1, }); } exec(message: DiscordenoMessage, command: NaticoCommand): boolean { //This checks if the command thats being ran has the name ping if (command.name == 'ping') { //Checks if the user their id is the one from tricked and if it isnt returns true //Returning true means the command is blocked if (message.authorId !== 336465356304678913n) { message.reply('You are not allowed to run this command'); return true; } } //Otherwise it just runs the command return false; }}CopyResulting code can be found here