pro-tax
v1.0.9
Published
ProBot Tax
Downloads
33
Maintainers
Readme
About
ProBot TAX - ضريبة برو بوت
بكج مختص بحسابة ضريبة برو بوت يقوم بحساب الضريبة بشكل كامل وبشكل صحيح تم انشاء البكج من قبل كارلوس
Installing
npm i pro-tax
npm i discord.js
Preview
Usage
const Discord = require('discord.js');
const client = new Discord.Client();
const protax = require("pro-tax")
client.on("message", message=>{
if(message.content.startsWith(prefix+"tax")){
//تعريف ال args
const args = message.content.split(" ")[1]
// المبلغ مع الضريبة
let withTax = parseInt(args) + protax.taxs(args)
// المبلغ مع الضريبة + ضريبة الوسيط
let withTaxAndWset = parseInt(args) + protax.wset(args);
// الامبيد
let embed = new Discord.MessageEmbed()
.setAuthor("ProBot TAX",'https://cutt.ly/sco0rH8')
.addField('قيمة الضريبة',`**${Math.floor(protax.taxs(args))}**`)
.addField('قيمة الضريبة مع المبلغ المخصوم',`**${Math.floor(args - protax.taxs(args))}**`)
.addField('قيمة الضريبة مع المبلغ',`**${Math.floor(withTax)}**`)
.addField('قيمة المبلغ الكامل مع الضريبة + ضريبة الوسيط',`**${Math.floor(withTaxAndWset)}**`)
.setFooter(`Requested by : ${message.author.tag}`,message.author.avatarURL({dynamic:true}))
message.channel.send(embed)
}
})
client.login('Bot Token');//توكن بوتك