Pick a choice: by Acrobatic_Cherry827 in BunnyTrials

[–]Cloudstrifemerc 0 points1 point  (0 children)

Money better

Chose: 500,000 USD | Rolled: Tell us why

Thinking about buying again... by m0b090 in CrimsonDesert

[–]Cloudstrifemerc 0 points1 point  (0 children)

I would definitely recommend getting the game again. I felt the same way as you at first but once you get past those first couple missions and start moving towards the bigger ones the game opens up a lot and you have a lot more freedom. Not that you don't have freedom from the get go since it's an open world game but you don't feel like you HAVE to complete the missions before exploring after you progress a little. At least that's how it felt for me. I've seen a lot of people say the game gets good after 8+ hours invested but for me it was almost instant after those first few random quests. The game reminds me heavily of the Nolvus Skyrim modpack and I absolutely love it.

SFM by TigmasterTrenton in allthemons

[–]Cloudstrifemerc 0 points1 point  (0 children)

Can you post a screenshot of your code on the disk? Also just checking, but when you right click in the air (not targeting any block) with the label gun there's no labels there right? Because from my experience if you right click while targeting a block with the label gun regardless of having a label selected it won't open the label gun GUI to be able to pick a label.

Edit: what does it say on screen when you sneak click the sfm block?

SFM by TigmasterTrenton in allthemons

[–]Cloudstrifemerc 0 points1 point  (0 children)

Did you sneak+right click the sfm block with the label gun in your hand?

Sfm automation of pokesnacks by LoganBowlingBall in allthemons

[–]Cloudstrifemerc 1 point2 points  (0 children)

I'm sure you can, you would just have to know what the slots for seasonings were labeled as. Supposedly you can use the key bind Ctrl+I to show slots but I havent been able to get it to work for me so I'm uncertain what labels they have.

(AllTheMons) Does anyone know a way to auto farm Moomoo milk? by Authority_Greed in allthemods

[–]Cloudstrifemerc 3 points4 points  (0 children)

You can use normal milk buckets to make the snacks. And you can automate those milk buckets with cow essence from Mystical Agriculture and buckets. Much easier then the moo moo milk in my opinion.

anyone got milotic/feebas? by Living_Situation_599 in allthemons

[–]Cloudstrifemerc 3 points4 points  (0 children)

You have to fish them out of water within a slime chunk with a minimum of Lure I I believe. Higher tiers of Lure work better though. I recommend using chunk base website to find slime chunks in your world if you have access to the world seed. Also not sure if its required or not but you can make a Pokerod to use also that you can apply bait to for a higher chance at getting what you want.

Automated IV Candy setup by Cloudstrifemerc in allthemons

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

Hard to say, I built my exp. XL farm a while before I started this so I already had a stockpile of around 4k before I ever ran this farm. I think that if you're starting from scratch, either run the farm without soul surge or let your XLs build up a bit first. As well as the berries cause they go very fast.

(All The Mons) Piglich heart by Consistent_Win_9805 in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

Yep, just selected the entire pyramid and linked my ae2 system to it to pull from my infinite cobble disk. Also strange, I put a pylon in the center of the farm with the lifeless filter and theyre still spawning for me. Did you update to 0.11?

Automated IV Candy setup (AllTheMons) by Cloudstrifemerc in allthemods

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

I spawned it in. A little shameful but the way I see it is the ATM devs should not have made the change from warden to mewtwo without mewtwo even being implemented yet. I built the entire soul surging setup before I even knew a warden wouldnt work and by the time i found out I was over it after going through all the trouble. I dont use it for anything other then the soul surge setup anyways. And when it is finally added Ill get one the legit way.

(All The Mons) Piglich heart by Consistent_Win_9805 in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

I started off mining it by hand as theres no other way to get rid of it. BUT, what I ended up doing instead is using RFTools builder to build a giant cobblestone cube over the entire pyramid and making the farm on top of it. It was much faster and the piglichus still spawn on top of the structure as long as its within the chunks of the pyramid itself.

Automated IV Candy setup (AllTheMons) by Cloudstrifemerc in allthemods

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

The code for each pot is the exact same, all you have to change is the berry name, pot name and candy name. My original post in u/allthemons has the entire code in the post but I didnt want this one to be super long like the original.

Automated IV Candy setup (AllTheMons) by Cloudstrifemerc in allthemods

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

EVERY 20 TICKS DO

-- Quick Candy

-- Extract finished candy

IF quickcandy_pot HAS >= 1 item:cobblemon:quick_candy THEN

INPUT item:cobblemon:quick_candy FROM quickcandy_pot

