Ottomated – Minecraft, but I hacked into the OfflineTV server…

Video Information

Otto why is my chat a buzz i’m about to reproduce if you want to watch is it cool wow that is [ __ ] sick what that’s so goddamn cool hello i’m automated i’m the maker of crewlink which is the among us proximity voice chat app also a coding streamer on twitch and i’m

Also a member of the offline tv minecraft server but i wasn’t always a member of the server and this is the story of my master plan to get waitlisted so chat the turtle gambit raise your hand if you know what the turtle gambit is we’re going to code a turtle which is

This little dude right here and then get ludwig to install this turtle on the offline tv server and the turtle is going to be a representation of me so we’re going to program it for me to be able to remote control it from not being inside the offline tv server

I did run into a couple problems when i was testing it out first of all the turtle actually requires fuel to move around in the form of coal blocks and stuff so we’re gonna have to program the turtle to mine for its own fuel so we’re gonna make a new project shot

We’ll call it turtle gambit the first and most important step is to just be able to remote control it i just have to have a room like i wanna i wanna like a little heads-up display that i can see on my screen that will show me all the status about

The whole turtle i think we want a websocket server for this so the websocket library let’s just doing some example code from this all right so this should be very very basic basic code it should still work so now we have to write some code in minecraft

So that the turtle can connect to my remote control program this is the remote control basically the turtle needs a remote control receiver so let’s edit this crafty turtle i guess so this should connect to the local web server that’s running on my computer if ws

Then ws let’s just copy this code oh it worked oh it worked it worked it worked look it worked now i just have to make it transmit what its data is so let’s see what kind of data does a turtle have let’s look at the turtle api what can we

Get from our turtles we can move it forward and backwards these all four of these use fuel up but i’m pretty sure the turn left do not use fuel up uh we can dig we can place block we can drop item we can select an inventory slot we can

Get the number of items in our current inventory slot we can detect we only detect if there’s a solid block we can’t detect what kind of block it is oh no we can get information about the block in front of the turtle okay that’s good

We can pick up items and we can yoink stuff from chests i guess hmm you can switch the tool and weapon within the turtle how do i do that equipped i’m not saying oh equip left equip right oh [ __ ] can you equip a crafting table you can equip a crafting table

Oh [ __ ] yes this is becoming a lot more possible all new possibilities i now only need one turtle to get my empire started how do i craft stuff because i know you can craft stuff but how the [ __ ] do you do that wait wait wait so you’re saying what i have to do

Is i have to go into the turtle’s inventory manually place a stick here and a stick here and then a diamond here like that i have to do this that’s an item if items in the turtle’s inventory matches a valid recipe items can be placed anywhere as long as

They are oriented property with respect to each other we’ll not craft that there are any items that are not pro oh that’s what it is will not craft if there are any items that are not part of the recipe including in the slots not used for

Crafting so what it is is whenever i want to craft with a turtle i’m gonna have to drop all of my items safely onto the ground and then only oh that’s gonna be so hard to code dude that’s gonna be so hard to code okay okay i’m excited now i’m excited so

Let’s construct an interface of what i could possibly ever want from the turtle interface um turtle so what information does this turtle have turtle craft in the turtle hell yeah can oh actually how cheap are turtles to make you need a turtle to make a turtle

To make a turtle you need a computer how do you make a computer redstone stone and a pane of glass so i have to smelt turtles can interact with furnaces okay so they can put items into a furnace i see look at this dudes thing let’s make a new folder called turtle

And then we’ll make a new file startup dot lua but we want to we want to do this eternally we always want to receive a message from the websocket now that we have a response uh depends on what the message can we is there json can we parse json here’s the json library

Wow the library okay let’s let’s install this json library on the thing that’s the first message that i’m going to implement an eval message which will allow me to run any kind of code that i want on the turtle so what i want to do is i want to do app.expose function

Exact format error what the [ __ ] is this i should not have print this out okay well this is happening okay we connected now we run this local funk is still a nil value okay okay so we need i do need to return one plus one it looks like

Maybe that is the problem eval two look it printed out two nice nice okay now all we have to do is technically if ludwig typed this code into the turtle on the offline tv server i could make it do anything i wanted it to such as place to block let’s try this okay

Turtle you sit here okay take keep an eye on the turtle over here chad it works it works i can move the turtle from this let’s go i can make it turn right as well if i wanted boom turns right i could make it craft items i could make

It break blocks oh let’s try making it like brick blocks how do you make a turtle break block no let’s make it suck an item put a chest above the turtle with a uh block of dirt in it then we run this code and we look in the chest no dirt block

Dirt block is in the turtle let’s go so now we have a turtle that we can remote control yes yes i love it okay got one turtle turn turtle it works yes it works okay so chat this is this is what i’m envisioning right now

All right bear with me bear with me i’m gonna make i’m gonna make you a diagram diagram time all right so what tabs up here turtle one we can give them all names maybe we’ll uh maybe we’ll make a randomly generated name things this is

The cool part chat this is what i want to do i want to make a 3d wire frame i look something like this each of these is a minecraft block and what we’ll have is we will have this display the turtle okay there’s our turtle sitting right there

Visualize the direction it’s looking in somehow like we draw a little arrow like a little face maybe so we don’t actually know what the minecraft world looks like from the from the point of view of our turtle all we know about are the blocks on top of it

In front of it and under it so all we know for sure is this block here this block right here which is air and this block up here which is also air but the thing is if the turtle then walks forward like if the turtle walks like this

Then the turtle’s now sitting here i i can guess with pretty high success rate that these blocks are still what they were when i last walked over them someone probably didn’t just come up and break this block or comp and replace this block with something else so what i’ll do is i’ll

Kind of outline the world from the turtle’s knowledge from what i from where the turtle has moved so far i’ll have like camera control so i can like right click to get a different viewpoint and i’ll use wasd to move the other thing we’ll have is we’ll have like a little inventory

Up here probably there’s 16 blocks in the inventory so we’ll have 16 little squares displaying which one is selected and what the items are in it and then we’ll have like a keyboard shortcut for placing a block in front on top below breaking blocks then we’ll do some kind of highlighting where

All the blocks we don’t know about are red maybe and we highlight the ones that we do know about for sure green and we highlight the ones that we don’t know about or that we might know about yellow so yeah that’s the plan the plan is definitely not simple okay let’s go uh

Implement them so we need we need some kind of library that’ll let us draw wireframe 3d blocks 3.js is good at doing 3d i know that much almost too much it can do this so we got our box now box is good we want to render a box inside the canvas uh Here’s our cube now why is it so zoomed in okay look at this this is perfect this is exactly what i wanted now i just have to make it semi-transparent uh and red so i just do color equals red transparent and then opacity equals 0.5 ah perfect let’s go

What i don’t have is the world what we need what we needed in order to make this representation of the world is we need to save all of this data like we need to remember consistently even when the program closes what blocks are where so there’s

A couple different options in how we can do that option one we could do that inside the turtle we can go into minecraft inside the turtle script here we can store a history of all the blocks we’ve walked over that is stupid and i’m not doing that

Because turtles are so slow compared to every other piece of code that i can write so that is that is not how i’m gonna do there’s a couple other options one one is i could store it in the back end so basically every time a turtle moves the back end could remember

Okay here’s a here’s a here’s an option the turtle starts at zero zero whenever we tell them turtle to move forward we just say oh now the turtle is at one zero every time we move the turtle we increment or decrement the position so then what we do

Is at every time we move we want to get the blocks around and we can only get three of the blocks the one in front of the turtle which is right here the one on top of the turtle and the one underneath the turtle so these

