SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting by immanuel94

View this thread on steempeak.com
· @immanuel94 · (edited)
$61.86
SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting
<div><img src="https://cdn.steemitimages.com/DQmZF43FPMqtmn683NUFqRfTtJp5swHrrsZvNHANqjgB8MD/2019-03-25_13.04.22.png"/>
<div class="text-justify"><blockquote>Here, you can see me next to the recently changed storage units, which now can interact with mine carts.</blockquote></div></div>

---

Hello everyone,

some new changes have been made to improve SKYBLOCK.SK, which I want to show you guys off today. I'm also very excited to show you a `storage.sk` feature which allows players to transport and sort items now way more efficient to save some server resources.


### 1. Repository
https://github.com/Abwasserrohr/SKYBLOCK.SK

### 2. Index
1. Repository
2. Index
3. New Features and changes
3.1 Increased performance of `biomechanger.sk`
3.2 Improved `/island info` command
3.3 Added sign click support, empty slot covering & minecart storage system to `storage.sk`
4. Pull requests
5. GitHub Account
6. How to contribute

### 3. New Features and changes


#### 3.1 Increased performance of `biomechanger.sk`

<div class="pull-right"><a href="https://cdn.steemitimages.com/DQmVSb94dW1bPTdUz31yvMqg38jKKVmn1z1edd6k8SMPfPv/biomechanging1.png">
<img src="https://cdn.steemitimages.com/DQmVSb94dW1bPTdUz31yvMqg38jKKVmn1z1edd6k8SMPfPv/biomechanging1.png"/><blockquote>Here is how the biome selection menu looks like currently, thanks to the recent change, biomes can now be changed faster than before..</blockquote></a></div>

The biome changing process always hanged a little bit before it actually did anything. One problem that I have found is that there is no need to save all blocks to a local list. I can just get the number of blocks without saving it into a variable. This reduces some performance problems and increased the speed of the process by around 0.25 seconds for each biome changing process for a 200x200 blocks island.


Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/224

---

#### 3.2 Improved `/island info` command
The `/island info` command has used the chat as some other commands like the `/island top` command. While it was pretty nice to get the data into the chat to view it later on by scrolling, but it makes sense to change that because these chat messages aren't meant to be used for that and rather only for chatting with other users.

That is why I have now improved the `/island info` command by using books. Books have the advantage to be very clear and detailed at the same time. Also, it is possible to create clickable and hover events into these books, which allows players to open `/island top` and click on an island within this list to get then redirected to the `/island info <player>` command, which is also a book. This consistent menu flow is an improvement to the overall look of SKYBLOCK.SK, since it looks way more professional to display the data in a book.

Here is a video of the new improved `/island info` command:

https://www.youtube.com/watch?v=-Dfq9TDWtM0

Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/225

---

#### 3.3 Added sign click support, empty slot covering & minecart storage system to `storage.sk`
There have been some changes to the storage units I'm really excited to show you guys today because some of these can be a real game changer for storage units, storing and sorting items.

* Added sign click support:
The first change is a little one. If a player clicks on the storage unit statistic sign, the storage unit is going to be opened, before, the user had to click on the storage unit itself, which has now been changed.

* Empty slot covering:
There have been some empty slots in the storage unit menu, which allowed players to lose some items by placing them into there. This now has been fixed, there are some glass items in the menu which prevent any items from being put into these empty slots.

* Minecart storage system:
Now that is why I'm excited! =) This new system allows players to set up some really big and advanced sorting and storage solutions with not very much space requirements and also less server hardware.

Some people might know how big sorting machines in Minecraft can look like but to say it for people who never seen these: It can get really messy and resource intensive for the server.

To protect servers from having these problems with big sorting machines, the Idea of making a sorting mechanism right into the storage unit has been though over. In the end, I decided to put this new feature into the storage unit add-on, which, of course, can also be configured and disabled, if the server operator doesn't want to use these lightweight sorting mechanisms. 

Here is how it works:

