BOT Omegle learn to talk

bot learn how to talk in omegle text chat

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         BOT Omegle learn to talk
// @namespace    *://omegle.com/
// @version      1.4
// @description  bot learn how to talk in omegle text chat 
// @author       iErcan
// @match        *://www.omegle.com/
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    var lastMessageTO;
    var lastMessage;
    var lastMessageStranger = "";
    var messageHistory = ["ça va?", "tu fais quoi?"]; // <--- change this 
    document.getElementById('textbtn').click(); // on lance le chat

    setTimeout(function() {
            write(messageHistory[random(0, messageHistory.length)]);
    }, 5000);

    function random(min, max) {
        return Math.floor(Math.random() * (max - min)) + min;
    }

    function alreadyInArray(str) {
        for (var i = 0; i < messageHistory.length; i++) {
            if (messageHistory[i] === str)
                return true;
        }
        return false;
    }

    function write(str) {
        // end();
        start();
        setTimeout(function() {
            document.getElementsByClassName("chatmsg ")[0].value = str;
            document.getElementsByClassName("sendbtn")[0].click();
        }, 1000);

    }

    var startTime, endTime, seconds;

    function start() {
        startTime = new Date();
    }

    function end() {
        endTime = new Date();
        var timeDiff = endTime - startTime; //in ms
        timeDiff /= 1000;

        seconds = Math.round(timeDiff % 60);
        console.log(seconds + " sec");
    }

    function detectMessage() {
        for (var i = 0; i < lastMessage.length; i++) {
            if (lastMessage[0] === "S" && lastMessage != "Stranger is typing...") {
                lastMessageStranger = lastMessage;
                lastMessageStranger = lastMessageStranger.split('Stranger:').join('');


            }
        }
    }
    setInterval(refreshVar, 1100);

    function refreshVar() {
        if (document.getElementsByClassName("disconnectbtn")[0].textContent === "NewEsc") {
            document.getElementsByClassName('disconnectbtn')[0].click();
            lastMessage = "";
            lastMessageStranger = "";
            start();
            setTimeout(function() {
             write(messageHistory[random(0, messageHistory.length)]);
            }, 5000);
        }
        //!alreadyInArray(lastMessageStranger) <-- deuxième façon de check 
        if (document.getElementsByClassName("logitem")[document.getElementsByClassName("logitem").length - 1].firstChild.firstChild.textContent === "Stranger:" && lastMessage != undefined && lastMessage != "") {

            write(messageHistory[random(0, messageHistory.length)]);
            console.log("DETECT " + lastMessageStranger);
            if (!alreadyInArray(lastMessageStranger)) {
                messageHistory.push(lastMessageStranger);
            }
            console.log(messageHistory);

        }
       if (seconds > 60) { // skip au bout de 60 secondes
            start();
            for (var i = 0; i < 3; i++)
                document.getElementsByClassName('disconnectbtn')[0].click();
        } 
        end();
        lastMessage = document.getElementsByClassName('logitem')[document.getElementsByClassName('logitem').length - 1].textContent;
        detectMessage();
    }

})();