Bots Home
|
Create an App
Mark menu v1
Author:
serbernar_show
Description
Source Code
Launch Bot
Current Users
Created by:
Serbernar_Show
// Хранение пунктов меню const tipMenuItems = [ { tokens: 1, text: "Lovense Peng", section: "Fun & Flirty" }, { tokens: 10, text: "Spank Ass", section: "Fun & Flirty" }, { tokens: 14, text: "Lovense Oops", section: "Fun & Flirty" }, { tokens: 15, text: "Virtual Kiss", section: "Fun & Flirty" }, { tokens: 25, text: "HELP ME GET 10 LIKES", section: "Engagement" }, { tokens: 27, text: "Don't Stop", section: "Engagement" }, { tokens: 32, text: "Suck finger slowly", section: "Teasing" }, { tokens: 45, text: "Earthquake pattern", section: "Teasing" }, { tokens: 48, text: "Play Feet", section: "Teasing" }, { tokens: 55, text: "Fireworks pattern", section: "Hot Stuff" }, { tokens: 60, text: "Lick & Tease My Toy", section: "Hot Stuff" }, { tokens: 65, text: "Wave pattern", section: "Hot Stuff" }, { tokens: 71, text: "Doggy Pose", section: "Hot Stuff" }, { tokens: 75, text: "Ride pillow / hump bed", section: "Hot Stuff" }, { tokens: 77, text: "Slow Stroke Session", section: "Hot Stuff" }, { tokens: 81, text: "Cock close-up + dirty talk", section: "Intimate" }, { tokens: 99, text: "Edging (5 min)", section: "Intimate" }, { tokens: 100, text: "I LOVE YOU VERY MUCH", section: "Intimate" }, { tokens: 111, text: "Pulse pattern", section: "Intimate" }, { tokens: 150, text: "Full naked + edging (5 min)", section: "Intimate" }, { tokens: 255, text: "Control Lovense 10 min", section: "Ultimate" }, { tokens: 777, text: "Cum Now", section: "Ultimate" } ]; // Сортировка по токенам tipMenuItems.sort((a, b) => a.tokens - b.tokens); // Группировка по секциям function groupBySection(items) { const sections = {}; for (let i = 0; i < items.length; i++) { const section = items[i].section; if (!sections[section]) { sections[section] = []; } sections[section].push(items[i]); } return sections; } const sections = groupBySection(tipMenuItems); // Форматирование меню function formatTipMenu() { let output = "🗒️ Tip Menu 🗒️\n"; for (const section in sections) { output += `\n🔸 ${section} 🔸\n`; const items = sections[section]; for (let i = 0; i < items.length; i++) { output += `${items[i].tokens} tokens: ${items[i].text}\n`; } } return output; } // Слушатель чата cb.onMessage(function (msg) { if (msg['m'].toLowerCase() === "!menu") { cb.sendChat(formatTipMenu()); } });
© Copyright Chaturbate 2011- 2026. All Rights Reserved.