Surgical Crow
Surgical Crow
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
how would it look for sapphire?
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
sorry
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
a command file
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
this is my old one.
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
const Command = require('../../structures/Command');
const { MessageEmbed } = require("discord.js");

module.exports = class DevsCommand extends Command {
constructor(client) {
super(client, {
name: "guninfo",
aliases: ["gunstats"],
group: "info",
memberName: "guninfo",
description: "shows infos about a free fire Weapon / Gun",
clientPermissions: ["EMBED_LINKS"],
guildOnly: true,
args: [
{
key: "weapon",
type: "string",
prompt: "Which Weapon/Gun's information you want to get?",
}
],
throttling: {
usages: 2,
duration: 10
}
});
}

async run(message, { weapon }) {
...
}
}
const Command = require('../../structures/Command');
const { MessageEmbed } = require("discord.js");

module.exports = class DevsCommand extends Command {
constructor(client) {
super(client, {
name: "guninfo",
aliases: ["gunstats"],
group: "info",
memberName: "guninfo",
description: "shows infos about a free fire Weapon / Gun",
clientPermissions: ["EMBED_LINKS"],
guildOnly: true,
args: [
{
key: "weapon",
type: "string",
prompt: "Which Weapon/Gun's information you want to get?",
}
],
throttling: {
usages: 2,
duration: 10
}
});
}

async run(message, { weapon }) {
...
}
}
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
yah, mine is DJS v.12
16 replies
SIASapphire - Imagine a framework
Created by Surgical Crow on 5/26/2023 in #sapphire-support
Seeking for Guideline
in addition, I am back after 2 years in discord. Many things has changed so far. I'm confused. There are already 10k+ lines of codes. I should start from scratch again with sapphire (that's tough) or transform my code according to sapphire (I want)
16 replies