Apps Home
|
Create an App
Kimber
Author:
_kimdesire
Description
Source Code
Launch App
Current Users
Created by:
_Kimdesire
// === CONFIGURACIÓN === var menuItems = [ {tokens: 10, action: "Saludo sexy"}, {tokens: 25, action: "Mostrar pies"}, {tokens: 50, action: "Bailar 1 canción"}, {tokens: 100, action: "Flash especial 🔥"} ]; var menuInterval = 5; // minutos var welcomeMessage = "Bienvenido/a {user} 💋 Mira el menú de propinas y diviértete!"; // === MOSTRAR MENÚ === function showMenu() { cb.sendNotice("💎 MENÚ DE PROPINAS 💎", "", "#FF69B4", "#000000", "bold"); menuItems.forEach(function(item) { cb.sendNotice(item.tokens + " tokens - " + item.action); }); } function scheduleMenu() { cb.setTimeout(function() { showMenu(); scheduleMenu(); }, menuInterval * 60000); } // === BIENVENIDA AUTOMÁTICA === cb.onEnter(function(user) { var message = welcomeMessage.replace("{user}", user.user); cb.sendNotice(message); }); // === RESPUESTA A PROPINA === cb.onTip(function(tip) { var found = menuItems.find(item => item.tokens === tip.amount); if (found) { cb.sendNotice("💖 Gracias " + tip.from_user + " por " + tip.amount + " tokens! Acción: " + found.action); } else { cb.sendNotice("💖 Gracias " + tip.from_user + " por tu propina de " + tip.amount + " tokens!"); } }); // === INICIO === showMenu(); scheduleMenu();
© Copyright Chaturbate 2011- 2026. All Rights Reserved.