Are the three blocks that we can read we would store a map that maps a position to the block the block data so basically what i need is i need a file format that stores a minecraft world okay how do we do that um well this

Should be in the back end so i have these four functions uh forward back up down actually also left and right so what i want to do is instead of just saying okay move the turtle forward i want to say move the turtle forward and then update the blocks around you and save

Those to your memory let’s just use node.json db it is a json file which is not the best database but it works so this world stores a database in the constructor i initialize the database this dot db equals new json db we want to we now want a function called update block

Uh which will take an x position a y position and a z position and it would push the data this updates the block fine this is cool let’s write a get block function we want get block um at x y z we want to return this dot db.get data

The data path would just be this okay so this is all we need for the world storage but we also need we also need turtles to remember where they are here’s the thing a turtle has a label what is the default label no computer label

Label set hello now it has a name can i set this label via code i can change the label to talk to people that is actually hilarious if the turtle does have a label then we just set the label of this object equal to what the label is already

But if the term doesn’t have a label we want to we want to come up with the label list of first names look at that chad that’s plenty of names so this should work now this should set a random name on a any robot who boots up and doesn’t have a name

Now let’s go to our index file and let’s do const world equals new world so this will just initialize a world uh when we initialize the world it obviously reads the database but what we need to do in addition to storing all the blocks in the world

We actually need to store where the turtles are because if a turtle shuts down or not if the turtle shuts down if a turtle shuts down we can’t really get it back which is kind of correct if the program shuts down that’s driving the turtles

It has to remember the x y and z position of all the turtles so they don’t reset at zero zero zero let’s make an update turtle function it’ll provide a turtle which is a turtle object and then it’ll drive and provide an x

A y and a z let’s just push x y z because we can actually push an array here that’ll be easier then we’ll do get turtle we’ll just return a list of three numbers there we go the next thing i need to do is when i move forward

First move forward and then run await this dot update position and what this update position function is going to do is it’s going to scan the blocks all around me also update what the x y and z coordinate of myself are so let’s make an update position function

This is actually difficult up is easy up is always gonna be y direction but forward and backwards they depend on the directions okay so if this dot direction equals direction dot north this dot z north was negative z we said negative z yeah i think i’m just gonna do this for

All four directions so for east x plus plus for south z plus plus and for west uh x minus minus so now we just copy this four times well no we copy it one time because we only have ford and back that need this logic in it so forward and back and then

We just invert these so z plus plus x minus minus z minus minus x plus plus easy enough and then turning left and turning right so case left if we turn left this dot d minus minus if we’re at zero when we turn left

We want to do this dot d plus plus and this dot d mod equals four we got all of our possible movements now all right we look at this again startup it worked olympic garland is our first robot yay we can take a selfie together now if i disconnect and reconnect

Olympi oh no it renamed her to kissy sadler olympia’s gone forever she was so young minutes minutes old kisses kissy’s gonna die as well in the course of testing unfortunately she’ll have to be sacrificed for the cause okay i’m glad i’m glad you guys are seem to be fine with me murdering another

Soul kyla lynnae is turtle number three kissy is dead guys we’ve killed kissy island might die she might not die there’s a chance there’s a chance she might survive chad ah she died florian zhong ah see here we go now we have the inventory we have the

Label we have the x y and z and the d the direction turn turtle it worked and now i should have the actual direction of the turtle in here the direction should now be two it is two look it’s two and now if i press it once more

Direction is one let’s go i should build this model in blender this will be a full tutorial from downloading blender and making your first 3d model that is literally just a cube with a pickaxe on it we’ll not even do the pickaxe it’s literally just a cube

But first of all you want to press next a couple times this is very important then you want to press install and then you should see this cancel button you don’t want to press that you might be tempted but really don’t want to do that also this x no no just use restraints

Don’t even move your mouse if you don’t have to all right then you want to press finish you want to load up blender so blender always starts with the cube now that we have a cube we want to look at what the model looks like it hovers slightly

Above the ground it has like kind of squiggly things on the bottom a slit in the front where it’s looking it’s holding a pickaxe but we’re not gonna do the pickaxe part and it has a backpack on the back okay that took too long oh we got it we have created minecraft cube

It shouldn’t be turtle.json it should be turtle.obj it’s there’s something there it’s right it just does not the texture nice we have a turtle officially this is what i need to do first of all go to um index remove the world second of all go to turtle and put in here

An extra div that will have a json.stringify turtle just in case and then world will also pass into the turtle to the world and now instead of position 0 1 0 we instead do position is turtle.x turtle.y turtle.z okay i want to fuel up this turtle let’s make a little script just a

Fuel up hurdle dot refuel save uh now i have to get some coal blocks i think put that in there run this script but now i should be able to move you so now instead of mapping the turtles to a button that turns the turtle left i wanna i wanna map the

Turtle to a world whole turtle world okay so now in turtle right here i wanna add the button back let’s do turn left and let’s do forward now we run the app that connects to minecraft okay so now the app is open now we activate floria startup blurry connects

And we get an error wait i don’t understand this okay let’s try this one more time start up oh it didn’t crash reverse cannot use import statement oh no not this again chad i thought we fixed this no this should fix it this should fix it this should fix it this should please

Fix it oh [ __ ] look look look look if we press the move button keep an eye on minecraft chat move okay we got an error oh i know what that area is okay here we go chat start up populated here she is at zero zero zero we now press the move button

And it works holy [ __ ] do you see that did you see that chance holy [ __ ] holy [ __ ] let’s go let’s go oh it works it actually works the next step is rendering the world around the the [ __ ] turtle so what we need to do is whenever this world changes

We need to update it we need to send that to the uh to the front okay what we want is we want instead of get blocks we want to say we have a we don’t have a get all blocks function and then when i do this i’ll do um

Const map equals this dot db.getdata slash world so that should just get all of it i should get the entire world uh so i’m just gonna make it green if it’s a known block yellow if it’s an unknown block and red if it’s or nothing else so now what we need to

Do is we need to make the turtle every time it moves it needs to update the world so how do i get the block inspect and here we got it state snowy false name minecraft.grass metadata zero so we got that there’s grass at this position let’s make the robot like a

Little house that you can explore or she i guess all right here’s the maze floria you go here oh look at this look at this it actually works let’s hide minecraft and navigate through the maze okay lock there walk there be a bit easier if i can turn right move move turn move Oh there’s a block above me oh this might be a race condition actually there’s no block in front of me so we go forward again now there’s a block in front of me there’s another block that direction no block that direction we move no block in front of me again we move

Okay we’re against the wall we turn we move did i just escape the maze i sure did holy [ __ ] one more thing i want to do before i end let’s make this yellow and make them all fully opaque yeah that is less confusing okay one more thing one more thing i want to

Center the camera around the player okay i know how to do this all we have to do is target equals turtle.x turtle.y turtle.z now does this center right around my player it sure does and that is so much better but now when i move it’ll actually be

Centered around the turtle chad look at this this is so cool i’m so happy about this anyway good night john thank you so much for watching come back tomorrow let’s get wasd working if ev.code equals p a so if you press a turtle dot turn left else

And then we’ll just copy this four times for all wasd and also space and shift from moving up and down uh so now we haven’t actually defined the back and the up and down function so we just have to go here and add back up down that should be all now this

Should work now i should be able to use wasd to control it w it works i want to distinguish these blocks somehow currently they’re all yellow uber suggested that i should give each block a unique color based on the hash of the block id all right so if we look at our world

Currently all we have here is color equals yellow that’s all we’re doing do props equals mesh props and color is a string and then here we can put props dot color and then right here we just need to provide the color so color equals world k.name how do i