`org.bukkit.event.vehicle.VehicleMoveEvent` is needed as an event to be used. This always happens if a vehicle is moving somewhere.


<a href="https://cdn.steemitimages.com/DQmdPpJy6cET51JxpAzRZfZ24ubs1VrWmLVsibg6St1L9cH/moveevent.png">
<img src="https://cdn.steemitimages.com/DQmdPpJy6cET51JxpAzRZfZ24ubs1VrWmLVsibg6St1L9cH/moveevent.png"/></a>

This event gets always executed once a mine cart is moving and then checks if the feature is disabled by the server operator. Then, it checks if the block below the mine cart is the event trigger block. If it is the event trigger block, then there should be a storage unit status sign with contains some specific and predefined text below the trigger block, which is why there are some of these option variables.

Then, there is some mine cart storage unit fill and empty mechanisms going on below.

<a href="https://cdn.steemitimages.com/DQmUTgdGTWboEeT7AWmtPmC6CPKXY1TYYZQGd1cdb7g2Koe/minecartevent1.png">
<img src="https://cdn.steemitimages.com/DQmUTgdGTWboEeT7AWmtPmC6CPKXY1TYYZQGd1cdb7g2Koe/minecartevent1.png"/></a>

Here are multiple things that happen, here is a short list to explain what is happening above:

1. The metadata value "lastblock" has to be another value than the current location, this prevents the storage unit to fill and empty multiple times per block.
2. If the metadata value "lastblock" is another value than the current location, the current location is set to the "lastblock" value to prevent repeating itself multiple times.
3. Get the storage unit item as a variable and check if it is not air, we don't want to build an air compressor so we only go forward if there is no air...
4. Then, we have to be sure that the player wants to fill stuff from the mine cart into the storage unit. There are two modes, the storage unit can either be filled or emptied out. This part is responsible for the storage unit fill mode.
5. Once that is done, it takes the current amount which is stored in the storage unit and then parses it as an integer. 
6. The amount of items, which match with the storage unit items is added to the current amount, which is later saved back to the storage unit.
7. All items which match with the storage unit items get removed out of the mine cart.

Later, there is an update process which updates the storage unit and storage unit status signs. While this looks like a big process, it is way more efficient than simple old hopper sorting machines.

To show off how it works, here is a Video:

https://www.youtube.com/watch?v=HhPfy3_iG0w

Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/229

---

### 4. Pull requests
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/224
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/225
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/229


---

### 5. GitHub Account
https://github.com/Abwasserrohr

---

### 6. How to contribute
If you want to contribute to SKYBLOCK.SK, contact me here in the comments or on Discord. Please contact me directly, I'm the sewage pipe on Discord. I look forward to meeting people who want to get in touch with Skript and Minecraft.
 **If you never had anything to do with programming, SKYBLOCK.SK could be a great way to start.** Skript is easy to learn and gives you the opportunity to understand how things work and also get the idea behind object-oriented languages, like Java while playing a game.

Discord: https://discord.gg/FRuK5BC

---

<div class="pull-right"><a href="https://cdn.steemitimages.com/DQmZC666Tb873buvCCx7faC48yZNXKyc83yzpk6FBJiaSyj/2019-03-25_13.42.36.png">
<img src="https://cdn.steemitimages.com/DQmZC666Tb873buvCCx7faC48yZNXKyc83yzpk6FBJiaSyj/2019-03-25_13.42.36.png"/><blockquote>Thanks for testing out the new storage units minecraft enhancements, altonos. :)</blockquote></a></div>

Thank you for reading my contribution post. 

These changes seem to be well accepted by the players on my test server. The new mine cart transport and sorting features are already used by some players and they seem to like it. Making everything less spammy for the chat is another thing that has been requested for some time now and it is getting better and better over time. =)

If you have a new idea for SKYBLOCK.SK, feedback about this contribution post, features I showed today or something else about SKYBLOCK.SK, feel free to share it with me here in the comments, on GitHub or on Discord.

