Apps Home
|
Create an App
SubmitQuestions1
Author:
flskjflkdsaflkj3948984
Description
Source Code
Launch App
Current Users
Created by:
Flskjflkdsaflkj3948984
var questions = new Map(); cb.onMessage(function(msg) { if (msg['m'].startsWith('/question')) { questions.set(msg['m'].substring(9), msg['user']); cb.sendNotice('question submitted, thanks!', msg['user']); cb.log('question submitted, thanks!'); } if (msg['m'].startsWith('/list') && (msg['is_mod'] || msg['user'] == cb.room_slug)) { for (const [key, value] of questions) { cb.sendNotice(key + value, msg['user']); } cb.sendNotice(questions, msg['user']); cb.log(questions); } if (msg['m'].startsWith('/clear') && (msg['is_mod'] || msg['user'] == cb.room_slug)) { args = msg['m'].split(' '); questions.clear(); cb.log('question bank cleared'); cb.sendNotice('question bank cleared', msg['user']); } return msg; });
© Copyright Chaturbate 2011- 2024. All Rights Reserved.