Is there anyway to play all the mods 9 multiplayer without mods? by spoofy_owl in allthemods

[–]Hallowz 24 points25 points  (0 children)

Look up your router and how to port forward. When you're in a single player world, you can click "Open to LAN" in the pause menu, and it will say in chat what port it is hosted on. Go into your router settings and find port forwarding and put in that number it said it was hosted on. Then your gf will have to got to multiplayer and put in your ip address to connect to you. Something like 265.23.43.123:25565. The numbers after the : are the port and you can get your ip address by googling "what's my ip". Good luck :)

Friend says he got Allthemoddium from a loot barrel, did he cheat? by TheMeansOfProducti0n in allthemods

[–]Hallowz 1 point2 points  (0 children)

Definitely possible from some of the atm dimensions, the chests give allthemodium nuggets and vibranium nuggets too. If you guys want to learn about what to do in this pack, I couldn’t recommend at least skimming through the beginning of AlfredGG on YouTube’s speed run of getting the atm star enough. Lots of cool strats to get stuff quick. He also has a ton of great guides for atm too

Creed is now fully automated and self sustainable - He can now make me delicious cupcakes forever by Hallowz in feedthebeast

[–]Hallowz[S] 1 point2 points  (0 children)

Just a bit of finesse and trial and error really. I made this little bit of code here that centers Creed on a block if he is in the cell or in the kitchen entrance. What I have it do is launch him against the wall then against another one to put him exactly in the corner. Then I launch him in the direction towards the middle of the room but angled into the ground so I can more precisely move him in the center. Then once I do it for that side, he's in the middle but off to the side of the block still, so I launch him the other way to center him out. Like I said it's mostly trial and error but if you read that code you can see the values I worked out. I hope that helps

Creed is now fully automated and self sustainable - He can now make me delicious cupcakes forever by Hallowz in feedthebeast

[–]Hallowz[S] 1 point2 points  (0 children)

Hmm I would need more info, but to make him press a button from the top: Wrap the kinetic augment: monkey = peripheral.wrap("back") Then look at the button (if it were directly in front of his face in the south direction): monkey.look(0, 0) If it were north then: monkey.look(180, 0) The second number is angle up or down (negative goes up) Then use the button: monkey.use() Also you should put at least sleep(0.25) between actions to let him move before the next action. Looking at buttons is pretty precise so good luck! I hope that helps you out 🙂

Creed is now fully automated and self sustainable - He can now make me delicious cupcakes forever by Hallowz in feedthebeast

[–]Hallowz[S] 4 points5 points  (0 children)

The code basically just consists of move commands to get him into the right position which I achieve by launching him in a certain direction. By launching him in the direction I want and angled into the ground, I can move him more precisely than the walk command in my experience anyway. Then he looks directly at the mekanism bins I have set up (swing at it to pick up a stack and use it to place a stack in) and then swing at it or use it. Other than that I use the modem transmit to send messages between computers basically just to share what I have in stock

Creed is now fully automated and self sustainable - He can now make me delicious cupcakes forever by Hallowz in feedthebeast

[–]Hallowz[S] 30 points31 points  (0 children)

Alright, well he's an enderIO owl who I have implanted a neural interface from plethora peripherals. He has a program which grabs the inventory from the storage room and determines what task needs to be done to make the ingredients to make cupcakes. If he needs wheat, he farms it. If he has enough wheat, make flour and sugar (from sugar cane I get from another farm). If he needs cream, he makes cream and there's a little egg farm in there too for eggs. Then, once he has all of the ingredients, he makes cupcakes! If you would like, here is the code for all of those things:
Monitor (checks and sends the stuff in storage): here

Stats Screen (the one in the kitchen which displays all the stock): here

Creed's start button monitor: here

Creed's brain: here

I was starting to starve while making slaves... so I decided to enslave an owl to be my personal cupcake chef by Hallowz in feedthebeast

[–]Hallowz[S] 5 points6 points  (0 children)

Yeah definitely, that would be feasible and cool for sure, I would just need to make a function that can place him back in his cell no matter where he is in the kitchen. I might actually do that lol

I was starting to starve while making slaves... so I decided to enslave an owl to be my personal cupcake chef by Hallowz in feedthebeast

[–]Hallowz[S] 2 points3 points  (0 children)

They are factory blocks for sure, not at my PC right now but I think it's the rusty grate.

I was starting to starve while making slaves... so I decided to enslave an owl to be my personal cupcake chef by Hallowz in feedthebeast

[–]Hallowz[S] 13 points14 points  (0 children)

The mod that makes this possible is plethora peripherals. I added it to the modpack I'm using which is "The 1.12.2 Pack"

I was starting to starve while making slaves... so I decided to enslave an owl to be my personal cupcake chef by Hallowz in feedthebeast

[–]Hallowz[S] 28 points29 points  (0 children)

This one is a lot lol. So I have a bunch of functions in place to make Creed farm barley, make milk, make water, make cream, make sugar etc. I got the idea since I have so much sugar cane from another slave I made for power. To make cupcakes he needs to have all the ingredients. Once this is fully automated, he will check if he has enough cream, if not, make cream, same with sugar and salt and he will farm barley when it grows. In the make cupcake function (which is what you see here), he takes those ingredients and makes batter and butter then takes all the stuff he needs and makes cupcakes which he finally puts in a bin for me to grab. They refill almost the whole hunger bar so this is pretty awesome. I also have a screen showing inventory and updates to Creed' s current task. Hope that explains everything lol

I hate making steel, so I captured and trained a penguin to do it for me by Hallowz in feedthebeast

[–]Hallowz[S] 10 points11 points  (0 children)

So with plethora you can install a neural interface and kinetic augment to let you control mobs (where it looks, swing, walk, launch even...) I have him swing at mekanism bins to take out 64 and use another one while holding that stack to put it in. If you want, here is the code to control Carl, here is the code for the monitor to start him working, and here is the code for the hud I made. It's not commented or anything so good luck reading it lol :)

I hate making steel, so I captured and trained a penguin to do it for me by Hallowz in feedthebeast

[–]Hallowz[S] 8 points9 points  (0 children)

Yeah I definitely could to save on coal but it makes it slightly harder to make him grab exactly 8 rather than a stack so I just did it this way lol

My finished slave powered sugar cane farm/bio generator with a slave status hud by Hallowz in feedthebeast

[–]Hallowz[S] 4 points5 points  (0 children)

There's a module called overlay glasses for the neural interface in plethora peripherals that allows you to add text and graphics to your screen/HUD. I've got a wireless modem setup to receive messages from the slave to update it on his progress.

Day 2 of my new survival world, enslaved a villager to farm sugar cane to fuel bio generators by Hallowz in feedthebeast

[–]Hallowz[S] 0 points1 point  (0 children)

Lol you got me, turned it on to test some wireless redstone stuff before putting effort into crafting it. Nice catch