https://github.com/exitare/mod-discord-webhook
Send webhooks to discord using scripts
https://github.com/exitare/mod-discord-webhook
azerothcore-module
Last synced: 11 months ago
JSON representation
Send webhooks to discord using scripts
- Host: GitHub
- URL: https://github.com/exitare/mod-discord-webhook
- Owner: Exitare
- License: mit
- Created: 2024-12-14T00:33:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-14T04:30:01.000Z (over 1 year ago)
- Last Synced: 2025-05-19T20:14:25.777Z (about 1 year ago)
- Topics: azerothcore-module
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Acore Webhook Module
Welcome to the webhook module for azerothcore. This module will add functionality to let you send message to webhook endpoints (e.g. Discord).
## Installation
Please use this link for guidance how to install a module:
```https://www.azerothcore.org/wiki/installing-a-module```
## Usage
- Copy the modules config and remove the .dist extension.
- Add your webhook url to the config. Save and restart your server
## Example use
```cpp
#include "ScriptMgr.h"
#include "Player.h"
#include "Config.h"
#include "Chat.h"
#include "WebhookMgr.h" // add the mgr
// Add player scripts
class WebhookPlayerLogin : public PlayerScript
{
public:
WebhookPlayerLogin() : PlayerScript("MyWebhookPlayerScript") { }
void OnLogin(Player* player) override
{
std::stringstream ss;
ss << "Player " << player->GetName() << " just signed in.";
std::string message = ss.str();
sWebhookMgr->ScheduleMessage(message); // Schedule the message
}
};
// Add all scripts in one
void AddWebhookPlayerScripts()
{
new WebhookPlayerLogin();
}
```
Add the script to the script loader. Can also be added in any other script loader.
webhook_loader.cpp
```cpp
void AddWebhookPlayerScripts();
void Addacore_webhooksScripts()
{
AddWebhookPlayerScripts();
AddWebhookServerScripts();
}
```