ez-games.js

Simple package to make agames for ur bot!

Usage no npm install needed!

<script type="module">
  import ezGamesJs from 'https://cdn.skypack.dev/ez-games.js';
</script>

README

ez-games.js

  • Made For Discord bots which use Discord.js
  • Make Sure To Install quick.db Before Using Package!
  • Report Bugs, Errors, Problems In Support Server

Usage 📕

  • Speed Game
const Discord = require('discord.js')
const client = new Discord.Client()
const db = require('quick.db')
client.on('ready', () => {
   console.log('im in!')
})


const ezgames = require('ez-games.js')
client.on('message', async message => {
if(!message.guild) return;
if(message.content.toLowerCase().startsWith('speed')) {

let data = await ezgames.speed(message.author.id, message.guild.id, message.author.displayAvatarURL({ format: 'png'}), client.user.username)
 /**
  * user => message.author.id 
  * guild => message.guild.id
  * image => the generated image from api.
  * word => the word that generated from the package
  */
 let embed = new Discord.MessageEmbed()
.setTitle(`You Have 15Seconds To Type the word`)
.setImage(data.image)
.setFooter(message.guild.name , message.guild.iconURL())
.setTimestamp()
 message.channel.send(embed)
 let author = m => m.author.id === message.author.id;
 let pointcollecter = new Discord.MessageCollector(message.channel, author , { max: 1 , time: 15000 }); 
 pointcollecter.on('collect', async msg => {
     let word = data.word;
     if(msg.content.toLowerCase() === word.toLowerCase()) {
   message.channel.send(`You've Got one Point!`)  
   db.add(`points_${message.author.id}`, 1)
   db.add(`wins_${message.author.id}`, 1)

} else {
   message.channel.send(`Incorrect the right word is ${word.toLowerCase()}`)
   db.add(`loses_${message.author.id}`, 1)
     }
 })
}
})

  • Get User Points
client.on('message',  async message => {
  if(message.content.toLowerCase().startsWith('points')) {
   if(!message.guild) return;
   let data = await ezgames.points(message.author.id)
   /**
    * total => user points  
    * wins => user wins
    * lose => user loses
    */
   message.channel.send(`Total Points: ${data.total}`)
  }
})
  • Flags Games
  client.on('message', async message => {{
      if(message.content.toLowerCase().startsWith('flags')) {
          if(!message.guild) return;
        /*
        * data.countryname => flag country name
        * data.countryflag => country flag url that  generated from the package.
        * 
        */
          let data = await ezgames.flags(message.author.id , message.guild.id)
          let embed = new Discord.MessageEmbed()
          .setAuthor(message.author.username, message.author.displayAvatarURL())
          .setDescription(`You have 15 Seconds to guess country name from the flag..`)
          .setImage(data.countryflag)
          .setFooter(message.guild.name, message.guild.iconURL())
          .setTimestamp()
          message.channel.send(embed)
          let author = m => m.author.id === message.author.id;
          let pointcollecter = new Discord.MessageCollector(message.channel, author , { max: 1 , time: 15000 }); 
          pointcollecter.on('collect', async msg => {
          if(msg.content.toLowerCase() === data.countryname) {
            msg.channel.send(`Correct you've got apoint`)
            db.add(`points_${message.author.id}`, 1)
            db.add(`wins_${message.author.id}`, 1)
         
         } else {
            message.channel.send(`Incorrect the flag name is ${data.countryname.toLowerCase()}`)
            db.add(`loses_${message.author.id}`, 1)
         
          }
          })
          }
  }})

Why ez-games.js

  • Fast and easy to use
  • Note : This Package Is Using Quick.db (Database)
  • This Package Is Made With 💖 By ! Darkboy🍭#9966