ramdan-event
v3.1.1
Published
Best Package For Rammdan
Downloads
3
Readme
Install ?
Require Discord.js V13 Or High.
npm i ramdan-event
How To Know If The Package Is Working?
Usin status event
const {Status} = require('ramdan-event')
const status = new Status()
status.on('ready', () => {
console.log('Ready ❤')
})
Quran Play Example :
To Play Quran In Voice Channel You Need Voice , Guild id
const { Client, Intents } = require("discord.js");
const client = new Client({ intents: [ Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_MEMBERS, Intents.FLAGS.GUILD_INVITES, ], });
const {quran,azkar} = require('ramdan-event')
const voicechannelid = 'id here'
const guildid = 'id here'
client.on('ready',() => {
quran(client,voicechannelid,guildid)
console.log('playing quran ❤')
}
client.login('my super man token 🥲')
Azkar Send :
Send a Random Azkar Every 5 Minute To Specif Channel
const { Client, Intents } = require("discord.js");
const client = new Client({ intents: [ Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_MEMBERS, Intents.FLAGS.GUILD_INVITES, ], });
const {quran,azkar} = require('ramdan-event')
const textchannelid = 'id here'
const guildid = 'id here'
client.on('ready',() => {
azkar(client,textchannelid,guildid)
console.log('sending azkar ❤')
}
client.login('my super man token 🥲')