Hash a string in javascript so now i should have a hash code function hash code world k.name modulo 360. who is that saturation will say 60 lightness will say 40. oh look it works each block has a random color obviously it’s not the correct color but it’s better than having every block

Be the same color so the next thing actually chat i need to make it so that if there’s no block it actually removes the block if this dot db dot exists data path then we delete it and then we update so this should work so now it should delete blocks

So now if we control the turtle go over the water now it removes it it replaces it with air to do place blocks break blocks craft items refuel display current fuel level show block name on mouse over drop item change inventory slot pathfinding joint items move items in inventory equip

Items interface with peripherals ooh place signs all right let’s get started so how should i implement this should i should i make it maybe like you right-click a block like there’s a little context menu that says break or should i make like buttons that say break in front break up break down

You guys think arrows that do it i’m fine with that all right then i need to add buttons to this currently all that’s in the turtle page is the world renderer apparently this div has max width let’s not do that let’s do dot props dot dot props here so anything extra

We’ll be past the div here we use our handy dandy macro do that now there should be a button and we’ll make the button be say like break okay there’s a button that says break nice i kind of want there to be three buttons left one says up middle one has the

Pickaxe rare one says down okay here we go chat let’s go it works and i can dig downwards as well and i can move now i can go on a murderous rampage what’s the next snapchat oh let’s let’s look at our to-do list break blocks check let’s work on the

Inventory now well no let’s work on the fuel level first okay so at the top we have our button group next to the button group we want a little fuel bar let’s make this whole thing a div move the button grip inside the div basically we want a linear progress bar

So we basically just want to take this and use this as fuel oh circular is so much more cool yeah i want to do that ah there we go so we’re 51 depleted on the fuel so we got fuel let’s do inventory now so we have to make a 4×4 grid is there

Like a material ui grid that i could just use and then plot my stuff into i can make there be a four by four grid of elements in a space that is fit for them to be square so grid container last name equals classes dot inventory

And then we want 16 grid items i don’t want to do those all manually so we’ll do instead turtle.inventory.map item goes to a new grid item that looks right the problem with this is that words don’t fit well in tiny boxes i’ll probably just display a big number

That indicates how many of that item i have and then when you hover over it it’ll tell you what item it is oh it does work look i hover over it says minecraft.dirt obsidian diamonds so then i want to be able to maybe right click this and then have a

Context menu come up or maybe i just click it and select slots and then i have a button up here that’s like a drop and the button that says place how are we going to signify that which slot is selected if this is the selected slot

Then the class name will be selected so now we know which slot selected okay so now what i just need to do is add some buttons that say place and drop so we’ll go to here add another button group i want to make this a different button group i think okay

Here we are we have dirt selected right now so let’s say i want to fill up this gap in the floor right here press place holy [ __ ] it works chill it works day three off stream i’ve done a bit of work here we are you hover over blocks actually tells you

What it is let’s look at our to-do list show block name on mouse over that’s done you only get items from chests we don’t have that yet let’s just do the sucking the same way we did everything else we have three buttons suck forward suck up suck down go to our

Turtle here and just add another three buttons okay so now we need an icon for sucking so you suggested kirby i don’t know how i feel about kirby there’s no grab icon okay hand then okay so we have to just import the hand i don’t see any hands wait a second

Are there any alternate names for this that i’m not seeing okay so it’s named pan tool that makes sense sure pan tool okay now we need to add the turtle suckiness to the index.tsx right here perfect so now i can suck up items let’s put a chest right here with some

Monitors in it i guess there she goes move her up to the chest and then suck it worked we got two computer craft slash peripherals uh let’s do refueling next well let’s let’s let’s work on making this bar appear a bit prettier what if i made my toolbar slightly taller and i

Filled it with vertical button groups then it would take up much less horizontal space i think that’s actually a good idea oh yeah i like this a lot better already because the up and down noun actually makes sense look at this chat this is a sign of bad

Code compare these one two three four five six seven lines of code to these seven lines of code what’s the difference this text right here and this text right here everything else is exactly the same that’s a sign that you should be using something that is not like this so i think there’s

An automatic way to do this extract to function in module scope yeah we’ll call this uh turtle button group so now i can get rid of this and look what was once 28 lines of code has now turned into four and it’s much more readable

I now need a way to move items in my inventory so how do i do a right-click menu now for each for each item in the grid right here we want to do on context menu equals handle click now if i right-click it should pop up something ah perfect

So let’s look at our to-do list equip items not done interface with peripherals not done place signs okay let’s do place signs first you press this place button if the item is assigned it pops up a little dialog box and then you enter in the design text

How do we do that well we just have to go to here we look at the place button then we have to make a dialogue so that’s pretty easy dialogue dialog content which is going to have a text box in it and then they’re going to be buttons

One button is going to say cancel and the other button is going to say place okay there we go now we got our sign so now if we place ah see perfect it opens up a dialog or it says sign text so what happens if i have a super long sign text

Does it just get cut off yeah okay so then if we do uh test backslash and test does that put on two lines it does so i can use new lines perfect to make sure that the plan succeeded we obviously needed more than one turtle problem is to make another turtle you

Need some pretty hefty materials it’s hard to get logs it’s hard to get diamonds when you can’t see the world in front of you this was going to be a big task but i did code it once i had all the materials all i needed to do was

Place down a new turtle and inject my current turtle’s code into it and turn it on it would automatically connect to me and i could control two turtles at once instead of one sabina online the world is empty she can’t see anything but it feels the urge to reproduce and so she undergoes

Mitosis boom and now there are two does floor know where she is she sure does know where she is she knows where she is and it’s accurate they meet each other for the first time turtle’s a turtle who’s love at first sight let me just go through what we’re gonna do today

Chat yeah so step one crafting crafting crafting crafting crafting crafting is quite difficult because it means that we have to throw out all the items in our inventory that don’t fit the crafting recipe what we want to do is we want to be able to move items in our inventory

I actually started working on that you’ll see if i go to inven the inventory file i made a right-click menu i just have to make it so the right-click menu allows you to move items in your inventory so let’s have a button for move all and move one maybe move all move

Half move one so now we want to do this all half one amount would be all half one all we have to do is we have to do turtle dots move items amount we don’t have a move items property yet on the turtle so let’s make that property

Should be as easy as that okay we need to do i have been putting it off we need to do the mining thing the mining thing i had been putting it off and the reason was that my current code only allowed me to control one turtle at a time there’s

Nothing in there that allowed me to switch between turtles while leaving the other one running in the background and that was pretty necessary for collecting resources on the server so it took me a while it took me 60 lines of code over here and a bunch more over here

But once it was done everything was ready i just had to call up ludwig and tell him he should install the first turtle on the server otto yo talk to me brother what’s going on today what’s the agenda what’s the plan all right all right uh the plan it’s i

Mean i don’t want to [ __ ] say it do not say it that is my ip i will sue you with the entire law of the goddamn arm oh all right it was it was it was pretty complicated on myself okay good good good good we like that we like that

Should be pretty easy on your end though okay okay i need a turtle that’s step one so we got pick turtle uh and crafting table now you just need the disk drive and the floppy disk uh we have a floppy disk nice now just a disk drive okay i made

That that’s all the materials so now the next step place down the disk drive and place the floppy disk inside the disk drive all right now you want to click on the turtle run a single line of code sure is this are we thinking is this java for this or

Uh it’s actually well i think it’s just shell shelf code shell code makes sense and there it is so okay we just got to do a obviously paceman get because we are pulling this from the code i sent you earlier we’re going to do uh yep caps matter of course

