All Projects → RaidAndFade → Haxicord

RaidAndFade / Haxicord

Licence: GPL-3.0 License
The most popular discord API Haxe library (because no others are good enough to be called a library)

Programming Languages

haxe
709 projects

Projects that are alternatives of or similar to Haxicord

disml
Pure OCaml bindings to the Discord API. Mirror of Gitlab repo.
Stars: ✭ 36 (-14.29%)
Mutual labels:  discord-api, discord-library, discord-lib
QDiscord
QDiscord - An unofficial C++ and Qt wrapper for the Discord API.
Stars: ✭ 21 (-50%)
Mutual labels:  discord-api, discord-library
MaSH
A minimalistic Discord API wrapper made in Posix Shell
Stars: ✭ 22 (-47.62%)
Mutual labels:  discord-api, discord-library
library
🐍 A Python library for Discord.
Stars: ✭ 648 (+1442.86%)
Mutual labels:  discord-api, discord-library
Discord.CPP
Discord.CPP is a C++ library for interaction with the Discord API.
Stars: ✭ 46 (+9.52%)
Mutual labels:  discord-api, discord-library
discord-rose
The simple Discord library for advanced users
Stars: ✭ 37 (-11.9%)
Mutual labels:  discord-api, discord-library
calamity
A library for writing discord bots in haskell
Stars: ✭ 77 (+83.33%)
Mutual labels:  discord-api, discord-library
racket-cord
A discord library for racket
Stars: ✭ 24 (-42.86%)
Mutual labels:  discord-api, discord-lib
arcscord
A Discord library written in typescript
Stars: ✭ 18 (-57.14%)
Mutual labels:  discord-api, discord-library
Disqord
An asynchronous Discord API wrapper for .NET.
Stars: ✭ 155 (+269.05%)
Mutual labels:  discord-api, discord-library
Discord-Selfbot
Discord.js selfbot
Stars: ✭ 24 (-42.86%)
Mutual labels:  discord-api, discord-library
SataniaBot
The most devilish bot for Discord!
Stars: ✭ 20 (-52.38%)
Mutual labels:  discord-api
nyxx
Wrapper around Discord API for Dart
Stars: ✭ 217 (+416.67%)
Mutual labels:  discord-api
A41SLBOT
All For One Bot is an open-source discord server bot built for All For One SL™ discord server.
Stars: ✭ 83 (+97.62%)
Mutual labels:  discord-api
DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (+207.14%)
Mutual labels:  discord-api
delet
[DEPRECATED - see README.md] a Discord bot made using Discord.js
Stars: ✭ 46 (+9.52%)
Mutual labels:  discord-api
Ellie
A bot for the Discord chat platform written in Rust with the Serenity library.
Stars: ✭ 14 (-66.67%)
Mutual labels:  discord-api
suggestions-bot
A Discord bot designed to build better communities by encouraging a positive and constructive relationship between community and staff.
Stars: ✭ 22 (-47.62%)
Mutual labels:  discord-api
discord-message-handler
Message and command handler for discord.js bots and applications
Stars: ✭ 19 (-54.76%)
Mutual labels:  discord-api
Discord-BOT-Dashboard
This version is outdated, please check out Discord BOT Dashboard v2
Stars: ✭ 32 (-23.81%)
Mutual labels:  discord-api

Haxicord

Haxicord

Haxicord is a Discord API wrapper for Haxe. Slash Commands are NOT supported.

Haxelib Discord

Installation

To install the library in your project, use the haxelib package manager:

haxelib install haxicord

Usage

Normal humans can click here for a proper example of some base features

Those of a lower level of dedication can use the example below: (Takes advantage of the command api)

package;

import com.raidandfade.haxicord.commands.CommandBot;
import com.raidandfade.haxicord.types.Message;

class Main extends CommandBot {

    static function main() {
        new Main("<token>",Main,"-"); //Create an instance of Commandbot with the prefix `-`
    }

    @Command
    function ping(message:Message){
        message.react(""); //React to the message with "✅"
        message.reply({content:"Pong!"}); //Send "Pong!" in the same channel
    }
}

Documentation

You can find the documentation here

Community

Join the Haxicord Discord for more help & to meet others using the library (as well as the dev) Discord

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].