Apps Home
|
Create an App
bluesky10111 tip menu
Author:
bluesky10111
Description
Source Code
Launch App
Current Users
Created by:
Bluesky10111
const tipMenu = [ { amount: 25, title: "Flash Boobs" }, { amount: 50, title: "Spank 5 Times" }, { amount: 100, title: "Song Request" }, { amount: 150, title: "Naked for 5 mins" }, ]; function displayTipMenu() { cb.sendNotice("📜 TIP MENU 📜", "", "#FFD700"); tipMenu.forEach(item => { cb.sendNotice(`${item.amount} – ${item.title}`, "", "#FFD700"); }); } // Show menu on broadcaster entry (so it doesn't spam every user) cb.onEnter(function(user) { if (user.user === cb.room_slug) { displayTipMenu(); } }); // React to tips cb.onTip(function(tip) { const match = tipMenu.find(item => item.amount === tip.amount); if (match) { cb.sendNotice(`✅ ${tip.from} tipped ${tip.amount} for "${match.title}"`, "", "#00FF00"); } else { cb.sendNotice(`💸 ${tip.from} tipped ${tip.amount}! Thank you!`, "", "#CCCCCC"); } });
© Copyright Chaturbate 2011- 2026. All Rights Reserved.