Apps Home
|
Create an App
Tip Menu 20
Author:
tightasian20
Description
Source Code
Launch App
Current Users
Created by:
Tightasian20
// Tip Menu Test by Bang54 // Variables var total_tips = 0; var goal_tips = 0; var last_tipper = null; var last_tip = 0; var ht_username = null; var ht_amount = 0; var goal = 0; var CONTROL = '!c'; // Settings cb.settings_choices = [{ name: 'goal', type: 'int', minValue: 0, defaultValue: 100, label: "Goal Amount (Set to 0 to Disable)" }, { name: 'reset', type: 'choice', choice1: 'Yes', choice2: 'No', label: "Reset the Goal when it is Met?" }, { name: 'goalAd', type: 'str', minLength: 0, MaxLength: 300, label: "Goal Description. Will automatically post in chat when Goal is reached (Optional)", required: false }, { name: 'item1', type: 'str', minLength: 1, maxLength: 30, label: "Menu Item 1 (required)" }, { name: 'price1', type: 'int', minValue: 0, defaultValue: 10, label: "Item 1 Price (required)" }, { name: 'item2', type: 'str', minLength: 1, maxLength: 50, label: "Menu Item 2 (required)" }, { name: 'price2', type: 'int', minValue: 0, defaultValue: 20, label: "Item 2 Price (required)" }, { name: 'item3', type: 'str', minLength: 1, maxLength: 50, label: "Menu Item 3", required: false }, { name: 'price3', type: 'int', minValue: 0, label: "Item 3 Price", required: false }, { name: 'item4', type: 'str', minLength: 1, maxLength: 50, label: "Menu Item 4", required: false }, { name: 'price4', type: 'int', minValue: 0, label: "Item 4 Price", required: false }, { name: 'item5', type: 'str', minLength: 1, maxLength: 50, label: "Menu Item 5", required: false }, { name: 'price5', type: 'int', minValue: 0, label: "Item 5 Price", required: false }, { name: 'chat_ad', type: 'int', minValue: 0, maxValue: 999, defaultValue: 10, label: 'Advertise Menu in Chat Every _____ Mins (Set 0 to Disable)' } ]; // Handlers cb.onTip(function (tip) { total_tips += tip['amount']; goal_tips += tip['amount']; if (tip['amount'] === cb.settings.price1) cb.sendNotice(cb.settings.item1); { } if (tip['amount'] === cb.settings.price2) cb.sendNotice(cb.settings.item2); { } if (tip['amount'] === cb.settings.price3) cb.sendNotice(cb.settings.item3); { } if (tip['amount'] === cb.settings.price4) cb.sendNotice(cb.settings.item4); { } if (tip['amount'] === cb.settings.price5) cb.sendNotice(cb.settings.item5); { } update_app(); last_tip = tip['amount']; last_tipper = tip['from_user']; if (tip['amount'] > ht_amount) { ht_amount = tip['amount']; ht_username = tip['from_user']; } cb.drawPanel(); }); // Chat Commands cb.onMessage(function (msg){ if(msg['m'].match(/(^|\s)!c(\s|$)/)) { if(msg['user'] == cb.room_slug || msg['is_mod']) { msg['m'] = msg['m'] + " (Control Menu: sent to all)"; for (var i = 0; i < listMenu.length; i++) { cb.sendNotice(listMenu[i]); } } else if(msg['has_tokens']) { msg['m'] = msg['m'] + " (Control Menu: sent to " + msg['user'] + ")"; for (var i = 0; i < listMenu.length; i++) { cb.chatNotice(listMenu[i], msg['user']); } } else { msg['m'] = msg['m'] + " (Control Menu: only blues can use this command)" } } return msg; }); // Display Panels cb.onDrawPanel(function (user) { if (cb.settings.goal === 0) { return { 'template': '3_rows_12_22_31', 'row1_label': 'Tip Menu Active!', 'row1_value': 'Type !c to see menu.', 'row2_label': 'Highest Tip:', 'row2_value': nullCheck(ht_username) + '(' + ht_amount + ')', 'row3_value': 'Tip ' + cb.settings.price1 + 'tks For "' + cb.settings.item1 + '"' }; } if (cb.settings.reset === "Yes") { return { 'template': '3_rows_12_22_31', 'row1_label': 'Goal:', 'row1_value': goal_tips + '/' + cb.settings.goal + '(' + total_tips + ')', 'row2_label': 'Control the show is active!', 'row2_value': 'Type !c to see menu', 'row3_value': 'Tip ' + cb.settings.price1 + 'tks For "' + cb.settings.item1 + '"' }; } else { return { 'template': '3_rows_12_22_31', 'row1_label': 'Goal:', 'row1_value': goal_tips + '/' + cb.settings.goal, 'row2_label': 'Control the show is active!', 'row2_value': 'Type !c to see menu', 'row3_value': 'Tip ' + cb.settings.price1 + 'tks For "' + cb.settings.item1 + '"' }; } }); // Makings of the Menu var menu1 = '' + cb.settings.item1 + ' For ' + cb.settings.price1 + 'tks '; var menu2 = '' + cb.settings.item2 + ' For ' + cb.settings.price2 + 'tks '; var menu3 = '--------'; var menu4 = '-------'; var menu5 = '-------'; if (cb.settings.price3 !== undefined) { menu3 = '' + cb.settings.item3 + ' For ' + cb.settings.price3 + 'tks '; } if (cb.settings.price4 !== undefined) { menu4 = '' + cb.settings.item4 + ' For ' + cb.settings.price4 + 'tks '; } if (cb.settings.price5 !== undefined) { menu5 = '' + cb.settings.item5 + ' For ' + cb.settings.price5 + 'tks '; } var listMenu = [menu1, menu2, menu3, menu4, menu5]; // Function Junction function update_app() { if (cb.settings.goal === 0) { } else if (goal_tips >= cb.settings.goal) { goal_reached(); } } function goal_reached() { if (tips_remaining() === 0) { if (cb.settings.reset === "Yes") { reset_goal(); } else; goal += 1; { if (goal <= 1) { cb.sendNotice("Goal Reached! " + cb.settings.goalAd); } } } } function reset_goal() { goal_tips -= cb.settings.goal; goal -= 1; } function tips_remaining() { var r = cb.settings.goal - goal_tips; if (r < 0) { return 0; } else { return r; } } function nullCheck(str) { if (str === null) { return "---"; } else return str.substring(0, 15); } function chatAd() { cb.sendNotice('Type ' + CONTROL + ' to see the full menu.', '', '#FFBEFF', '', 'bold'); cb.setTimeout(chatAd, (cb.settings.chat_ad * 60000)); } cb.setTimeout(chatAd, (cb.settings.chat_ad * 60000)); function init() { update_app(); cb.sendNotice('Type ' + CONTROL + ' to see the full menu.', '', '#FFBEFF', '', 'bold'); } init(); // Thanks for checking out my code!
© Copyright Freesexcam 2011- 2024. All Rights Reserved.