Apps Home
|
My Uploads
|
Create an App
sfasfasf
Author:
app
Description
Source Code
Launch App
Current Users
Created by:
App
App Images
// vars var backgroundImage = '3e3e8330-f97e-40f6-af95-fca4d8031566'; var fontsiZe = 22; var total_tipped = 0; var subject_is_set_with_0 = false; var top = 6; var coluMn1 = 42; var coluMn2 = 110; var Rauw1 = 19; var Paneltextcolor = '#FFFFFF'; cb.settings_choices = [ {name: 'tokens', type: 'int', minValue: 1, default: 100}, {name: 'goal_description', type: 'str', minLength: 1, maxLength: 255} ]; // handlers cb.onDrawPanel(function(user) { return { 'template': "image_template", 'layers': [ {'type': 'image', 'fileID': backgroundImage}, { 'type': 'text', 'text': "GOAL: ", 'top': top, 'left': coluMn1, 'font-size': fontsiZe, 'color': Paneltextcolor, }, { 'type': 'text', 'text': '' + total_tipped + ' / ' + cb.settings.tokens, 'top': top, 'left': coluMn2, 'font-size': fontsiZe, 'color': Paneltextcolor, }, ], }; }); // helper functions function update_subject() { if (tips_remaining() == 0) { 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 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, 12); } } function init() { update_subject(); } init();
© Copyright Chaturbate 2011- 2024. All Rights Reserved.