Newer
Older
Croma / src / main / java / com / jagrosh / vortex / commands / general / InviteCmd.java
@John Grosh John Grosh on 24 Feb 2018 1 KB rewrite nearing completion
/*
 * Copyright 2016 John Grosh (jagrosh).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.jagrosh.vortex.commands.general;

import com.jagrosh.jdautilities.command.Command;
import com.jagrosh.jdautilities.command.CommandEvent;
import com.jagrosh.vortex.Constants;

/**
 *
 * @author John Grosh (jagrosh)
 */
public class InviteCmd extends Command {

    public InviteCmd()
    {
        this.name = "invite";
        this.help = "shows how to invite the bot";
        this.guildOnly = false;
    }
    
    @Override
    protected void execute(CommandEvent event) {
        event.reply("Hello. I am **"+event.getJDA().getSelfUser().getName()+"**, a simple moderation bot built by **jagrosh**#4824."
                + "\nYou can add me to your server with the link below:"
                + "\n\n\uD83D\uDD17 **<"+Constants.BOT_INVITE+">**"
                + "\n\nFor help or suggestions, please join the support server: "+Constants.SERVER_INVITE);
    }
    
}