2.5.6-b • Published 3 years ago

ashcord.js v2.5.6-b

Weekly downloads
15
License
MIT
Repository
github
Last release
3 years ago

ASHCORD.JS

haha funny lib

Kullanım

const ashcord = require("ashcord.js")
const client = new ashcord.client("tokenin");

//mesaj örneği

client.on("message", async function(message) {
    if(message.author.bot) return
  ashcord.send(message,"selam")
});

Ping örneği

const ashcord = require("ashcord.js")
const client = new ashcord.client("tokenin");

 const prefix = "!"

client.on("message", async function(message) {
	let command = message.content.split(' ')[0].slice(prefix.length);
  if(message.author.bot) return
  if(command === "ping") {
   return ashcord.send(message,`pingim:${ashcord.ping()}`)
  }
  });

Embed örneği

const ashcord = require("ashcord.js")
const client = new ashcord.client("tokenin");

const prefix = "!"

client.on("message", async function(message) {
	let command = message.content.split(' ')[0].slice(prefix.length);
  if(message.author.bot) return
  if(command === "ping") {
   return ashcord.sendEmbed(message, {
title: "Pingim",
description: `${ashcord.ping()}ms`,
thumbnail: client.user.displayAvatarURL()
})
  }
  });
2.5.6

3 years ago

2.5.6-b

3 years ago

2.0.5-a

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.0

3 years ago

1.0.2-B

3 years ago

1.1.2-B

3 years ago

1.1.4

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.2-A

3 years ago

1.0.0

3 years ago