Are Dragons Profitable in September 2020? – Hypixel Skyblock

profit-from-dragons-over-time-hypixel-skyblock-sirknightj

With the Skyblock 0.9 Update, and the introduction of Booster Cookies, a lot has changed with the Dragon market. First off, most dragon-related items spiked in price, likely due to the influx of newer players purchasing Booster Cookies and earning money that way.

Booster Cookies on Dragon Profits

Currently Booster Cookies are sold on the Bazaar for roughly $850,000 coins. However, Summoning Eyes are sold on the Bazaar for roughly $650,000-$700,000 coins depending on when you buy or sell. With this change, the paying playerbase now has access to the late-end game armor sets including Strong Dragon Armor, and Superior Dragon Armor. Furthermore, Aspect of the Dragons prices have increased from under $2,400,000 coins to nearly $3,750,000 coins. Since summoning eyes used to cost $600,000 each previously, one Aspect of the Dragons now pays off for more dragons than before. Same with nearly other Dragon Armor except for Protector and Old.

Overall, Booster Cookies made the demand for Dragon items go up, increasing the prices.

Our Experience Doing Dragons

We tracked every single dragon that we did, and this is our result.

As you can see, Dragons are quite profitable over time. If you do them in short bursts, they’re likely not to be profitable. Around our 200th dragon, we got no superiors for a very long time, and was on a long streak of no profits.

Read more

Fire Emblem Heroes As Of September 2020

It’s September already and 2020 will be gone soon. Since the first Covid-19 news until now, we’ve been in this situation for more than 6 months. And we still don’t know if we ever get back to normal again.

Anyway, what’s new with Fire Emblem Heroes. In the last few months, Intelligent Systems introduced a few things that players appreciate: the trait fruit (IV change system). This new item allows players to change the IV of a particular hero to any IV of their choice. I can finally get rid of those -Atk heroes and switch them to +Atk or +Spd. This new addition really help lessen the resentment/disappointment feeling with summoning new heroes. At least now, we don’t have to get stuck with those bad IV. We just have to pay a bit with trait fruit and the issue is fixed.

Read more

Farming 50 – Hypixel Skyblock

Well, I finally did it. Using the strategy I described in a previous post I wrote here, I hit farming level 50, allowing me to always get triple drops from all crops.

What a great achievement.

When I first started farming, I didn’t use any Farming XP Boost III potions. However, once I got more invested, I had my coop brew for me. He brewed the 54-minute farming XP Boost III potions with his Alchemy 50. When drinking the potion with a lv 100 Parrot and the Potion Affinity Artifact, the Farming XP Boost lasts for roughly 1 hour and 54 minutes.

According to my sky.lea.moe, I only harvested 4.2 million pumpkins and 11.7 million sugarcane to get to farming 50. Thanks to the Bonus 20% Skill XP bonus, the Rabbit pet, and Farming XP Boost potions. Because of those, I was able to get to farming 50 much quicker than previously possible.

farming-49-almost-50-sirknightj-hypixel-skyblock

I took this cool screenshot when I was 1 xp away from hitting farming 50.

farming-49-almost-50-sirknightj-hypixel-skyblock-level

Read more

Our Journey to Buying a Non-Tier Boosted Legendary Ender Dragon Pet

A while ago, we bought a level 100 epic ender dragon pet. You can see that post here. Our next goal was to get a legendary ender dragon pet, without putting a tier boost on it.

We scoured the auction house, looking for a legendary non-tier boosted ender dragon pet which had no pet candies on it. Sadly there were none of those being sold. So, we waited patiently for someone to put one up. Finally, someone by the name of iM_sXon put up a Legendary level 1 Ender Dragon pet up.

The thing with bidding on Ender Dragon pets is that the prices you have to pay fluctuates so much, since there are so few on the auction house. Once we saw this Ender Dragon put up, we went all-in for it.

Looking at the other auctions for Legendary Ender Dragons at the moment, we estimated that we needed around $380,000,000 coins in order to afford it. So, we began the long process of selling pretty much everything we had in order to scrounge up that many coins.

Leveling Up Our Ender Dragon

We needed to sell our current tier-boosted ender dragon to hopefully earn a good amount of money. Recall that we bought the level 100 epic ender dragon for $215,014,135 coins.

ender-dragon-pet-sirknightjAdditionally, recall that I dropped a tier boost core. After applying the tier boost,our pet should be worth about $245,000,000 coins in order to make any profit.

However, we were disappointed that when we put the tier boost on, the pet immediately downgraded to level 96.

Read more

Discord.js Bot Hypixel Bazaar Price Checker – Behind the Scenes

Over the past few weeks, I’ve been working on coding a Discord Bot with both fun commands, and moderation commands. As I’m playing around with the Discord.js library, I learned a ton of neat things about working with it.

Here it is, in case you want to see it.

I wanted to get my bot to get Hypixel Skyblock Bazaar data. However, accessing the Hypixel API can be quite obscure and confusing if you’ve never done it before. So, to save you the trouble, I’ll share with you how my bot pulls bazaar data from the Hypixel API.

Note: We’ll be using JavaScript for this, as we are using Discord.js.

Installing Dependencies

I’m going to assume you’re using using npm, and that you’ve already set up your project file using npm.

To fetch things from a website, we’ll be using the node-fetch package.

Go ahead and install node-fetch. Navigate to your project folder and
npm install node-fetch. You’ll know that it installed correctly when it appears as a dependency in your package.json file.

Next, you’ll want to make sure that you actually use node-fetch in your code:
const fetch = require(‘node-fetch’);

Read more