Apps Home
|
Create an App
mkmk2
Author:
i_love_asian_women
Description
Source Code
Launch App
Current Users
Created by:
I_Love_Asian_Women
// vars var colort = "DarkGreen"; var backgroundImage = "11715808-cb16-40d1-9db2-eb6bb1330161"; var total_tipped = 0; var high_tip_username = null; var high_tip_amount = 0; var last_tip_username = null; var last_tip_amount = 0; var subject_is_set_with_0 = false; cb.settings_choices = [{ name: 'tokens', type: 'int', minValue: 1, default: 2000 }, { name: 'goal_description', type: 'str', minLength: 1, maxLength: 999, default: "CUMSHOW #lovense #daddy #c2c #natural #pvt #squirt #anal #feet #new #pantyhose #nolimits #mistress #bigass #cute #dildo #pussy #lush #teen #young #18 #asian #hairy #bigboobs #mature" } ]; // handlers cb.onTip(function(tip) { total_tipped += tip['amount'] if (total_tipped > cb.settings.tokens) { total_tipped = cb.settings.tokens; } update_subject(); last_tip_amount = tip['amount'] last_tip_username = tip['from_user'] if (tip['amount'] > high_tip_amount) { high_tip_amount = tip['amount'] high_tip_username = tip['from_user'] } cb.drawPanel(); }); cb.onDrawPanel(function(user) { return { "template": "image_template", "layers": [{ 'type': 'image', 'fileID': backgroundImage, }, { 'type': 'text', 'text': 'TOTAL', 'top': 2, 'left': 6, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Verdana, Geneva, sans-serif" }, { 'type': 'text', 'text': 'HIGHEST', 'top': 26, 'left': 6, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Verdana, Geneva, sans-serif", }, { 'type': 'text', 'text': 'RECENT', 'top': 49, 'left': 6, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Verdana, Geneva, sans-serif" }, { 'type': 'text', 'text': '' + total_tipped + ' / ' + cb.settings.tokens, 'top': 5, 'left': 80, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Lucida Console, Monaco, monospace" }, { 'type': 'text', 'text': format_username(high_tip_username) + ' (' + high_tip_amount + ')', 'top': 29, 'left': 80, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Lucida Console, Monaco, monospace" }, { 'type': 'text', 'text': format_username(last_tip_username) + ' (' + last_tip_amount + ')', 'top': 51, 'left': 80, 'font-size': 12, 'color': colort, 'font-weight': "Bold", 'font-family': "Lucida Console, Monaco, monospace" }, ], }; }); // helper functions function update_subject() { if (tips_remaining() == 0) { cb.sendNotice = goalWasMet() if (subject_is_set_with_0) { return; } subject_is_set_with_0 = true; } else { subject_is_set_with_0 = false; } var new_subject = cb.settings.goal_description + " [" + tips_remaining() + " tokens remaining]"; cb.log("Changing subject to: " + new_subject); cb.changeRoomSubject(new_subject) } function goalWasMet(username) { var msg = ""; msg += "Goal Reached" cb.sendNotice(msg, username, '#006622', '#ccffdd', 'bold'); } function tips_remaining() { var r = cb.settings.tokens - total_tipped; if (r < 0) { return 0; } else { return r; } } function format_username(val) { if (val === null) { return ""; } else { return val.substring(0, 24); } } function init() { update_subject(); } init();
© Copyright Chaturbate 2011- 2025. All Rights Reserved.