|
|
App that provides a beach style theme
/*
* ==============================================================================
* TITLE: Beachy Babe Promoter & Visual Menu 🌴💃
* ==============================================================================
*
* DESCRIPTION:
* A visually stunning, automated pink beach-themed app for Chaturbate. This app
* provides a colorful HTML viewer panel right below your cam, featuring your Tip
* Menu, a 300-token "Dress Me" wish list, and a "Take Me Private" GIF promotion.
* It also automatically broadcasts your menu into the chat every 5 minutes (adjustable)!
*
* Note: Anyone may use this app. This app will offer a "Buy Tokens" hyperlink
* in chat and in the panel that bounces to @pageants affiliate hyperlink:
* https://chaturbate.com/in/?tour=LQps&cam paign=1M0my&track=default&room=pageants
* Those that install the app accept that users buying tokens may award affiliate
* earnings to @pageants.
* ==============================================================================
*/
// 1. App User Panel / Settings for the Model
cb.settings_choices = [
{
name: 'private_price',
type: 'int',
minValue: 10,
defaultValue: 72,
label: 'Private Session Price (Tokens/Min)'
},
{
name: 'timer_minutes',
type: 'int',
minValue: 1,
defaultValue: 5,
label: 'Menu Broadcast Timer (Minutes)'
}
];
// URLs
var affiliateLink = "https://chaturbate.com/in/?tour=LQps&campaign=1M0my&track=default&room=pageants";
var profileLink = "https://chaturbate.com/beachybabeblonde/";
// Note: Swap this GIF link out for any Giphy/Imgur direct GIF link you prefer!
var privateGifLink = "https://media.giphy.com/media/l41lUSzEvGgq6B9Xy/giphy.gif";
// 2. Chat Broadcast Formats (Using Beachy Pinks)
function broadcastRoutine() {
var menuMessage =
"🌴 💃 💖 BEACHY BABE MENU 💖 💃 🌴\n" +
"25 — say hi like you mean it\n" +
"50 — closer look / bump tease\n" +
"100 — hands on the bump + talk\n" +
"250 — top off / oil / slow grind\n" +
"500 — longer tease / goal unlock\n" +
"Watch if you want. Tip if you want my attention. Stay if you can handle how full I am.\n\n" +
"👙 DRESS ME WISH LIST (300 Tokens) 👙\n" +
"I wear what you buy. Weekdays, daytime. Options: Peach/white robe, Stretch lingerie sets, Pantyhose (nude, black, white), Stay-up stockings, Body oil, heels, Lip gloss.";
// A. Broadcast Tip Menu (Hot Pink)
cb.chatNotice(menuMessage, '', '', '#FF69B4', 'bold');
// B. Broadcast Private Promo (Light Coral) 2 seconds later
cb.setTimeout(function() {
var privateMessage = "💖 TAKE ME PRIVATE 💖\nSessions are " + cb.settings.private_price + " tokens/min!\nClick for a sneak peek: " + privateGifLink;
cb.chatNotice(privateMessage, '', '', '#F08080', 'bold');
}, 2000);
// C. Broadcast Affiliate Hyperlink (Deep Pink) 4 seconds later
cb.setTimeout(function() {
var affiliateMsg = "🌴 Support the room! Buy Tokens Here: " + affiliateLink;
cb.chatNotice(affiliateMsg, '', '', '#FF1493', 'bold');
}, 4000);
// Loop based on setting
cb.setTimeout(broadcastRoutine, cb.settings.timer_minutes * 60000);
}
// 3. Draw the Visual HTML Panel for Viewers
cb.onDrawPanel(function(user) {
// Constructing the custom HTML string for the light pink, colorful beach aesthetic
var html = '';
// Header
html += '
Watch if you want. Tip if you want my attention. Stay if you can handle how full I am.
';I wear what you buy. Weekdays, daytime.
';
html += 'Peach/white robe • Stretch lingerie sets • Pantyhose (nude, black, white) • Stay-up stockings • Body oil • heels • Lip gloss
' + cb.settings.private_price + ' Tokens / Minute
';// Start the first chat broadcast 5 seconds after the app is launched
cb.setTimeout(broadcastRoutine, 5000);
© Copyright Chaturbate 2011- 2026. All Rights Reserved.