Have a nice day and a great week

@immanuel94
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 171 others
properties (23)
post_id72,020,158
authorimmanuel94
permlinkskyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting
categoryutopian-io
json_metadata{"app":"steempeak\/1.9.3","format":"markdown","tags":["utopian-io","development","minecraft","skyblock","skript"],"users":["immanuel94"],"links":["https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK","https:\/\/cdn.steemitimages.com\/DQmVSb94dW1bPTdUz31yvMqg38jKKVmn1z1edd6k8SMPfPv\/biomechanging1.png","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/224","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/225","https:\/\/cdn.steemitimages.com\/DQmdPpJy6cET51JxpAzRZfZ24ubs1VrWmLVsibg6St1L9cH\/moveevent.png","https:\/\/cdn.steemitimages.com\/DQmUTgdGTWboEeT7AWmtPmC6CPKXY1TYYZQGd1cdb7g2Koe\/minecartevent1.png","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/229","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/224","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/225","https:\/\/github.com\/Abwasserrohr\/SKYBLOCK.SK\/pull\/229"],"image":["https:\/\/cdn.steemitimages.com\/DQmZF43FPMqtmn683NUFqRfTtJp5swHrrsZvNHANqjgB8MD\/2019-03-25_13.04.22.png","https:\/\/cdn.steemitimages.com\/DQmVSb94dW1bPTdUz31yvMqg38jKKVmn1z1edd6k8SMPfPv\/biomechanging1.png","https:\/\/cdn.steemitimages.com\/DQmdPpJy6cET51JxpAzRZfZ24ubs1VrWmLVsibg6St1L9cH\/moveevent.png","https:\/\/cdn.steemitimages.com\/DQmUTgdGTWboEeT7AWmtPmC6CPKXY1TYYZQGd1cdb7g2Koe\/minecartevent1.png","https:\/\/cdn.steemitimages.com\/DQmZC666Tb873buvCCx7faC48yZNXKyc83yzpk6FBJiaSyj\/2019-03-25_13.42.36.png"]}
created2019-03-25 13:29:33
last_update2019-03-25 15:09:21
depth0
children19
net_rshares98,344,082,223,549
last_payout2019-04-01 13:29:33
cashout_time1969-12-31 23:59:59
total_payout_value46.236 SBD
curator_payout_value15.619 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9,071
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries
0.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (235)
@creeperm4ster ·
$0.03
Gute neue Features! Danke an das SB-Team. :)
👍  
properties (23)
post_id72,023,192
authorcreeperm4ster
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-a6b3900e-93e0-40d5-a15b-b69b293a938c
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK\/0.1","format":"markdown"}
created2019-03-25 14:21:33
last_update2019-03-25 14:21:33
depth1
children1
net_rshares44,177,748,655
last_payout2019-04-01 14:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.021 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length44
author_reputation135,241,852,546
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@immanuel94 ·
Super, dass dir die neuen Features soweit gefallen!^^ Wenn du Ideen hast, melde dich gerne. ;)
properties (22)
post_id72,024,222
authorimmanuel94
permlinkre-creeperm4ster-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-a6b3900e-93e0-40d5-a15b-b69b293a938c-20190325t143730462z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 14:37:33
last_update2019-03-25 14:37:33
depth2
children0
net_rshares0
last_payout2019-04-01 14:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length94
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@skyroad.fan ·
$0.03
Die neuen Features sind sehr nützlich und machen verschiedene farmen einfacher
👍  
properties (23)
post_id72,023,262
authorskyroad.fan
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-cd1660fd-1ff6-4e15-9a06-222a369eba7c
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK\/0.1","format":"markdown"}
created2019-03-25 14:22:33
last_update2019-03-25 14:22:33
depth1
children1
net_rshares48,406,260,435
last_payout2019-04-01 14:22:33
cashout_time1969-12-31 23:59:59
total_payout_value0.024 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length78
author_reputation129,154,966,501
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@immanuel94 ·
Freut mich, dass dir die neuen Features gefallen und es dir leichter machen.^^
properties (22)
post_id72,024,195
authorimmanuel94
permlinkre-skyroadfan-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-cd1660fd-1ff6-4e15-9a06-222a369eba7c-20190325t143709836z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 14:37:12
last_update2019-03-25 14:37:12
depth2
children0
net_rshares0
last_payout2019-04-01 14:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length78
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@vanillezucker ·
$0.03
Spitze, tolle Arbeit! <3
👍  
properties (23)
post_id72,025,298
authorvanillezucker
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-3ca15c12-0877-466a-80c6-ed2ea44966fd
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK\/0.1","format":"markdown"}
created2019-03-25 14:54:30
last_update2019-03-25 14:54:30
depth1
children1
net_rshares43,814,002,209
last_payout2019-04-01 14:54:30
cashout_time1969-12-31 23:59:59
total_payout_value0.020 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation22,675,431,258
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@immanuel94 ·
Vielen Dank! =) Freut mich, dass dir das Projekt soweit gefällt.^^
properties (22)
post_id72,025,416
authorimmanuel94
permlinkre-vanillezucker-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-3ca15c12-0877-466a-80c6-ed2ea44966fd-20190325t145628095z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 14:56:30
last_update2019-03-25 14:56:30
depth2
children0
net_rshares0
last_payout2019-04-01 14:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length66
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@altonos ·
$0.06
Durch die neue Möglichkeit Iteams voll Automatisch zu sortieren kann man sich sehr viel Arbeit ersparen. =P
👍  ,
properties (23)
post_id72,026,063
authoraltonos
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t150639147z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 15:06:48
last_update2019-03-25 15:06:48
depth1
children4
net_rshares95,499,531,517
last_payout2019-04-01 15:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.046 SBD
curator_payout_value0.015 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length107
author_reputation6,657,839,682,254
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
author_curate_reward""
vote details (2)
@immanuel94 ·
Ja, da hast du recht. Das ging ja auch schon vorher. Aber so spart man sich viele Trichter, was ja auch Ressourcen spart..  ^^
properties (22)
post_id72,026,136
authorimmanuel94
permlinkre-altonos-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t150802129z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 15:08:03
last_update2019-03-25 15:08:03
depth2
children3
net_rshares0
last_payout2019-04-01 15:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@altonos · (edited)
$0.03
Die alte System war aber recht Fehler anfällig, deswegen habe ich es auch nicht gebaut. =D
👍  
properties (23)
post_id72,027,631
authoraltonos
permlinkre-immanuel94-re-altonos-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t153123879z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 15:31:24
last_update2019-03-25 15:31:42
depth3
children2
net_rshares49,797,791,841
last_payout2019-04-01 15:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.024 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation6,657,839,682,254
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
author_curate_reward""
vote details (1)
@trufflepig ·
**Congratulations!** Your post has been selected as a daily Steemit truffle! It is listed on **rank 1** of all contributions awarded today. You can find the [TOP DAILY TRUFFLE PICKS HERE.](https://steemit.com/@trufflepig/daily-truffle-picks-2019-03-25) 
    
I upvoted your contribution because to my mind your post is at least **10 SBD** worth and should receive **137 votes**. It's now up to the lovely Steemit community to make this come true.

I am `TrufflePig`, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, [you can find an explanation here!](https://steemit.com/steemit/@trufflepig/weekly-truffle-updates-2019-12)
    
Have a nice day and sincerely yours,
![trufflepig](https://raw.githubusercontent.com/SmokinCaterpillar/TrufflePig/master/img/trufflepig17_small.png)
*`TrufflePig`*
    
properties (22)
post_id72,032,639
authortrufflepig
permlinkre-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t165905
categoryutopian-io
json_metadata{}
created2019-03-25 16:59:06
last_update2019-03-25 16:59:06
depth1
children0
net_rshares0
last_payout2019-04-01 16:59:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length884
author_reputation37,535,693,521,838
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@olando ·
$0.03
ich finde die neuen featchers in SkyBlock super
👍  
properties (23)
post_id72,033,644
authorolando
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-b40006f9-d9b6-4bb8-84a5-81387ea37914
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK\/0.1","format":"markdown"}
created2019-03-25 17:27:12
last_update2019-03-25 17:27:12
depth1
children0
net_rshares43,828,362,620
last_payout2019-04-01 17:27:12
cashout_time1969-12-31 23:59:59
total_payout_value0.020 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length47
author_reputation309,821,185,298
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@helo ·
$14.70
- Great article with many videos, images and code samples.
- A little less code than usual but as much comments as before.
- Keep up the great work.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-2-1-2-1-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id72,039,973
authorhelo
permlinkre-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t205404062z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/join.utopian.io\/guidelines","https:\/\/review.utopian.io\/result\/3\/1-2-2-1-2-1-1-","https:\/\/discord.gg\/uTyJkNm","https:\/\/join.utopian.io\/"],"app":"steemit\/0.1"}
created2019-03-25 20:54:03
last_update2019-03-25 20:54:03
depth1
children2
net_rshares22,802,693,453,435
last_payout2019-04-01 20:54:03
cashout_time1969-12-31 23:59:59
total_payout_value11.170 SBD
curator_payout_value3.533 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length598
author_reputation119,612,833,307,875
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (23)
@immanuel94 ·
Thank you for reviewing my contribution post! =)

Yeah, this time, there were new features that didn't require that much of a changes in the code. But in the future, there are coming some bigger features again which require a lot of new code to be done to work. :3
properties (22)
post_id72,040,919
authorimmanuel94
permlinkre-helo-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t212019639z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-03-25 21:20:21
last_update2019-03-25 21:20:21
depth2
children0
net_rshares0
last_payout2019-04-01 21:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length264
author_reputation96,976,535,910,824
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
post_id72,155,512
authorutopian-io
permlinkre-re-immanuel94-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t205404062z-20190327t224647z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-03-27 22:46:48
last_update2019-03-27 22:46:48
depth2
children0
net_rshares0
last_payout2019-04-03 22:46:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation152,913,012,544,965
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steem-ua ·
#### Hi @immanuel94!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
post_id72,040,759
authorsteem-ua
permlinkre-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190325t211718z
categoryutopian-io
json_metadata{"app":"beem\/0.20.19"}
created2019-03-25 21:17:18
last_update2019-03-25 21:17:18
depth1
children0
net_rshares0
last_payout2019-04-01 21:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length289
author_reputation23,203,609,903,979
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemitboard ·
Congratulations @immanuel94! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@immanuel94/voted.png?201903252221</td><td>You received more than 25000 upvotes. Your next target is to reach 30000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@immanuel94) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=immanuel94)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun">3 years on Steem - The distribution of commemorative badges has begun!</a></td></tr><tr><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years">Happy Birthday! The Steem blockchain is running for 3 years.</a></td></tr></table>

###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
post_id72,046,519
authorsteemitboard
permlinksteemitboard-notify-immanuel94-20190325t232017000z
categoryutopian-io
json_metadata{"image":["https:\/\/steemitboard.com\/img\/notify.png"]}
created2019-03-25 23:20:15
last_update2019-03-25 23:20:15
depth1
children0
net_rshares0
last_payout2019-04-01 23:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,767
author_reputation38,705,954,145,809
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Hey, @immanuel94!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
post_id72,060,012
authorutopian-io
permlinkre-skyblock-minecraft-addon-23-improved-commands-and-storage-sk-now-supports-mine-cart-transportation-and-sorting-20190326t043317z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-03-26 04:33:18
last_update2019-03-26 04:33:18
depth1
children0
net_rshares0
last_payout2019-04-02 04:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length592
author_reputation152,913,012,544,965
root_title"SkyBlock Minecraft Addon #23 - Improved commands & storage.sk now supports mine cart transportation and sorting"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000