Roblox机器人推广系统

问题描述 投票:0回答:1

我想使用提升命令来提升组中的人员,但并没有提升人员,它回复一条消息,说我需要输入用户名。

我的代码:

import * as Discord from "discord.js";
import { IBotCommand } from "../api";
import * as ConfigFile from "../config";
let express = require("express");
let roblox = require('noblox.js');

export default class Promote implements IBotCommand {

    private readonly _command = "promote";

    help(): string {
        return "Promote members in the Roblox group."
    }

    isThisCommand(command: string): boolean {
        return command === this._command;
    }


    async runCommand(args: string[], msgObject: Discord.Message, client: Discord.Client): Promise<void> {
        if (!msgObject.member.roles.find("name", "Council")) {
            msgObject.channel.send(`Nice try ${msgObject.author.username} but you don't have permission to promote members!`)
                .catch(console.error);
            return;

        }

        let groupId = 5293276;
        let maximumRank = ConfigFile.config.maximum_rank
        let username = args[1]
        if (username) {
            msgObject.channel.send(`Checking ROBLOX for ${username}`)
            roblox.getIdFromUsername(username)
                .then(function (id: any) {
                    roblox.getRankInGroup(groupId, id)
                        .then(function (rank: number) {
                            if (maximumRank <= rank) {
                                msgObject.channel.send(`${id} is rank ${rank} and not promotable.`)
                            } else {
                                msgObject.channel.send(`${id} is rank ${rank} and promotable.`)
                                roblox.promote(groupId, id)
                                    .then(function (roles: { oldRole: { Name: any; }; newRole: { Name: any; }; }) {
                                        msgObject.channel.send(`Promoted from ${roles.oldRole.Name} to ${roles.newRole.Name}`)
                                    }).catch(console.error)
                                        .then(msgObject.channel.send("Failed to promote."))

                            }
                        }).catch(console.error)
                            .then(
                                msgObject.channel.send("Couldn't get him in the group."));

                }).catch(console.error)
                .then(
                    msgObject.channel.send(`Sorry, but ${username} doesn't exist on ROBLOX.`));

        } else {
            msgObject.channel.send("Please enter a username.")
        }
        return;


    }
}

当我输入用户名时,它会显示以下消息:

enter image description here

并且它给每个用户名都相同的消息。

typescript discord.js roblox
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.