MessageBot JS

Just a script

이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/383554/711323/MessageBot%20JS.js을(를) 사용하여 포함하는 라이브러리입니다.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

var _username = "";
var _message1 = "";
var _message2 = "";
var _message3 = "";
var _message4 = "";
var _message5 = "";

function _AI(id_message)
{
	switch (id_message) 
	{
		case 'hello':
			id_object = [
			    'Hello', 'Hi', 'What’s up?', 'Whats up?', 'How’s it going?', 'How’s it going','Hows it going',
			    'What’s happening', 'Yo', 'Yo! sup', 'who is there?', 'hey boo', 'how you doin', 'ello mate',
			    'you know who this is', 'here is me', 'here`s me','sup dude', 'hi mate', 'hello dude', 'sup dude',
			    'whats up mate', 'good day', 'how are you'
			];
		break;

		case 'female':
			id_object = [
			    'f here and you?', 'female', 'woman and you?', 'F here you??', 'girl here', 'f and you','babe girl and you',
			    'i am f and you', 'i`m woman', 'f here what about you'
			];
		break;

		case 'add':
			id_object = [
			    'add me on', 'See you there', 'waiting for you there', 'just waiting to add you on', 
			    'find me on', 'see me on','did you added on', 'lets go to', 'lets talk on', 'wanna talk on',
			    'here my', 'there on', 'this is my', 'go to', 'see my pics on', 'wanna pictures? go to',
			    'share some pics? on', 'more private on', 'lets get private my'
			];
		break;

		case 'snap':
			id_object = [
			    'snapchat', 'snap'
			];
		break;
	}

	var randID = Math.floor( Math.random() * id_object.length );
	return id_object[randID];
}

function messageUser(machinne)
{
    _message1 = _AI('hello');
	_message2 = _AI('female');
	_message3 = _AI('add');
	_message4 = _AI('snap');
	_message5 = "";

    switch(machinne)
    {
    	// --------------------
        case 'b0':
            _username = "mbeIliza";
        break;
        // ...

		// --------------------
        case 'b1':
            _username = "mbeIIiza";
        break;
        // ...

        // --------------------
        case 'b2':
            _username = "hannaIle9";
        break;
        // ...

        // --------------------
        case 'b3':
            _username = "hannaIIe9";
        break;
        // ...

        // --------------------
        case 'b4':
            _username = "karoIlinx4";
        break;
        // ...

        // --------------------
        case 'b5':
            _username = "karoIIinx4";
        break;
        // ...

        // --------------------
        case 'b6':
            _username = "elaforte9";
        break;
        // ...  
    }
}