{"id":58105,"date":"2026-06-03T07:41:02","date_gmt":"2026-06-03T04:41:02","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/"},"modified":"2026-06-03T07:41:02","modified_gmt":"2026-06-03T04:41:02","slug":"donation-alerts-integrate","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/","title":{"rendered":"Donation Alerts Integrate"},"content":{"rendered":"<p># DonationAlerts-Minecraft<\/p>\n<p>A modification that allows you to receive events from **DonationAlerts**<\/p>\n<p>Supports:<br \/>\n&#8211; Donation<br \/>\n&#8211; Twitch Bits<br \/>\n&#8211; Twitch Points<br \/>\n&#8211; Subscriptions to YouTube and Twitch<\/p>\n<p>Allows to:<br \/>\n&#8211; Send message to the chat<br \/>\n&#8211; Execute any Minecraft commands (include mods)<\/p>\n<p>## Setup<\/p>\n<p>### Setup your token<\/p>\n<p>There are several ways to set your token here.<\/p>\n<p>#### With minecraft command<\/p>\n<p>1. Copy the token to the clipboard from DonationAlerts service<br \/>\n2. Execute command in your minecraft chat<br \/>\n   &#8220;`<br \/>\n   \/da set<br \/>\n   &#8220;`<br \/>\n   **NO NEED** to insert a token into the chat! The token will be taken from your clipboard.<\/p>\n<p>#### With file<\/p>\n<p>1. Open the file<br \/>\n   Windows: `C:Users<your user>.donation-alerts-token`<br \/>\n   Linux: `~\/.donation-alerts-token`<br \/>\n2. Paste your token to the file<br \/>\n3. Save<\/p>\n<p>### Connect to the Donation Alerts<\/p>\n<p>To connect to Donation Alerts, use the command in Minecraft<br \/>\n&#8220;`<br \/>\n\/da connect<br \/>\n&#8220;`<\/p>\n<p>To check connection status you can use command<br \/>\n&#8220;`<br \/>\n\/da status<br \/>\n&#8220;`<\/p>\n<p>And there is the command to disconnect<br \/>\n&#8220;`<br \/>\n\/da disconnect<br \/>\n&#8220;`<\/p>\n<p>## Configuration<\/p>\n<p>The settings file is in `.minecraft\/donation-alerts-integrate\/settings.yaml`<br \/>\nThe file format is yaml, example:<\/p>\n<p>&#8220;`yaml<br \/>\ndisableSettingsUpdateMessage: false<br \/>\ndisableWelcomeMessage: false<br \/>\ntriggers:<br \/>\n&#8211; name: default<br \/>\n  description: example trigger<br \/>\n  isActive: true<br \/>\n  sensitives:<br \/>\n  &#8211; properties:<br \/>\n      type: daintegrate\/sensitive\/donate<br \/>\n      value:<br \/>\n        from: 5<br \/>\n        to: 10<br \/>\n        currency: USD<br \/>\n  handlers:<br \/>\n  &#8211; delay: 0 # Any comment you can type here!<br \/>\n    properties:<br \/>\n      type: daintegrate\/handler\/message<br \/>\n      value:<br \/>\n        message: Hello, <donation_username>! This is an example message for all events from Donation Alerts<br \/>\n  &#8211; delay: 10<br \/>\n    properties:<br \/>\n      type: daintegrate\/handler\/command<br \/>\n      value:<br \/>\n        command: time set day # The sun is rising<br \/>\n&#8211; name: Subscribtion<br \/>\n  isActive: true<br \/>\n  sensitives:<br \/>\n  &#8211; properties:<br \/>\n      type: daintegrate\/sensitive\/subscribe<br \/>\n      value:<br \/>\n        type: YouTubeSubscription<br \/>\n  handlers:<br \/>\n  &#8211; properties:<br \/>\n      type: daintegrate\/handler\/message<br \/>\n      value:<br \/>\n        message: <donation_username> just subscribe to YouTube!<br \/>\n&#8220;`<\/p>\n<p>`triggers` is a list of events that can trigger by each message from donation alerts<\/p>\n<p>| Property    | Description            |<br \/>\n| &#8212;&#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- |<br \/>\n| name        | Just a name of trigger |<br \/>\n| description | Description of trigger |<br \/>\n| isActive    | Enables or disables the trigger.<br \/> If `isActive = false`, the trigger will not be activated |<br \/>\n| sensitive   | Conditions for trigger activation<br \/>see #Sensitive for learn more |<br \/>\n| handlers    | Handlers inside the trigger, execute any registered commands.<br \/>You can create your own mod that will add a custom handler<br \/>See #Handlers for lean more |<\/p>\n<p>### Sensitive<\/p>\n<p>Conditions for trigger activation.<br \/>\nThe DonationAlertsIntegrate provides multiple sensitive<\/p>\n<p>| Type                                | Description                     |<br \/>\n| &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- |<br \/>\n| `daintegrate\/sensitive\/always`      | Activates for any event         |<br \/>\n| `daintegrate\/sensitive\/donate`      | Activates for specific donation |<br \/>\n| `daintegrate\/sensitive\/subscribe`   | Activates for subscribe         |<br \/>\n| `daintegrate\/sensitive\/twitch\/bits` | Activates for specific bits     |<\/p>\n<p>#### Always<\/p>\n<p>###### Parameters<br \/>\nHas no parameters<\/p>\n<p>###### Example<br \/>\n&#8220;`yaml<br \/>\nsensitives:<br \/>\n&#8211; properties:<br \/>\n    type: daintegrate\/sensitive\/always<br \/>\n&#8220;`<\/p>\n<p>#### Donate<\/p>\n<p>Activates if the amount falls within the specified range (`from` <= amount <= `to`).  \nAnd the currency matches.\n\n###### Parameters\n\n| Name       | Type     | Description |\n| ---------- | -------- | ----------- |\n| `from`     | number   | Left side number  |\n| `to`       | number   | Right side number |\n| `currency` | text     | Currency in the ISO 4217 code |\n\n###### Example\n\n```yaml\nsensitives:\n- properties:\n    type: daintegrate\/sensitive\/donate\n    value:\n      from: 5\n      to: 10\n      currency: USD\n```\n\n#### Subscribe\n\nActivates if the `type` is matches\n\n###### Parameters\n\n| Name       | Type     | Description |\n| ---------- | -------- | ----------- |\n| `type`     | enum     | Type to match, see below for available types |\n\n###### Available types\n\n- YouTubeSubscription\n- TwitchSubscription\n- TwitchFreeFollow\n- TwitchGiftSubscription\n- TwitchPrimeSubscription\n\n###### Example\n\n```yaml\nsensitives:\n- properties:\n    type: daintegrate\/sensitive\/subscribe\n    value:\n      type: YouTubeSubscription\n```\n\n#### Twitch points\n\nActivates if the amount of Twitch points falls within the specified range (`from` <= amount <= `to`).  \n\n###### Parameters\n\n| Name       | Type     | Description |\n| ---------- | -------- | ----------- |\n| `from`     | number   | Left side of the Twitch bits amount  |\n| `to`       | number   | Right side of the Twitch bits amount |\n\n###### Example\n\n```yaml\nsensitives:\n- properties:\n    type: daintegrate\/sensitive\/twitch\/points\n    value:\n      from: 0\n      to: 1000\n```\n\n#### Twitch bits\n\nActivates if the amount of Twitch bits falls within the specified range (`from` <= amount <= `to`).  \n\n###### Parameters\n\n| Name       | Type     | Description |\n| ---------- | -------- | ----------- |\n| `from`     | number   | Left side of the Twitch bits amount  |\n| `to`       | number   | Right side of the Twitch bits amount |\n\n###### Example\n\n```yaml\nsensitives:\n- properties:\n    type: daintegrate\/sensitive\/twitch\/bits\n    value:\n      from: 0\n      to: 2000\n```\n\n### Handlers\n\nHandlers for the trigger.  \nPerform actions when the trigger is activated.  \n\n| Type                          | Description                                  |\n| ----------------------------- | -------------------------------------------- |\n| `daintegrate\/handler\/message` | Adds a message to your chat                  |\n| `daintegrate\/handler\/command` | Sends a command to the server on your behalf |\n\n###### Delay\n\nEach handler, in addition to the properties object, has a `delay` property, it indicates after how many ticks the command will be executed.  \nBy default, 1 second in minecraft is 20 ticks\n\n###### Replace patterns\n\nIn commands and messages, you can specify patterns that will be replaced with the corresponding values.\n\n```\n<donation_message><br \/>\n<donation_amount><br \/>\n<donation_currency><br \/>\n<donation_username><br \/>\n<minecraft_playername><br \/>\n&#8220;`<\/p>\n<p>#### Message<\/p>\n<p>Adds a message to your chat<\/p>\n<p>###### Parameters<\/p>\n<p>| Name       | Type     | Description |<br \/>\n| &#8212;&#8212;&#8212;- | &#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8211; |<br \/>\n| `message`  | text     | A message which will be added to the chat |<\/p>\n<p>###### Example<\/p>\n<p>&#8220;`yaml<br \/>\nhandlers:<br \/>\n&#8211; delay: 10<br \/>\n  properties:<br \/>\n    type: daintegrate\/handler\/message<br \/>\n    value:<br \/>\n      message: Hello! It&#8217;s day time!<br \/>\n&#8220;`<\/p>\n<p>#### Command<\/p>\n<p>Sends a command to the server on your behalf<\/p>\n<p>###### Parameters<\/p>\n<p>| Name       | Type     | Description |<br \/>\n| &#8212;&#8212;&#8212;- | &#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8211; |<br \/>\n| `command`  | text     | A command which will be send to the server (**without** slash `\/`) |<\/p>\n<p>###### Example<\/p>\n<p>&#8220;`yaml<br \/>\nhandlers:<br \/>\n&#8211; delay: 10<br \/>\n  properties:<br \/>\n    type: daintegrate\/handler\/command<br \/>\n    value:<br \/>\n      command: time set day<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A modification that allows you to receive events from DonationAlerts<\/p>\n","protected":false},"featured_media":58106,"template":"","meta":{"_minecraft_slug":"donation-alerts-integrate","_minecraft_project_id":"NkVoSrLT","_minecraft_author":"Folleach","_minecraft_license":"MIT","_minecraft_downloads":839,"_minecraft_follows":6,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"donation-alerts-integrate.zip","_minecraft_size_bytes":3583064,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-15T19:57:18.280027Z","_minecraft_date_created":"2023-08-26T23:59:09.346026Z","_minecraft_date_modified":"2023-10-13T23:14:53.504616Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/donation-alerts-integrate","_minecraft_icon_attachment_id":58106,"_minecraft_imported_at":"2026-06-03T04:41:03+00:00","_minecraft_import_hash":"c5f320d0ef9bc55120d78468c43413ee","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,867,123],"mod_loader":[99],"minecraft_version":[36],"class_list":["post-58105","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-social","mod_category-technology","mod_loader-fabric","minecraft_version-1-20-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Donation Alerts Integrate - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Donation Alerts Integrate - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A modification that allows you to receive events from DonationAlerts\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/\",\"name\":\"Donation Alerts Integrate - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png\",\"datePublished\":\"2026-06-03T04:41:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/donation-alerts-integrate\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Donation Alerts Integrate\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Donation Alerts Integrate - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/","og_locale":"en_US","og_type":"article","og_title":"Donation Alerts Integrate - Minecraft","og_description":"A modification that allows you to receive events from DonationAlerts","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/","name":"Donation Alerts Integrate - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png","datePublished":"2026-06-03T04:41:02+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/donation-alerts-integrate-icon-a1f6e6853cd491edea5dc90a54e3053ddd6119ce.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/donation-alerts-integrate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Donation Alerts Integrate"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/58105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/58106"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=58105"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=58105"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=58105"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=58105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}