Download the PHP package nozell/webhookapi without Composer
On this page you can find all versions of the php package nozell/webhookapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nozell/webhookapi
More information about nozell/webhookapi
Files in nozell/webhookapi
Package webhookapi
Short Description A PocketMine-MP Virion to easily send messages via Discord Webhooks
License GPL-3.0-or-later
Informations about the package webhookapi
DiscordWebhookAPI
🎉 Join the BlockForDevs Discord Community! 🎉
DiscordWebhookAPI
A PocketMine-MP Virion to easily send messages via Discord Webhooks
Una Virion para PocketMine-MP para enviar mensajes fácilmente mediante Discord Webhooks
🎉 Installation / Instalación
A PocketMine-MP Virion to easily send messages via Discord Webhooks
Una Virion para PocketMine-MP para enviar mensajes fácilmente mediante Discord Webhooks
Installation is easy. You may get a compiled .phar
here or integrate the virion itself into your plugin.
La instalación es fácil. Puedes obtener un .phar
compilado aquí o integrar directamente el virion en tu plugin.
This virion is purely object-oriented. To use it, you'll need to import the Webhook
, Message
, and optionally, the Embed
object (if needed).
Esta API es completamente orientada a objetos. Para usarla, deberás importar los objetos Webhook
, Message
, y opcionalmente, Embed
si es necesario.
🛠 Basic Usage / Uso básico
Import the classes / Importar las clases
To use this API in your code, you'll need to import the following classes:
Para usar esta API en tu código, necesitarás importar las siguientes clases:
Construct a Webhook
object / Crear un objeto Webhook
You'll need the Webhook URL. For more information on how to create Discord webhooks, click here.
Necesitarás la URL del Webhook. Para más información sobre cómo crear webhooks en Discord, haz clic aquí.
Construct a Message
object / Crear un objeto Message
You must create a new Message
object for each message you want to send.
Deberás crear un nuevo objeto Message
para cada mensaje que desees enviar.
Send the message / Enviar el mensaje
Now you can send the message using the send()
method. This will schedule an AsyncTask to avoid blocking the main thread.
Ahora puedes enviar el mensaje usando el método send()
. Esto programará una AsyncTask para evitar bloquear el hilo principal.
📦 Embeds
Before sending a message, you may want to add an embed. You can construct an Embed
object and use Message->addEmbed()
to include it.
Antes de enviar un mensaje, quizá quieras agregar un embed. Puedes construir un objeto Embed
y usar Message->addEmbed()
para incluirlo.
You can also add a footer:
También puedes añadir un pie de página:
Finally, add the embed to the message:
Finalmente, agrega el embed al mensaje:
Example Code / Código de ejemplo:
This API was made with ❤️ by CortexPE updated by Nozell. Enjoy!~ :3
Esta API fue hecha con ❤️ por CortexPE actualizado por Nozell. ¡Disfrútala!~ :3