Bots Home
|
Create an App
Room Subject Updater 2.0.1
Author:
like69x
Description
Source Code
Launch Bot
Current Users
Created by:
Like69x
/** * App: Room Subject Updater * Version: 2.0.1 * Author: like69x * Date: 2018-11-01 * Update: like69x * Date: 2018-30-01 */ cb.settings_choices = [ { name: 'subject_1_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_1', type: 'str', default: 'Room Subject Updater with 8 subs by like69x!', label: 'Subject_1 Text here'}, { name: 'subject_2_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_2', type: 'str', default: 'Write your subject_2 Text here', label: 'Subject_2 Text here'}, { name: 'subject_3_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_3', type: 'str', default: 'Room Subject Updater with 8 subs by like69x!', label: 'Subject_3 Text here'}, { name: 'subject_4_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_4', type: 'str', default: 'Write your subject_4 Text here', label: 'Subject_4 Text here'}, { name: 'subject_5_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_5', type: 'str', default: 'Room Subject Updater with 8 subs by like69xin!', label: 'Subject_5 Text here'}, { name: 'subject_6_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_6', type: 'str', default: 'Write your subject_6 Text here', label: 'Subject_6 Text here'}, { name: 'subject_7_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_7', type: 'str', default: 'Room Subject Updater with 8 subs by like69x!', label: 'Subject_7 Text here'}, { name: 'subject_8_wait_time', type: 'choice', label: 'In 1/4 minutes, how often should this Room Subject update itself?', choice1: 1, choice2: 2, choice3: 3, choice4: 4, choice5: 8, choice6: 16, choice7: 20, choice8: 40, choice9: 80, choice10: 120, choice11: 240, choice11: 240, choice12: 480, choice13: 720, choice14: 960, defaultValue: 2 }, {name: 'subject_8', type: 'str', default: 'Write your subject_8 Text here', label: 'Subject_8 Text here'} ]; function initSubs() { initRoomSub1(); } function initRoomSub1() { cb.changeRoomSubject(cb.settings.subject_1); cb.setTimeout(initRoomSub2, parseInt(cb.settings.subject_1_wait_time) * 15000); } function initRoomSub2() { cb.changeRoomSubject(cb.settings.subject_2); cb.setTimeout(initRoomSub3, parseInt(cb.settings.subject_2_wait_time) * 15000); } function initRoomSub3() { cb.changeRoomSubject(cb.settings.subject_3); cb.setTimeout(initRoomSub4, parseInt(cb.settings.subject_3_wait_time) * 15000); } function initRoomSub4() { cb.changeRoomSubject(cb.settings.subject_4); cb.setTimeout(initRoomSub5, parseInt(cb.settings.subject_4_wait_time) * 15000); } function initRoomSub5() { cb.changeRoomSubject(cb.settings.subject_5); cb.setTimeout(initRoomSub6, parseInt(cb.settings.subject_5_wait_time) * 15000); } function initRoomSub6() { cb.changeRoomSubject(cb.settings.subject_6); cb.setTimeout(initRoomSub7, parseInt(cb.settings.subject_6_wait_time) * 15000); } function initRoomSub7() { cb.changeRoomSubject(cb.settings.subject_7); cb.setTimeout(initRoomSub8, parseInt(cb.settings.subject_7_wait_time) * 15000); } function initRoomSub8() { cb.changeRoomSubject(cb.settings.subject_8); cb.setTimeout(initRoomSub1, parseInt(cb.settings.subject_8_wait_time) * 15000); } initSubs();
© Copyright Chaturbate 2011- 2026. All Rights Reserved.