Cassette Beasts

Cassette Beasts

32 rating
AFK Fused Material Farming (Spoilers)
Oleh Echo
Fused Material is arguably one of the most important items in the late game, but getting enough to buy ritual candles and other goodies can often take excessive amounts of time. Here's a quick guide on how you can automate the process of getting both fused material, as well as other materials as well to help build your dream teams!
   
Penghargaan
Favorit
Difavoritkan
Batalkan favorit
Intro
The easiest way to farm fused material is via archangel rematches. After the player beats Morgante for the second time in Harbourtown Station, this becomes an option and each archangel will give a fused material when dropped, as well as Olive-Up!s, Upgrapes, and other miscellaneous crafting materials. Luckily for us, there are strong enough builds that can auto-clear these rematches just from triggering the fight to start.
Beasts and Builds
The easiest and fastest way to do this is to just use Kephri or some other high ranged attack beast loaded up with a bunch of Random Starter and Headshot, as pictured below.

While maybe not necessary, it also helps to reroll your stats to fully invest in Ranged Attack to ensure that Kephri is able to drop the archangel at the start of the match.

With these two steps done, you should be able to do comically large amounts of damage. It should be noted that archangels go up by 5 levels per rematch up to a cap of 200, so if need be, you can recreate the setup for your partner to ensure that the archangel dies.
Automating
Now that we have our AFK way of fighting an archangel, we need to have a macro to walk up to the fight, press enter at the results screen, then result the boss room by leaving the door. To do this, I've created a fairly bare-bones script that can be ran via AutoHotkey (AHK). If you do not have AHK, here is a link[www.autohotkey.com] to download it. After that, simply select new script in AutoHotkey Dash, then copypaste the following code.

Capslock:: Loop, X { Send, {W down} Send, {Space down} Sleep 7500 Send, {Space up} Send, {W up} Sleep 55000 Send, {Enter down} Sleep 20 Send, {Enter Up} Sleep 100 Send, {S Down} Send, {Space down} Sleep 7000 Send, {Space up} Send, {S Up} } return

If you want to change the button to start the macro, simply replace Capslock with some other key, and then also change X to the amount of fused material you would like to farm. Save the file, then return to AutoHotkey Dash and select Compile. Put in the location of the script file where it states source, then select convert at the bottom to create the .exe.
Farming and Possible Troubleshooting
With the build and script setup, simply stand in this location in the train station and start the macro...


And voila! Go do something else productive for a bit and then come back to your newly farmed stash of fused materials and other goodies.


As for troubleshooting, there can be a couple reasons why the code would not work well with your setup. The current code estimates the battle to take around 55 seconds, using my setup of double Kephri. There is a small chance that enough random starters activate that cause the battle to take longer than that. Simply adjust the bolded number in the code below in your file, then save and convert the file again.
Send, {W up} Sleep 55000 Send, {Enter down}
Besides that, you might need to adjust the amount of time to walk depending on the archangel you are fighting. The current code has been tested against Robin Goodfellow and Nowhere Monarch which give both Olive-Up! and Upgrape respectively so I don't see the reason to mess around with the walking components of it. Whatever floats your boat though I suppose.
Wrapping Things Up
Hope this helps! I maybe farmed archangels for like, 15 minutes before I could feel my soul leaving my body compelling me to make this, so hope some of y'all can enjoy it as well. If you are using it to help farm up Ritual Candles and get some cool bootlegs, let me know! I've currently used it to farm up a grass and earth Mardiusa, a glass Fountess, and then my beloved glitter Kephri that I could not help but to show off a bit earlier in the guide. Any feedback or rating is appreciated and good luck with the farming!
8 Komentar
Sir Goldfisch 1 Agu 2023 @ 2:10am 
This is a pretty neat guide, but the inputs from ahk dont get played in cassette beasts. Does anyone here have an idea why?
Echo  [pembuat] 25 Jun 2023 @ 6:27am 
Not a bad idea, I've personally never used CheatEngine and enjoy using ahk. There's also some other benefits, like what HTWC said about being able to get a load of stickers, as well as progressing the bounty board, though I suppose there's also probably a way to do that as well in CE. Pretty much just boils down to me wanting to use a program I'm more familiar with.
Abrecan 25 Jun 2023 @ 5:54am 
Just use CheatEngine and duplicate as many fusion materials as you want. If you are at the point where you are creating a farming macro to play over night to get what 350 material, then just download CE and get 999999 material in 3 minutes, save your time and sanity and enjoy the game.
Wavesy 20 Jun 2023 @ 5:09pm 
You can make this even more efficient by filling your remaining party slots with bootlegs, farming lots of uncommon and rare stickers on top of the fused material.
Reydan 17 Jun 2023 @ 4:29pm 
Loop
{
Sleep 1000
Send "{W down}"
Send "{Space down}"
Sleep 7500
Send "{Space up}"
Send "{W up}"
Sleep 43000
Send "{Enter down}"
Sleep 20
Send "{Enter Up}"
Sleep 100
Send "{S Down}"
Send "{Space down}"
Sleep 7000
Send "{Space up}"
Send "{S Up}"
}

Here is the code for ahk v2, in this you need to run the macro and quick click on the game.
Starman45FTW 13 Jun 2023 @ 4:50pm 
I just downloaded v1.1 (was using v2) and it worked fine lol. Left it on over night and got 350 fusion shards. Works great!
Echo  [pembuat] 12 Jun 2023 @ 9:24pm 
Hmm, unsure what would be causing the issue exactly, might be an issue with the version. Do you know if you are using AHK v1.1 or v2? My stuff was written in v1.1 and there tends to be syntax issues converting v1.1 code to v2. If you are on v2, try removing the commas after Loop and each of the Send lines. Let me know if that doesn't work and I'll see what I can do. ^^
Starman45FTW 12 Jun 2023 @ 9:14pm 
Tried copy-pasting the code and got this error: The script contains syntax errors. Function calls require a space or "(". Use comma only between parameters. Specifically: Loop, X