Tirupati[E3S1PRO]
Tirupati[E3S1PRO]
Explore posts from servers
SIASapphire - Imagine a framework
Created by Tirupati[E3S1PRO] on 3/15/2023 in #sapphire-support
messageUpdate event not Triggering
import { Listener } from '@sapphire/framework';
import type { Message } from 'discord.js';
export class roleDeleteListner extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: false,
event: 'messageUpdate'
});
}

public async run(oldMessage: Message, newMessage: Message) {
console.log('Audit log created!, type: messageUpdate')
}
}
import { Listener } from '@sapphire/framework';
import type { Message } from 'discord.js';
export class roleDeleteListner extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: false,
event: 'messageUpdate'
});
}

public async run(oldMessage: Message, newMessage: Message) {
console.log('Audit log created!, type: messageUpdate')
}
}
16 replies
SIASapphire - Imagine a framework
Created by Tirupati[E3S1PRO] on 3/15/2023 in #sapphire-support
'"discord.js"' has no exported member named 'WebhookEditMessageOptions'. Did you mean 'WebhookFetchM
42 replies
SIASapphire - Imagine a framework
Created by Tirupati[E3S1PRO] on 3/13/2023 in #sapphire-support
disable commands by dashboard.
I want to disable commands through dashboard so, is there any way to dynamically disable commands ?
24 replies