MC Princess
MC Princess
SIASapphire - Imagine a Framework
Created by Tejas on 4/10/2025 in #sapphire-support
Commands `status-rewards` and `status-rewards-admin` don't register on Discord
it could be the "-" in the file name.
16 replies
SIASapphire - Imagine a Framework
Created by alqm on 4/6/2025 in #sapphire-support
best practice for hybrid commands
i.e.
export class PingCommand extends Command {
// command registry

public async messageRun(message: Message) {
// code
}

public async chatInputRun(interaction: Command.ChatInputInteraction) {
// code
}
}
export class PingCommand extends Command {
// command registry

public async messageRun(message: Message) {
// code
}

public async chatInputRun(interaction: Command.ChatInputInteraction) {
// code
}
}
6 replies
SIASapphire - Imagine a Framework
Created by alqm on 4/6/2025 in #sapphire-support
best practice for hybrid commands
it would be best to have them in the same file
6 replies