Apps Home
|
Create an App
My-First-Bot
Author:
snook599
Description
Source Code
Launch App
Current Users
Created by:
Snook599
/* * Set of hello messages. */ var messages = [ "Hello everyone - How was your day!", "Hello people - Isn't this fun!", "Hello guys - Aren't you turned on!", "Hello everyone - Hope you enjoy the show!", "Hello guys - What are your New Year plans!", "Hello guys - Last day of the year! Let's make it memorable!", "Hello everyone - Let's have fun today!", "Hello people - Don't be shy!", ]; /* * Number of times a hello message was printed. */ var helloCount = 0; /* * Hello message print routine. * Calls itself periodically and prints a predefined hello message. */ function sayHello () { /* Obtain the current message to print. */ var index = helloCount % messages.length; var currentHello = messages[index]; /* Print it! */ cb.chatNotice(currentHello); /* Prepare for printing the next message. */ helloCount += 1; /* Print interval of 10 minutes. */ cb.setTimeout(sayHello, 2000) } /* * Start the hello messages! */ cb.setTimeout(sayHello, 3000);
© Copyright Chaturbate 2011- 2025. All Rights Reserved.