Misspelled it it’s an echo you put an x instead of what i [ __ ] all right uh now you just want to type in reboot and press enter goodbye now you break the disk drive pull it or get rid of the whole thing uh you want to have both the floppy disk and

The disk drive itself in your inventory uh and then you want to right click on the turtle and put them in the turtle’s inventory you’ll see there’s like 16 slots to the right i did that last step uh you just need to fuel the turtles so you need to get some like

Coal or coal blocks i think coal box blocks are more efficient i got five blocks that’s pretty good oh that’s more than enough that can make the turtle walk for like four 000 blocks oh it’s spinning oh why is it called psych is this like cap uh it’s from it’s from

Greek mythology i named them all after greek myths oh oh psych the god of psyche the god of control yeah probably all right and fueled up seki’s now online so now uh i can make psyche mine for you uh but it has to be in a loaded chunk i think what

Why is it moving because it’s sentient it’s it’s sentient sentient however you want to say it english measure so correctly probably are you controlling this right now yes are you gonna eventually set up that you don’t have to control it uh well i don’t have to make it mine it

Can mine automatically but uh i can also assume manual control what if it falls in lava it’s invisible it’s invincible to lava is it invincible to me no you can just break her and then she’ll be dead that’s what i thought [ __ ] i made it i made a whole thing for this

On stream uh and it is quite pog psychic can only see the blocks directly around her uh so she’s basically mapped out this tunnel that she’s dug down and some of the blocks on your floor huh we’re in boys here i am controlling psyche oh we got redstone

We needed redstone restaurants needed to self-replicate oh we have so much gold we’re so lucky we’re so lucky we got the coal early this means we’re gonna easily be able to fuel our next turtles okay let’s look at the crafting materials for a new turtle seven iron ingots two logs seven smooth

Stone one redstone one glass pane three diamonds okay biggest things here diamonds glass pane because we need sand and logs we have everything else chad oh sand sand we need sand we need sand for glass pog stick sand okay that’s enough for 16 more turtles okay this is already going so much

Better than i thought it would now we’re on the surface aren’t we this is furnace array if ludwig sees this at any point make sure you you tell me because that’s gonna be so funny ludwig’s just gonna see psyche just exploring the base just walking around using the furnaces

Are you guys excited for thanksgiving tomorrow anyone doing anything oh [ __ ] are none of you guys doing anything all right let’s start mining let’s find some diamonds chat I could tie smith but i don’t really need that at the moment oh diamonds we found diamonds we found diamonds jack let’s go one diamond here we go one diamond another diamond nice three diamonds that’s enough for one turtle anymore anymore holy [ __ ] four diamonds we’re getting lucky today boys oh another diamond

Two more diamonds holy [ __ ] where luck is [ __ ] six diamond vane seven holy [ __ ] eight eight diamonds i’m gonna give lead to these diamonds the turtle is a gift for me oh yo a couple diamonds for people thank you good psych he stole the diamonds i was giving him

The diamonds did he dupe the diamonds by accident oh hilarious accidental dupe we now have six logs that’s enough to make two diamond pickaxes oh no we got it that’s enough to make uh two chests and enough to make two turtles all right let’s go i’m gonna duplicate

Ourselves chat let’s hope this works auto why is my chat uh a buzz uh i’m about to reproduce if you wanna watch is it cool pretty cool yeah it’s gonna be a new greek god get an aerial view tell me when you’re ready hold up Boom what wait what did it just eat its creator it’s hoodies what and now i can control both of them separately or at the same time well i can make them both mine at the same time and i can take control individually do it again have more sex

Okay okay if you want wait you could split again What we were finally successful we’d found the diamonds we’d reproduced next step was just to impress michael reeves sadly just after this amazing success terpsichor disconnected from the server and died can i reboot trips or i can reboot my program but i can’t reboot her

I can try i can try to reboot terpsa core okay i think she’s in front of me but she’s invisible because she’s offline if i break her okay i have her now she’s here she’s bugged she thinks she’s in the wrong place okay i have to place her

Back in the exact direction i put her in yeah so this should be right place peripheral call front turn on trips of course back nice she’s alive jet baby is real close to the tur he’s looking for them he’s looking for them what’s he trying to do hey lon i have a question

Yeah hey what’s up who’s who’s otto otto yeah who’s otto uh he’s he’s my uh he’s a developer oh why i heard i heard there was a person on the server named otto oh i don’t see anyone on the server named otto yeah me neither are they online

No but i was told that there’s someone on the server named huh i don’t know i wouldn’t happen to know anything about this would you no well just just thought i just thought i’d ask yeah for sure for sure for sure for sure yeah more the merrier though even if you

Did find him what does that mean you know more the merrier abe’s in ludwig’s stream and ludwig was watching me wow real real nice one len it covered well abe’s in chat right now we should get this iron eat iron always oh hi hi ed uh i’m just uh we do rendering

Nothing going on here this is just a 3d model now we’re just uh coding this is a coding only stream we never play minecraft here yeah as one does as one does 3d models ignore the fact that it says turtle control panel what’s this loveliness limestone i mean uh

Orange cube not minecraft related it’s abe sillier [ __ ] here i go modeling he fell for a chat a little guy in my chat uh mentioned something about a turtle virus virus like an epidemic or something yeah like a like something about robots i noticed you’re kind of getting into the robots as well

I wouldn’t fire such a funny word um do we call like babies viruses like i mean i guess but like you know um i am fostering some turtles if you ever want to show me those turtles i do love seeing robotics and coding in minecraft it is so cool to me

Oh you want to see the turtles yeah sure all right otto show the turtles i’ll keep it a buck this turtle is more so like you know like i’m taking care of them but i’m not creating them you know what i mean i am steve jobs minus the bald and uh

And wazowski is the guy well yeah true that and wazowski’s behind the scenes doing all the work coming straight up wait that’s that’s right whatever’s next oh there he is oh you look at that his name’s hades hello what is he what is he doing i can’t control hades anymore he must have

Killed him uh what’s going on here wow this is really cool oh wow you’re just looking inside her i’m just having a little lookie in his head you know looking in his head looking in the head it’s not moving the same though did you notice that it seems like he’s

Well yeah i mean i give him a little little nap time just to look in there and then you and then you wake him right back up you know how are you like getting a large amount of turtles like for end game you know

Do you have a turtle on you michael i do you know he’s got his disk drive too oh it carries his own disk drive right so he’s gonna place down the disk drive and boot the software on to the turtle he places down chad it’s big brain he’s a savant at 17

Years old he write the code man some people are just like that they’re [ __ ] nuts the message isn’t a in a second right so that’s right so this is like the bootloader right right right right he reproduces himself that is sick welcome frisbee yeah that’s some good ideas i love that

Well it’s uh it’s all auto and uh and i just reaped all the rewards that is pretty sick that’s really cool actually man i gotta check that uh stream that is so cool he like generates a 3d map right right there’s the turtles i can switch between them by clicking

Oh that is such a cool software control with wsd wow that is [ __ ] sick it took like a week on stream i’m gonna try to make a youtube video out of it that’s so goddamn cool you got the power to wait list me right i don’t have the power to white listen

I cannot wait to see his youtube video on that after the success of the turtles it was time to program ludwig’s casino you probably have seen it so i spent the next couple days on stream doing that and eventually abe was so impressed by everything i’d done for the server that

He decided to whitelist me if you liked this video make sure to hit the like button and if you really liked it subscribe literally less than one percent of my viewers are subscribed let’s get that to at least two percent if you want to see the full

