ShatiG
80+
- Katılım
- 10 Ağustos 2022
- Mesajlar
- 124
Dahası
- Reaksiyon skoru
- 42
- İsim
- Kerim Veren
} else if (command === 'cüzdan') {
const user = getUser(message.author.id);
const userBalances = {};
if (user.money === 0) {
const zeroBalanceImageUrl = 'https://media.istockphoto.com/id/971197892/tr/foto%C4%9Fraf/el-a%C3%A7%C4%B1k-bo%C5%9F-bir-c%C3%BCzdan.jpg?s=612x612&w=0&k=20&c=-xWFqcjPKJLCgKlq8zUBysQjEK2EsXT30zvBNpD00bg=';
const embedZeroBalance = new Discord.MessageEmbed()
.setColor('#b0e0e6')
.setTitle('Cüzdan')
.setDescription('Paranız yok!')
.setImage(zeroBalanceImageUrl);
message.channel.send(embedZeroBalance);
return;
}
const canvas = createCanvas(400, 200);
const ctx = canvas.getContext('2d');
ctx.fillStyle = '#eee685';
ctx.fillRect(0, 0, 400, 200);
ctx.fillStyle = 'BLACK';
ctx.font = 'bold 20px Arial';
ctx.fillText('Cüzdan', 20, 30);
ctx.font = '16px Arial';
ctx.fillText(`MW Bakiyesi: ${user.money.toLocaleString()} MW`, 20, 70);
if (user.properties && user.properties.length > 0) {
const propertiesList = user.properties.map((property, index) => `${index + 1}. ${property.name}: ${property.value.toLocaleString()} MW`).join('\n');
ctx.font = '11px Arial';
ctx.fillText('Mülkler:', 20, 110);
ctx.fillText(propertiesList, 20, 120);
}
const customImageUrl = 'https://cdn.discordapp.com/attachments/829379404387057716/1193501912432115822/ft.png?ex=65acf246&is=659a7d46&hm=7e07d97d6218cdc942303f3626737042d931daca182ddfea6575c87d65957433&';
async function drawCustomImage() {
const customImage = await loadImage(customImageUrl);
ctx.drawImage(customImage, 200, 0, 200, 200);
const attachment = new MessageAttachment(canvas.toBuffer(), 'cuzdan.png');
message.channel.send(attachment);
}
drawCustomImage();
Bu cüzdan kodumda bot çık gir yapınca bakiye bilgisi sıfırlanıyor nasıl sıfırlanmamasını sağlarım glitch ile yapıyorum