fenish
fenish
Explore posts from servers
SIASapphire - Imagine a framework
Created by fenish on 5/24/2023 in #sapphire-support
Ready Listener doesn't work
import { Events, Listener } from "@sapphire/framework";

export class ReadyListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
event: Events.ClientReady,
...options,
once: true,
});
}

public run() {
console.log("hello im running");
}
}
import { Events, Listener } from "@sapphire/framework";

export class ReadyListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
event: Events.ClientReady,
...options,
once: true,
});
}

public run() {
console.log("hello im running");
}
}
12 replies
SIASapphire - Imagine a framework
Created by fenish on 4/22/2023 in #sapphire-support
Preconditions Usage
36 replies
SIASapphire - Imagine a framework
Created by fenish on 4/22/2023 in #sapphire-support
Permission or Role check with decorators
is it possible with sapphire something like if user has role with id "1098270502058995842" or if user has role "Moderator(Object)"
24 replies
SIASapphire - Imagine a framework
Created by fenish on 4/19/2023 in #sapphire-support
Broken modals
23 replies
SIASapphire - Imagine a framework
Created by fenish on 4/19/2023 in #sapphire-support
Remove old commands
17 replies
SIASapphire - Imagine a framework
Created by fenish on 4/12/2023 in #sapphire-support
create modal
im super new about djs and sapphire. for newbie sapphire is more easier than vanilla djs thats why i picked sapphire. i just checked docs and i find out how to create modals but idk how to use them can someone give example of code or example usage of modals
3 replies
SIASapphire - Imagine a framework
Created by fenish on 4/11/2023 in #sapphire-support
on ready messages
is there any chance to disable "commands initialized" message on startup ?
78 replies
SIASapphire - Imagine a framework
Created by fenish on 4/6/2023 in #sapphire-support
check if commands initialized
is there a way to check if commands initialized or not
26 replies