Source code for this entire project it’s on my patreon at patreon.com automated for the lowest tier you can get access to all of the code including my casino blackjack and roulette code make sure that you check out seth loves to talk on youtube who edited this whole thing

Thanks for watching all the way to the end of the video have a good day

This video, titled ‘Minecraft, but I hacked into the OfflineTV server…’, was uploaded by Ottomated on 2020-12-16 07:00:07. It has garnered 2184628 views and 109172 likes. The duration of the video is 00:43:08 or 2588 seconds.

Minecraft, but I hacked into the OfflineTV server. This was INSANE.

WATCH ME LIVE ► https://www.twitch.tv/ottomated support me on patreon ►https://www.patreon.com/ottomated follow me on twitter ►https://www.twitter.com/ottomated_ join my discord ►https://discord.gg/9mwuVNA

0:00 Introduction 1:01 Coding 29:29 Gambit Time 42:20 Conclusion

Hope you enjoy hearing about my journey from invasive species to official member of the Offline TV Minecraft SMP. I could NOT believe that I got whitelisted on the server because of this. Michael Reeves had his MIND blown by what I coded!

Edited by ►https://www.youtube.com/channel/UCHADUjRasSXYua_KZryZgVw

#ludwig #michaelreeves #offlinetv

  • Ultimate Guide: Installing Badlion Client

    Ultimate Guide: Installing Badlion Client Exploring Badlion Client for Minecraft Badlion Client is a popular Minecraft client that offers players access to various servers with mods and cool cosmetics. If you’re looking to enhance your Minecraft experience, installing Badlion Client is a great way to do so. Here’s a step-by-step guide on how to download and install Badlion Client for Minecraft. Downloading Badlion Client To begin the process, open your browser and navigate to the official Badlion Client website. Look for the download button and click on it to start the download process. Make sure to follow any on-screen instructions to complete the download… Read More

  • Spot the Change in Mikeize’s Minecraft Maze! Aha Moments Await! #MinecraftMadness

    Spot the Change in Mikeize's Minecraft Maze! Aha Moments Await! #MinecraftMadness In the world of Minecraft, things are changing fast, Can you spot the differences, can you make them last? Mikeize is here, with updates galore, Each change, each shift, he’ll help you explore. From armor stands dancing to bugs that appear, Transparent urban legends, things that aren’t clear. Exit 8 style maps, elevators that rise, Endora’s secrets, hidden in disguise. So come along, join the fun, In the world of Minecraft, there’s always something to be done. Spot the changes, solve the quiz, With Mikeize as your guide, you can’t miss. Read More

  • Discover the Ultimate Minecraft Experience at Minewind Server

    Discover the Ultimate Minecraft Experience at Minewind Server Welcome to Newsminecraft.com! Today, we stumbled upon a fascinating YouTube video titled “100 hari di Minecraft tapi Diamond Only” where the player embarks on a challenging journey to survive 100 days in Minecraft hardcore mode, but with a twist – Diamond Only! The dedication and creativity showcased in this video are truly inspiring. As we watched the player navigate through the treacherous world of Minecraft, we couldn’t help but think about the endless possibilities that await in the vast universe of Minecraft. The thrill of exploration, the satisfaction of overcoming challenges, and the joy of building something truly remarkable… Read More

  • Minecraft Fright Night: Horror Mods Gone Wrong!

    Minecraft Fright Night: Horror Mods Gone Wrong! In the shadows of Minecraft, horror mods do dwell, A chilling tale of terror, a story to tell. Herobrine and Cave Dweller, lurking in the night, Will our hero survive, or succumb to fright? The chills run deep, the fear is real, In this virtual world, where nightmares reveal. But with courage and skill, our hero fights on, In this game of survival, until the break of dawn. So hold on tight, as the story unfolds, In the world of Minecraft, where fear takes hold. But remember, it’s just a game, a virtual fright, So enjoy the thrill, and… Read More

  • Crafting Chaos: AJR’s Inertia in Minecraft

    Crafting Chaos: AJR's Inertia in Minecraft In the world of Minecraft, where blocks reign supreme, Updates and news are like a gamer’s dream. I’ll be your guide, with rhymes that ignite, Crafting stories that shine so bright. From new mobs to biomes, and everything in between, I’ll keep you informed with a playful sheen. So share with your friends, let the news take flight, In the world of Minecraft, where we game all night. So leap into the verse, no need for a start, For the crowd knows your face, your beats, and your art. Just spin the finest rhymes, let the story sing, In… Read More

  • Unbelievable: Diamonds Found While Mining!

    Unbelievable: Diamonds Found While Mining! Exploring the Depths of Minecraft: Unearthing Diamonds While Mining! Embark on a thrilling adventure in the virtual world of Minecraft, where players can delve into the depths of the earth in search of precious resources. One of the most coveted treasures in the game is diamonds, a rare and valuable gem that can be used to craft powerful tools and armor. The Excitement of Mining in Minecraft When players venture underground to mine for resources, they never know what they might uncover. From coal and iron to lapis lazuli and redstone, the possibilities are endless. However, stumbling upon diamonds… Read More

  • Join Minewind Minecraft Server for Epic Builds and Challenges!

    Join Minewind Minecraft Server for Epic Builds and Challenges! Welcome to NewsMinecraft.com! If you’re a fan of Minecraft and love watching videos like “Minecraft: NOOB vs PRO vs HACKER SPIDER MAN STATUE HOUSE BUILD CHALLENGE,” then you’ll definitely want to check out Minewind Minecraft Server. With a community of dedicated players and a wide range of gameplay options, Minewind offers a unique and exciting Minecraft experience that you won’t find anywhere else. Whether you’re a noob, a pro, or even a hacker, Minewind has something for everyone. From build challenges to epic battles, there’s always something fun and exciting happening on the server. Plus, with regular updates and… Read More

  • PortalCraft: Minecraft Server Sneak Peek

    PortalCraft: Minecraft Server Sneak Peek Welcome to PortalCraft – A Minecraft Adventure Like No Other! Step into the extraordinary world of PortalCraft, where the boundaries of Minecraft are shattered, and a realm of endless possibilities awaits. This unique server offers players a chance to embark on epic adventures through dimensional portals, conquer formidable bosses, and uncover the mysteries of the Multiverse. A New Dimension of Gameplay If you find vanilla Minecraft progression too easy or mundane, PortalCraft is the perfect escape. Say goodbye to speedrunning diamond armor and defeating the ender dragon in record time. In this interdimensional universe, the game takes on a… Read More

  • Exploring Philosophy in My World with 梦轩dada

    Exploring Philosophy in My World with 梦轩dada Exploring the Philosophical Side of Minecraft Introduction to a Philosophical Village In the world of Minecraft, a unique village has emerged, filled with philosophical figures like Billy King and Wan. These characters, with their distinct personalities, add a touch of intellectual flair to the game. The Philosophical Arena Venturing into the philosophical arena, players engage in battles of wit and wisdom. Characters like Dong Dawei and Billy King face off in intense showdowns, showcasing their philosophical prowess. Philosophical Soundbites Amidst the battles, players are treated to unique soundbites from the characters. From philosophical musings to humorous banter, the dialogues… Read More

  • “Mina, mina” Minecraft video clip: Crafty fun in a blocky world!

    "Mina, mina" Minecraft video clip: Crafty fun in a blocky world! In the world of Minecraft, where creativity thrives, AI creates music videos that come alive. With stable diffusion and chatgpt in play, The possibilities are endless, every day. Children’s songs and cartoons, all in one, Entertainment and fun, a job well done. Minecraft fans, rejoice, in this new sight, AI’s creativity, shining bright. So what do you think of this AI-made show? Let us know in the comments below. For more Minecraft news, stay tuned in rhyme, As we bring you updates, every time. Read More

  • Alberram – Fantasy Roleplay Server SMP Whitelist

    Alberram – Fantasy Medieval Roleplay Server Link: Join our discord server Alberram is a fantasy medieval roleplay server that offers creative freedom with simple lore and limitless imagination. Features: Completely Free: No donations or subscriptions required. Active Staff Team: Responsive and transparent staff members. Whitelist Process: Quick and fair character approval process. Unique Plugins: Enhance gameplay with custom plugins and immersive features. Lore Snippet: The world of Alberram is on the brink of war as regions fight for land on a dying continent. Will you choose to fight, escape, or seek peace in the newly discovered land of Alberram? Have… Read More

  • 🎖️🐺 WolvesEmpireSMP 🐺🎖️|[ 1.20.4 ]|, |[ Survival ]|, |[ RPG Features ]|, |[ Java & Bedrock ]|

    ————————————–🐺🎖️WolvesEmpireSMP🎖️🐺————————————–Have you ever wanted to be in a Wolfpack or Start Your Own?Now you can, Join Us Today and become the True Alpha Wolf—————————————————————=============================🏹What Kind Of Server Is This?=============================WolvesEmpireSMP is a Survival server with a few plugins to make it more interesting and with community that believes in teamwork and helping others. Our server support both Java & Bedrock=============================================🗡️What Kind Of Features Does The Server Have?=============================================We have one main survival world that people can mostly play on. There is a feature where players can join multiple survival worlds if they don’t want to play on the main world. We also… Read More

  • Minecraft Memes – Wilbur’s spicy Minecraft meme statement

    Looks like Wilbur’s joke fell flat, just like this meme’s rating! Read More

  • Upgrade to Rockstar Status in Bloons TD 6!

    Upgrade to Rockstar Status in Bloons TD 6! Welcome, gamers, to our channel so grand, Where we explore worlds, both virtual and planned. From Roblox to Minecraft, we’ll show you the way, And in BTD6, we’ll make those bloons pay. Join Brother Ian and Ethan, a dynamic duo, With gameplay that’s sure to make you go woo-hoo! Subscribe to our channel, hit that notification bell, For gaming adventures that we love to tell. So come along, let’s rock and upgrade, In the gaming world, where we never fade. Together we’ll conquer, together we’ll win, So join us now, let the fun begin! Read More

  • MrBeast’s Portal to Nowhere: Server Shutdown! 😂 #minecraft #meme

    MrBeast's Portal to Nowhere: Server Shutdown! 😂 #minecraft #meme When you finally find the MrBeast portal in Minecraft but all it does is take you to a server that’s turned off…talk about a letdown! #minecraftfail #MrBeastPortalGoneWrong 😂🎮 Read More

  • Spicy Showdown: Color Vs. | Ep. 2

    Spicy Showdown: Color Vs. | Ep. 2 Welcome to Color Versus! Welcome to Color Versus, a thrilling Minecraft series where friends face off in various challenges! In this episode, the competition heats up as teams battle it out in a series of intense challenges. Let’s dive into the action-packed world of Color Versus! Life & Death Pond Timelapse In the Life & Death Pond Timelapse, viewers are treated to a mesmerizing display of creativity as the teams showcase their building skills. Watch as they bring their visions to life in this captivating timelapse video. Nether Build Timelapse The Nether Build Timelapse takes us on a journey… Read More

  • Discover the Ultimate Minecraft Experience at Minewind Server

    Discover the Ultimate Minecraft Experience at Minewind Server Welcome to NewsMinecraft.com, where we bring you the latest updates and tips for all things Minecraft! Today, we stumbled upon a fantastic YouTube video titled “How To Build The Awesome Survival House On Water in Minecraft #MinecraftSurvivalHouseTutorial.” While the video itself may not be about Minewind Minecraft Server, it got us thinking – what better way to showcase your building skills and creativity than on a server like Minewind? Imagine constructing your dream survival house on water, just like in the video, but with the added thrill of interacting with other players and exploring a vast, ever-changing world. On… Read More

  • Ultimate Minecraft Gun Mod for Bedrock

    Ultimate Minecraft Gun Mod for Bedrock The Best Minecraft Gun Mod for Mcpe/BE 1.20 | Actual Guns Mod Bedrock Minecraft enthusiasts, get ready to take your gameplay to the next level with the Actual Guns Mod for Minecraft Bedrock Edition. This mod introduces a wide array of realistic firearms into the game, adding a new dimension of excitement and strategy to your adventures. Cinematic Showcase Experience the thrill of the Actual Guns Mod through a captivating cinematic showcase that highlights all the weapons at your disposal. From pistols to rifles, each firearm is meticulously designed to bring a sense of authenticity to your Minecraft world…. Read More

  • TheMisterEpic – Insane Ownership of 232K Player Minecraft Server

    TheMisterEpic - Insane Ownership of 232K Player Minecraft ServerVideo Information This video, titled ‘What It’s Like to Own a Minecraft Server with 232,000 PLAYERS…’, was uploaded by TheMisterEpic on 2024-05-12 03:18:33. It has garnered 150790 views and 9539 likes. The duration of the video is 01:12:05 or 4325 seconds. For the past 3 years, I’ve been running a public minecraft server. We’ve had over 232,000 players join, hundreds of DDOS attacks, players hacking into my account, dozens of gamebreaking exploits, famous youtubers joining and an endless slew of crashes/issues. Today I tell you ALL about it. JOIN THE SERVER (1.8-1.20): og-network.net – Bedrock Port: 19132 – Discord: https://discord.gg/G7zq6NPZnM… Read More

  • SkyBoundSMP EP 13: Enrich and Embellish

    SkyBoundSMP EP 13: Enrich and EmbellishVideo Information This video, titled ‘Enrich and Embeliish { SkyBoundSMP EP 13 }’, was uploaded by Artfulrenegade on 2024-03-25 01:17:11. It has garnered 651 views and 70 likes. The duration of the video is 00:53:32 or 3212 seconds. Hello! Welcome to Episode 13 of Rune’s journey on BoundSMP, a lore based multiplayer Minecraft server. Today Rune meets a new avian and maybe faces a bit of an interrogation on his feelings towards a certain magpie! Watch the lore LIVE over on my twitch https://www.twitch.tv/artfulrenegade Check out these playlist to catch up on past lore! SkyBound: https://youtube.com/playlist?list=PL3t47ta576ZhRpy5rafBSC9rH7AH4Y1D8&si=yxTckySu4muaJ3aF Find me elsewhere in… Read More

  • Minecraft Mayhem: Epic Bedwars & Skywars Action!

    Minecraft Mayhem: Epic Bedwars & Skywars Action!Video Information This video, titled ‘🔴Minecraft Live🔴 – Hive – Bedwars – Skywars – Custom Servers – Minecraft 1.21 Survival Realm’, was uploaded by Raptor Gamez on 2024-05-11 03:21:54. It has garnered 166 views and 18 likes. The duration of the video is 03:08:06 or 11286 seconds. Minecraft Hive with Viewers | Join Now Thanks for watching, stay epic gamers. Bedwars – Skywars – Treasure Wars – Survival Games – Custom Servers Discord: https://discord.gg/xCzr7MZAyV Thank You for 3000 Subscribers! please subscribe I do use Horion, I use it for utility purposes, I have not and will never condone hacking or… Read More

  • Play with RoroLeZozo & @kerwash_ in Minecraft

    Play with RoroLeZozo & @kerwash_ in MinecraftVideo Information This video, titled ‘Viens jouer avec nous! (Minecraft) ft. @kerwash_’, was uploaded by RoroLeZozo on 2024-02-07 20:12:06. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. IP: RoroUniv.aternos.me version (1.20.4) – crack authorized – no cheat (ban-ip 30 days) Don’t hesitate to subscribe! Discord… Read More

  • Insane Sword POWER Takes Over Minecraft SMP!

    Insane Sword POWER Takes Over Minecraft SMP!Video Information This video, titled ‘”” How This Sword Helped Me To Take Over This Minecraft SMP “‘, was uploaded by Mine Playz on 2024-01-05 04:30:09. It has garnered 932 views and 37 likes. The duration of the video is 00:12:43 or 763 seconds. I RUINED THIS WHOLE MINECRAFT SMP BY A SWORD NEW VIDEO WILL BE GREAT,BETTER AND SOON! JOIN DISCORD DISCORD LINK:- https://discord.gg/DxaMRGzpV8 COPYRIGHT DISCLAIMER:- Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted… Read More

  • Unleash Your Inner Sorcerer in Witch Wars: Potions and Spells! 🔮 #minecraft

    Unleash Your Inner Sorcerer in Witch Wars: Potions and Spells! 🔮 #minecraftVideo Information This video, titled ‘Witch Wars: Potions and Spells Duel #minecraft’, was uploaded by Infinity Gamerz on 2024-03-25 14:00:28. It has garnered 85 views and 2 likes. The duration of the video is 00:00:41 or 41 seconds. Witch Wars: Potions and Spells Duel #minecraft minecraft,minecraft gameplay,minecraft gameplay no commentary,minecraft full game,minecraft longplay,minecraft but,minecraft mod,camman18 minecraft,minecraft speedrun,minecraft challenge,minecraft playthrough,minecraft cozy gameplay,gameplay,minecraft gameplay relaxing,minecraft but challenge,minecraft gameplay no talking,minecraft relaxing gameplay,minecraft manhunt,minecraft but i cant touch grass,minecraft no commentary,minecraft speedrunner #FreeFire #FreeFireGameplay #FreeFireHighlights #FreeFirePro #FreeFireTips #FreeFireTricks #FreeFireMoments #FreeFireClips #FreeFireBattlegrounds #FreeFireBestMoments #FreeFireFunnyMoments #FreeFireRankPush #FreeFireSquad #FreeFireSolo #FreeFireDuo #FreeFireLive #FreeFireStreamer #FreeFireTutorial #FreeFireUpdate #FreeFireNewSeason Read More

  • VR gaming x143k – 1 Like for Shizo REVEAL! #MinecraftPE #Shorts

    VR gaming x143k - 1 Like for Shizo REVEAL! #MinecraftPE #ShortsVideo Information This video, titled ‘I want for 1k like #minecraftpe #gaming #shortsjust one like #minecraftpe #shorts’, was uploaded by vr gaming 143k on 2024-04-22 01:24:37. It has garnered 5265 views and 397 likes. The duration of the video is 00:00:09 or 9 seconds. #minecraft #shorts #minecraft #shorts #tages #minecrafthelp #helpshorts #emozgaming #emozgamingshorts #trendingshorts #trend #emozshorts #minecraftgamingshorts #youtubeshorts #minecraftalwayshelp #alwayshelp #helpingshorts #helpingdog #minecrafttrend #minecraftshorts #minecrafttiktok #minecrafttrendingshorts #ytshorts #minecraftsad #minecraftsadshorts #storyshorts #minecraftstory#Minecraft gaming link #minecraft kese khele #minecraft download #minecraft video #minecraft long video# video dalne ka shi tarika #Long videos dalne ka sahi time #badi video kitni baje dalna chahiyein… Read More

  • INSANE school build challenge – NOOB vs PRO in Minecraft

    INSANE school build challenge - NOOB vs PRO in MinecraftVideo Information This video, titled ‘JJ And Mikey NOOB vs PRO SCHOOL HOUSE Build Challenge in Minecraft’, was uploaded by muzin on 2024-04-05 10:00:46. It has garnered 61801 views and 231 likes. The duration of the video is 03:59:57 or 14397 seconds. JJ And Mikey NOOB vs PRO SCHOOL HOUSE Build Challenge in Minecraft This is not an official Maizen channel, we make fan videos with JJ and Mikey. Our channel is exclusively for fans of Maizen. We are not trying to impersonate his personality, we just want to add new and interesting stories to his characters. We hope you… Read More

  • Ultimate Minecraft Tricks to Steal

    Ultimate Minecraft Tricks to StealVideo Information This video, titled ‘Minecraft:为写作文不择手段!《方块轩热梗合集》【方块轩】’, was uploaded by 方块轩 on 2024-03-27 10:30:31. It has garnered 1083 views and 30 likes. The duration of the video is 00:02:47 or 167 seconds. Hi, I am Fang Fangxuan! 🌟 As a creator in the field of Minecraft, I bring you the most unique MC animations! 🎬 Our channel focuses on integrating hot internet memes and delivering happiness with funny humor! 😄 This is the only official channel of CubeXuan. The videos posted by other channels are pirated and unauthorized! 🚫 Wonderful original videos are updated every day, come and follow us and… Read More

  • Chromatica SMP – New Season – Vault Hunters Modpack – 1.18.2

    Welcome to Chromatica SMP! Welcome to the Chromatica SMP, a newly launched Minecraft SMP running Vault Hunters Version 3. Get started by joining our Discord server here to obtain our IP address and login details. About Chromatica SMP Season 2 of Chromatica SMP started in Feb. 2024. Players can enjoy playing the Vault Hunters modpack for free on our server. We offer server-wide farms, shops, a transportation hub, and additional mods for a quality gameplay experience. Vault Hunter Modpack Features Collect 25 unique artifacts to unlock the final vault and beat the game. With RPG elements, progress in different ways… Read More

  • Minecraft Memes – Suck it, Java AND Bedrock players!

    Minecraft Memes - Suck it, Java AND Bedrock players!It’s like the ultimate face-off between the two sides of Minecraft players, but at the end of the day, we all just want to mine diamonds and build epic creations together! Read More

  • Subway Surfers Minecraft Mashup: Dark Mode Dash

    Subway Surfers Minecraft Mashup: Dark Mode Dash In the dark of night, Subways Surfers take flight, Minecraft world, a canvas, imagination in sight. Create, build, explore, in your own unique way, Let your creativity shine, let your ideas play. Subscribe to the channel, join the fun, Minecraft challenges, never to be outdone. Hello Kitty, Masha and the Bear, all in the mix, Map nuances of Indonesia, a Minecraft fix. So leap into the verse, let your story sing, In every pulsing line, let the truth take wing. Crafting Minecraft news with rhymes that ignite, In every update, keep the essence of gaming bright. Read More

  • Minecraft WTF Meme: Realistic Minecraft Gone Wild! 😂

    Minecraft WTF Meme: Realistic Minecraft Gone Wild! 😂 When you’re playing Minecraft and suddenly realize you’ve been mining for hours without realizing it, and now it’s time to face the real world again. Gegagedigedagedago! Read More

  • Join Minewind: Where Epic Battles Await!

    Join Minewind: Where Epic Battles Await! Welcome to NewsMinecraft.com! Today, we stumbled upon a fascinating YouTube video about starting a war in Minecraft SMP. The intensity and drama of the gameplay showcased in the video left us intrigued and wanting more. It made us realize the thrill and excitement that comes with multiplayer Minecraft servers. Speaking of Minecraft servers, have you heard about Minewind? It’s a unique Minecraft server that offers a thrilling PvP experience unlike any other. With a vibrant community and exciting gameplay features, Minewind is the place to be for all Minecraft enthusiasts. If you’re looking to immerse yourself in a dynamic… Read More

  • Expanding River Adventure in Minecraft

    Expanding River Adventure in Minecraft Widening the River Around the Base in Minecraft About CasualCraft SMP CasualCraft is a private Minecraft survival multiplayer server created by members of the Spawn Chunks podcast discord. While not officially affiliated with the podcast, the server aims to provide a fun and collaborative environment for players. Running on the latest version of Minecraft with Fabric mod loader, the server includes quality-of-life mods and data packs to enhance the gameplay experience. Meet the CasualCraft Members Joining Jumbosale on the CasualCraft server are fellow players like CrimsonCrafterTTV, Kija, paulbo_baggins, RokutaOfEn, and rTuple. Each member brings their unique playstyle and creativity… Read More

  • Mitzitime takes on Neuro-sama’s exclusive Minecraft server!

    Mitzitime takes on Neuro-sama's exclusive Minecraft server!Video Information This video, titled ‘Neuro-sama sub only Minecraft server EXPLORATION’, was uploaded by mitzitime on 2024-03-03 06:37:59. It has garnered 489 views and 29 likes. The duration of the video is 09:56:37 or 35797 seconds. #jjk #anime #fyp #animememes #girls #gojo #deathnote #light #lawliet #ldeathnote #animememe #neurosama #minecraft #aivtuber #vtuber #envtuber i’ll take a potato chip and eat it exploring neuro-sama’s minecraft server! Read More

  • Linencello’s Friend Tier List PVP

    Linencello's Friend Tier List PVPVideo Information सो गाइस आज की वीडियो में मैं इन सभी प्लेयर की पीवीपी रैंकिंग करने वाला हूं कि कौन कितना अच्छा पीवी पीयर है तो सबसे पहले नंबर पहले नंबर पे है टी मो गेमिंग तो टीम गेमिंग अच्छा नहीं खेलता है मतलब वो थोड़ा नूब है उसको नूब में डालूंगा मैं एवरेज में डालूंगा निवृति भाई एवरेज है वो ठीक खेल लेते हैं थोड़ा बहुत मतलब पीवीपी आर नहीं है इनमें से यह भी और मतलब एवरेज है पीवीपी के सिवाया है बाकी सब में और यह नॉट टॉप अप नॉट टॉप अप गुड प्लेयर है व विनीश… Read More

  • “INSANE BEDWARS LIVE! 💥 SG GAMER 3.0 🔥 600 SUB GOAL!” #Minecraft

    "INSANE BEDWARS LIVE! 💥 SG GAMER 3.0 🔥 600 SUB GOAL!" #MinecraftVideo Information This video, titled ‘BEDWARS LIVE !!!! SUB GOAL :600… #minecraft #live #bedwarsmalaalam’, was uploaded by SG GAMER 3.0 on 2024-04-14 22:35:29. It has garnered 96 views and 8 likes. The duration of the video is 01:30:30 or 5430 seconds. DISCORD: https://discord.gg/krbX9JpXCA mcslp.pika.host My s1 lets play world play list : https://www.youtube.com/playlist?list=PLroOC4vwIkQ4YCpVHHVwb_S4n6Kr1V9qr My letsplay series season 2 play list : https://www.youtube.com/playlist?list=PLroOC4vwIkQ4FcN6HoqbDZjN51pn8vHgR @MrBeastGaming @Sudhy @Firetekzteepori @MrKidPinky #minecraft #bedwars #live #stream #gaming #epic #clutchplays #intensebattles #strategy #community #fun #entertainment #anarchy #arjunmp #arjunmpanarchy #bedwars #bedwarsmoments #bedwarsmalaalam #minecraftlive #minecraftlivestream #malayalam #malayalamgaminglive #malayalamgamingcommunity #k4f #dribbles #pikaminecraft Read More

  • EPIC FAIL! Surrounded by Lava in Sky Factory 4!

    EPIC FAIL! Surrounded by Lava in Sky Factory 4!Video Information [Music] d [Music] all right all right and good day welcome back to another Minecraft stream welcome welcome Hey step already in there today hello we are back in Sky Factory 4 wh my head collection’s coming along nicely we’re gonna have to do something with these heads I haven’t decided exactly what I want to do with them this time but I got so many feel I need to be somewhere decorative I just don’t know what to do with them yet um so today what I do today let’s talk about today so I spent a… Read More

  • AdictBoiz – ULTIMATE MINECRAFT FAIL 😱 | MUST WATCH!!

    AdictBoiz - ULTIMATE MINECRAFT FAIL 😱 | MUST WATCH!!Video Information ‏oh no This video, titled ‘ohh nooo 😱 why always with me in Minecraft #shotrs #minecraft #minecraftshorts’, was uploaded by AdictBoiz on 2024-02-22 13:39:00. It has garnered 32587 views and 546 likes. The duration of the video is 00:00:15 or 15 seconds. ohh nooo 😱 why always with me in Minecraft #shotrs #minecraft #minecraftshorts minecraft minecraft shorts mcpe mcjava माइनक्राफ्ट minecraft but minecraft mod shorts minecraft minecraft speedrun minecraft facts minecraft challenge minecraft seed camman18 minecraft minecraft but challenge minecraft how to minecraft rarest minecraft update minecraft but i cant touch grass minecraft 1.20 minecraft but you cant… Read More

  • Wild Monday Night Stream with Emma Leann! Minecraft Madness!

    Wild Monday Night Stream with Emma Leann! Minecraft Madness!Video Information This video, titled ‘Monday Night Stream!! Minecraft and more!!’, was uploaded by Emma leann on 2024-02-13 06:28:45. It has garnered 52 views and 11 likes. The duration of the video is 04:15:42 or 15342 seconds. (my history w/ Minecraft ) I was heavy into Minecraft 2011-2016… then off and on would go through and heavily play it again but now it’s been a solid couple years since I’ve touched the game. I’m so excited to try all the new updates! Thanks for watching! DISCORD discord.gg/9mH9cQQMxj INSTAGRAM MAIN: ems_leann ART: cosmic_coloralchemy BIRDS: ghost_thebudgie #gaming #minecraft #survival #letsplay #pickaxe #bedrock… Read More

  • Aphmau in Danger from Smurf Cat in Minecraft 360°!

    Aphmau in Danger from Smurf Cat in Minecraft 360°!Video Information This video, titled ‘WHO Will Save APHMAU From Smurf Cat Gegagedigedagedago in Minecraft 360° ?’, was uploaded by Lolpostor on 2024-05-11 19:00:13. It has garnered 2155 views and 18 likes. The duration of the video is 00:03:17 or 197 seconds. WHO Will Save APHMAU From Smurf Cat Gegagedigedagedago in Minecraft 360° ? 💚 See also these COOL videos: 😊 HOW APHMAU Became the ALPHABET LORE F in Minecraft 360: https://www.youtube.com/watch?v=w43z7rGP4T0 😊 Shy Guy vs APHMAU, Maizen JJ & MIKEY in Security House Battle – Minecraft 360°: https://www.youtube.com/watch?v=K2Nic3xa1qM 😊 APHMAU GHOST KISS ON in Minecraft 360°: https://www.youtube.com/watch?v=-6fYHJIEIsQ 😊 APHMAU… Read More

Ottomated – Minecraft, but I hacked into the OfflineTV server…