
Matthiesen Core Webhooks
A Server-side library mod for Matthiesen Lib projects that want to be able to send discord webhooks easily!
Оцените первым
139
1
Matthiesen Core Webhooks
This is a server-side library mod for Matthiesen Core that provides Discord webhook functionality. It allows other mods to send messages to Discord channels via the Matthiesen Core webhook service.
import dev.matthiesen.matthiesen_core.common.api.discord.WebhookNotifierInstance;
import dev.matthiesen.matthiesen_core.common.core.MatthiesenCoreCommon;
public class ExampleWebHook {
private WebhookNotifierInstance webhookNotifierInstance;
public ExampleWebHook() {
var webhookNotifierService = MatthiesenCoreCommon.INSTANCE.getWebhookService();
if (!webhookNotifierService.isAvailable()) {
throw new IllegalStateException("Webhook service is not available");
}
webhookNotifierInstance = webhookNotifierService.makeInstance("https://discord.com/api/webhooks/your-webhook-url");
}
public void sendMessage(String message) {
webhookNotifierInstance.sendMessage(builder -> builder.withContent(message));
}
}
## Requirements
- [Matthiesen Core](/mod/matthiesen-core/)
## Version Compatibility
| Minecraft Version | Mod Version |
|-------------------|-------------|
| 1.21.1 | 1.x.x |
## License
MIT - see `LICENSE`.
Партнёрский материал
Как поиграть с друзьями с модом Matthiesen Core Webhooks?
Мод Matthiesen Core Webhooks куда интереснее в компании: поднимите сервер Майнкрафт с уже установленным модом, позовите друзей и играйте по своим правилам. Хостинг Майнкрафт для мода Matthiesen Core Webhooks будет готов за пару минут - BungeeHost сделает всё за вас.
Часто задаваемые вопросы
Зависимости
Ссылки
Создатели
Детали
Лицензия:
Опубликован:3 месяца назад
Обновлён:1 месяц назад
