-
Notifications
You must be signed in to change notification settings - Fork 0
/
memecraft_sex_bot.js
50 lines (46 loc) · 1.14 KB
/
memecraft_sex_bot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* shit */
const mineflayer = require('mineflayer');
if (process.argv.length < 4 || process.argv.length > 5) {
console.log('node memecraft_sex_bot.js <host> <port>')
process.exit(1)
}
function shit1() {
var bot = mineflayer.createBot({
host: process.argv[2],
port: parseInt(process.argv[3]),
username: "sexbot",
});
bot.on('spawn',function (){
setInterval(function() {
bot.setControlState('sneak', true)
},10)
setInterval(function() {
bot.setControlState('sneak', false)
},20)
setInterval(function() {
bot.chat("cum inside meeeee") //lmao lmaooo
},2000)
})
bot.on('end',function() {shit1()});
}
function shit2() {
var bot2 = mineflayer.createBot({
host: process.argv[2],
port: parseInt(process.argv[3]),
username: "saxbot",
});
bot2.on('spawn',function (){
setInterval(function() {
bot2.setControlState('sneak', true)
},10)
setInterval(function() {
bot2.setControlState('sneak', false)
},20)
setInterval(function() {
bot2.chat("Your ass is tight <3") //lmao lmaooo
},2000)
})
bot2.on('end',function() {shit2()})
}
shit1();
shit2();