Apps Home
|
Create an App
test654
Author:
twistinreality
Description
Source Code
Launch App
Current Users
Created by:
Twistinreality
var webhookURL = "https://discord.com/api/webhooks/1341167664961421392/5yEWU3ClnGzyXYP5lhEea4hMkkicURxM3bIH8ydWG8ZPU_kl7s3RcvW2JMwIOgqxZu5G"; // Function to send a message to Discord function sendToDiscord(user, amount) { var message = { content: `💰 **${user}** tipped **${amount} tokens!**` }; cb.log("Sending to Discord: " + JSON.stringify(message)); // Make HTTP request to Discord webhook cb.sendRequest({ url: webhookURL, method: "POST", headers: { "Content-Type": "application/json" }, params: JSON.stringify(message), onResponse: function (response) { cb.log("Discord response: " + response.status); } }); } // Listen for tips cb.onTip(function (tip) { sendToDiscord(tip.from_user, tip.amount); }); // Required function for Chaturbate bots cb.onStart(function () { cb.log("Chaturbate Tip to Discord Bot Started!"); });
© Copyright Camscaster.Com 2011- 2025. All Rights Reserved.