TheRamann / Discord-Emotes

Use it to get gif for commands like pat, slap, poke, hug and more!!!!

Home Page:https://www.npmjs.com/package/discord-emotes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord-Emotes

Use it to get gif for commands like pat, slap, poke, hug and more!!!!

Installation πŸ–₯

npm:

npm i discord-emotes

yarn:

yarn add discord-emotes

Usage ✏

See the code below for instructions

const emotes = require("discord-emotes");

emotes.hug().then(gif => {
    //  Insert code here
    //  Just put value where you want the gif to be
});                                     

You can use the code like below

const emotes = require("discord-emotes");

emotes.hug().then(gif => console.log(gif));                                     

You can even send the gif to a discord channel if you want

const emotes = require("discord-emotes");

if(command == "hug"){
    emotes.hug().then(gif =>{
        const embed = new Discord.MessageEmbed()
            .setTitle(`${message.author.username} hugs ${message.mentions.users.first().username}`)
            .setImage(gif)
        message.channel.send(embed);
    });}
A tip: use visual studio code

Other emotes ✏

There are these emotes :-
πŸ“ hug
πŸ“ kiss
πŸ“ pat
πŸ“ poke
πŸ“ slap
πŸ“ tickle
πŸ“ smug
πŸ“ cuddle
πŸ“ dog
πŸ“ cat
πŸ“ meme

Like the package? ✏

Support the creator here

About

Use it to get gif for commands like pat, slap, poke, hug and more!!!!

https://www.npmjs.com/package/discord-emotes

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%