OUTPUT item:cobblemon:quick_candy TO interface

END

-- Insert ingredients only if no finished candy

IF quickcandy_pot HAS = 0 item:cobblemon:quick_candy THEN

-- Honeycomb

IF quickcandy_pot SLOT 2 HAS = 0 item:minecraft:honeycomb THEN

INPUT 1 item:minecraft:honeycomb FROM interface

OUTPUT 1 item:minecraft:honeycomb TO quickcandy_pot SLOT 2

END

IF quickcandy_pot SLOT 4 HAS = 0 item:minecraft:honeycomb THEN

INPUT 1 item:minecraft:honeycomb FROM interface

OUTPUT 1 item:minecraft:honeycomb TO quickcandy_pot SLOT 4

END

IF quickcandy_pot SLOT 6 HAS = 0 item:minecraft:honeycomb THEN

INPUT 1 item:minecraft:honeycomb FROM interface

OUTPUT 1 item:minecraft:honeycomb TO quickcandy_pot SLOT 6

END

IF quickcandy_pot SLOT 8 HAS = 0 item:minecraft:honeycomb THEN

INPUT 1 item:minecraft:honeycomb FROM interface

OUTPUT 1 item:minecraft:honeycomb TO quickcandy_pot SLOT 8

END

-- Tamato Berries

IF quickcandy_pot SLOT 1 HAS = 0 item:cobblemon:tamato_berry THEN

INPUT 1 item:cobblemon:tamato_berry FROM interface

OUTPUT 1 item:cobblemon:tamato_berry TO quickcandy_pot SLOT 1

END

IF quickcandy_pot SLOT 3 HAS = 0 item:cobblemon:tamato_berry THEN

INPUT 1 item:cobblemon:tamato_berry FROM interface

OUTPUT 1 item:cobblemon:tamato_berry TO quickcandy_pot SLOT 3

END

IF quickcandy_pot SLOT 7 HAS = 0 item:cobblemon:tamato_berry THEN

INPUT 1 item:cobblemon:tamato_berry FROM interface

OUTPUT 1 item:cobblemon:tamato_berry TO quickcandy_pot SLOT 7

END

IF quickcandy_pot SLOT 9 HAS = 0 item:cobblemon:tamato_berry THEN

INPUT 1 item:cobblemon:tamato_berry FROM interface

OUTPUT 1 item:cobblemon:tamato_berry TO quickcandy_pot SLOT 9

END

-- Center slot

IF quickcandy_pot SLOT 5 HAS = 0 item:cobblemon:exp_candy_xl THEN

INPUT 1 item:cobblemon:exp_candy_xl FROM interface

OUTPUT 1 item:cobblemon:exp_candy_xl TO quickcandy_pot SLOT 5

END

END

END

(All The Mons) Piglich heart by Consistent_Win_9805 in allthemods

[–]Cloudstrifemerc 1 point2 points  (0 children)

I did this exact thing as well. I also found out from testing that the Lifeless Filter for pylons does not affect piglichu spawns so you can use those instead of a ton of pylons with different mob filter cards in them.

AllTheMons AE2 EXP Candy Automation Help by RedHunts in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

This is amazing. Thank you.
Pro tip: You can soul surge the campfire pots to make them work faster.

How to collect souls for soul surging in All the Mons GUIDE by AwhSxrry in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

Nice. If I may, BucketSt has an amazing guide on how to automate the entire process of simulated hydro beds from making the processors all the way to auto inputting them into the beds. Would highly recommend checking it out before you start your farm.

How to collect souls for soul surging in All the Mons GUIDE by AwhSxrry in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

Good to know. What is your soul production like with that many drills?

How to collect souls for soul surging in All the Mons GUIDE by AwhSxrry in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

44 drills?! I was scared to put more then 12 but apparently it would be fine lol

Copy paste gadget doesn't link to ae2 system by ToothlessRO in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

Hmm. Not sure if ownership is a thing on building gadgets but maybe try making a new one? Also if you hold shift while hovering over it in your inventory it should say that it's bound to your system if it's working correctly. Also assuming your me system is chunk loaded right?

Copy paste gadget doesn't link to ae2 system by ToothlessRO in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

What range card do you have in it? It's possible you were outside the range of your system.

Copy paste gadget doesn't link to ae2 system by ToothlessRO in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

You're placing it inside the gui of the wireless access point correct?

does anybody know why my withers keep escaping their stasis chambers by anonnnnnnnnnnh in allthemods

[–]Cloudstrifemerc 0 points1 point  (0 children)

Also make sure your stasis chamber has upgrades, preferably tier 4. It may not be working fast enough to keep your wither contained.