create account

SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on by immanuel94

View this thread on: hive.blogpeakd.comecency.com
· @immanuel94 ·
$43.63
SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on

<div>
<img src="https://cdn.steemitimages.com/DQmYDh9Z8vdxr9fBefsg9L3aRUxzjj2gp5HNGx4HQNbhGSL/end.png"/><blockquote>Here is a slime next to me, some people already fear these slimes at SkyBlock, but now, there is finally a way to get rid of them using a flag in SKYBLOCK.SK. </blockquote></div>


---

Hello everyone,

I have new exciting features and changes to show for you guys. This time, sortable top lists, general improvements and an anti afk add-on have been added, which give the game more depth, particularly the sortable top lists now allow players to specialize to specific parts of the island. They no longer can only be the first guy who has the most valuable island but also the one who has the most visitors or challenge experience gathered.

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

### 2. Index
1. Repository
2. Index
3. New Features and changes
3.1 Added sorted toplist & improvements of island warps
3.2 Added new flags
3.3 Changed y-coordinates of the island protection
3.4 Improved afkcheck add-on
3.5 Improved jetboots
3.6 Added anti afk add-on
3.7 Added protection for item frames and pictures
4. Pull requests
5. GitHub Account
6. How to contribute

### 3. New Features and changes

#### 3.1 Added sorted toplist & improvements of island warps

<div class="pull-right"><a href="https://cdn.steemitimages.com/DQmP8S9ffxPtKzrYukQsti6E7nqE3QqK4mmRE2etBCfsYi1/l2.png">
<img src="https://cdn.steemitimages.com/DQmP8S9ffxPtKzrYukQsti6E7nqE3QqK4mmRE2etBCfsYi1/l2.png"/><blockquote>The new sorting of the toplist can simply be adjusted by clicking on the three characters above, which have a hover text to explain what they do.</blockquote></a></div>

People wanted to know who is the best with the challenges and who gets visited very often. Because people asked for this feature, I added it in. This new feature now allows players to view a top list not only for the best island by level but also by challenge experience and island visitors.

Here is a quick video that shows the new toplist, you can see that there are some <none>'s as names, these are there because I have changed some things on my production server which temporary broke these names for me. This is not the case on a current version of SKYBLOCK.SK.
https://youtu.be/_s1vk4cnRuQ

Also, the `/island warp` has been improved and hooked together with this top list.

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

---

#### 3.2 Added new flags
Some people still experience players who participate in griefing. To prevent further problems, I have added new flags, which hopefully stop some of these griefing problems.

<div class="pull-right"><a href="https://cdn.steemitimages.com/DQmdYgqxLrixgALGTFNded3LVaAYWy6Qy1n6DdCeXr8LXEF/l1.png">
<img src="https://cdn.steemitimages.com/DQmdYgqxLrixgALGTFNded3LVaAYWy6Qy1n6DdCeXr8LXEF/l1.png"/><blockquote>The general flags section now has the new flags in it.</blockquote></a></div>

- Player vs. player (pvp) flag:
This new pvp flag now allows the island owner to toggle the pvp of the island between on and off, the server operator can disable this flag to not be changeable, of course.

- Island access flag:
If outsiders shouldn't be able to access the island, this flag is the right one. It will prevent any access to the island and stop players from griefing easily. I'm not talking about breaking blocks but simply making the gameplay worse by jerking around. This flag gives the island operators the ability to handle that.

- Slime spawning flag:
Some people have slime chunks and some do not have them. While some might say that it is nice to have one, they can get really annoying to handle with, because there are simply too many of these around. To avoid being annoyed by these slimy things, I added this flag which allows the player to toggle these slimes from spawning to off.

Here is a example how the event for the slime spawning is handled.
<a href="https://cdn.steemitimages.com/DQmTGTBYuDtsRZVLNyHSZHLo27WdynCtwNdVL451hz5fcMA/v6.png">
<img src="https://cdn.steemitimages.com/DQmTGTBYuDtsRZVLNyHSZHLo27WdynCtwNdVL451hz5fcMA/v6.png"/></a>

Thanks to the `handlegeneralflagevent` function, checking and canceling these events is easily done.

For the island access flag, a new function has been added, here is how it looks like:

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

It does one particular thing: Checking if the island, on which the player is currently on changed to another one. This can happen if a player moves or teleports.

This function also directly handles the flag. To make this function fully working, it has to be called every time a player is moving. To prevent the main game from lagging on a larger player base, I have made this function threaded, which means that it can't halt the game because it is in a separate process.

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

---

#### 3.3 Changed y-coordinates of the island protection
With the elytra and jetboots, players have the opportunity to fly way above islands. This is a great way to make the late game funnier, since who doesn't want to fly around his fully built and fancy island.

But since the island protection prohibited players from doing that, because it thought that islands end at the y-coordinate 256, it was not possible to fly any higher or lower than 0. Now, players can fly on their island between the y-coordinate -5000 to 5000 without getting any problems.

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


As you can see, the change is only two lines big but has a big impact on the gameplay for the players.

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

---

#### 3.4 Improved afkcheck add-on
<div class="pull-right"><a href="https://cdn.steemitimages.com/DQmNZgVJRv8YAxEJ7YoVkJebT7KAcKCsBFss9fuz8zF3Pd7/2019-04-18_15.11.32.png">
<img src="https://cdn.steemitimages.com/DQmNZgVJRv8YAxEJ7YoVkJebT7KAcKCsBFss9fuz8zF3Pd7/2019-04-18_15.11.32.png"/><blockquote>This is how the new afk check looks like for a player. Pretty similar to before but now, there is a number, which has to be entered in <code>/afkok</code></blockquote></a></div>

There are always people who want and can automate things. The afk check add-on has been made to check if a player is actually afk or not. But since people were able to capture the screen to check for changes, they simply have automated the afk check. To increase the difficulty for these people who try to automate things, I added a random integer to the afk check add-on. If a team member now types `/afkcheck <player>`, the player not only has to type in `/afkok`, but `/afkcheck <random integer>`.

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

---

#### 3.5 Improved jetboots add-on
The jetboots now can be further configured by server operators, as there can now be more fuel types than just one. Also, the server operator can define how efficient each fuel type is. This allows for more options to the players and customization by the server operator.

Additional to the new fuels, the fuel amount within the item now shows red, if it reaches a dangerous amount to prevent players from falling down when there is no fuel left. Thanks for the suggestions regarding the jetboots, @jongartv.

To visualize the new colored item lore here, I made a short video here:

https://youtu.be/sL2gO2iqSkg

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

---

#### 3.6 Added anti afk add-on 
There are already anti afk plugins out there. But almost all of the plugins I have seen are working like this:
- Player goes online
- Check the difference between now and the time of the last movement
- If the difference is too high kick the player, for example, 5 minutes
- Player automates the client to rejoin every 6 minutes

This is my solution:
- The player goes online and gets 50 seconds of afk time to use
- Any movement each 50ms gives the player activity points
- Every 50ms in which the player doesn't move will result in a loss of activity
- Once the player has reached an activity of 0, the player is kicked from the server

This way, active players will not be annoyed by a short 5 minutes break. But people who wanted to automate their stuff or rejoin every 5 minutes will face some new problems.

Also, I have added a system which checks how many repeated locations the player has visited the last 2000 locations, this can be changed higher or lower by the server operator. This means, if a player comes across a specific location 20 times (changeable), the location will no longer be counted as an active but an inactive location.

There are multiple automated anti afk farms in Minecraft, here is an example of two, which can be detected by this after a short amount of time: 

https://youtu.be/tTQ2OmRcOME

There went more thoughts into this add-on, but these were the most important parts I wanted to show.

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

I also added a command to this add-on which allows players to view how much activity they have. I'm just saving a `boolean (true)` to the metadata key "activiyshow" of the player, which allows the anti afk function later to check for it to determine if the player should get notified about his activity or not.

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

#### 3.7 Added protection for item frames and pictures
For some reason, SKYBLOCK.SK dropped the support to protect item frames and pictures at some point. This could have happened due to an update from SkQuery or Skript, on which SKYBLOCK.SK depends. I added the protection back in.

Commit: https://github.com/Abwasserrohr/SKYBLOCK.SK/commit/c1357c9b071c33a3da687d6d541be1b5945f2e16

---

### 4. Pull requests / Commits
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/271
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/274
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/276
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/277
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/278
https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/284
https://github.com/Abwasserrohr/SKYBLOCK.SK/commit/c1357c9b071c33a3da687d6d541be1b5945f2e16

---

### 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/DQmYTE3cDphNLtR86Gwp9PhTfxsfAens7c22VauMqEAjxqb/end1.png">
<img src="https://cdn.steemitimages.com/DQmYTE3cDphNLtR86Gwp9PhTfxsfAens7c22VauMqEAjxqb/end1.png"/><blockquote>Item frames and pictures are now safe again. Did you know that these can be placed also on the floor? Really nice to have these item frames. =) </blockquote></a></div>


Thank you for reading my contribution post. 

This time, players who automated their game using external programs have to improve their bots to keep up with the newly added features to prevent afk from happening. Also, the new flags will help players for sure. The toplist sorting is one thing I've been very happy to have it finally in. That way, there are multiple goals for players. Just making an island out of diamonds isn't enough to get a lot of visitors to the island. This allows players to specialize on island levels, challenge experience or tourism by visitors.

If you have feedback about this contribution post, the new features or SKYBLOCK.SK as a whole, just comment below this post, I appreciate your feedback.

Have a great Friday and a good start into the weekend,

@immanuel94
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 160 others
properties (23)
authorimmanuel94
permlinkskyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on
categoryutopian-io
json_metadata{"app":"steempeak/1.9.6","format":"markdown","tags":["utopian-io","development","minecraft","skyblock","skript"],"users":["jongartv.","immanuel94"],"links":["https://github.com/Abwasserrohr/SKYBLOCK.SK","https://cdn.steemitimages.com/DQmP8S9ffxPtKzrYukQsti6E7nqE3QqK4mmRE2etBCfsYi1/l2.png","https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/271","https://cdn.steemitimages.com/DQmdYgqxLrixgALGTFNded3LVaAYWy6Qy1n6DdCeXr8LXEF/l1.png","https://cdn.steemitimages.com/DQmTGTBYuDtsRZVLNyHSZHLo27WdynCtwNdVL451hz5fcMA/v6.png","https://cdn.steemitimages.com/DQmRKFWSQKqdGMta9nDcA6NeTUtLPpwLxEikRUNiPk9SdZr/v7.png","https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/274","https://cdn.steemitimages.com/DQmcCP4cc42CMG9dykUUgZ5vxZEHvuf7nKNZ4cdfRVnAnpz/v5.png","https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/276","https://cdn.steemitimages.com/DQmNZgVJRv8YAxEJ7YoVkJebT7KAcKCsBFss9fuz8zF3Pd7/2019-04-18_15.11.32.png"],"image":["https://cdn.steemitimages.com/DQmYDh9Z8vdxr9fBefsg9L3aRUxzjj2gp5HNGx4HQNbhGSL/end.png","https://cdn.steemitimages.com/DQmP8S9ffxPtKzrYukQsti6E7nqE3QqK4mmRE2etBCfsYi1/l2.png","https://cdn.steemitimages.com/DQmdYgqxLrixgALGTFNded3LVaAYWy6Qy1n6DdCeXr8LXEF/l1.png","https://cdn.steemitimages.com/DQmTGTBYuDtsRZVLNyHSZHLo27WdynCtwNdVL451hz5fcMA/v6.png","https://cdn.steemitimages.com/DQmRKFWSQKqdGMta9nDcA6NeTUtLPpwLxEikRUNiPk9SdZr/v7.png","https://cdn.steemitimages.com/DQmcCP4cc42CMG9dykUUgZ5vxZEHvuf7nKNZ4cdfRVnAnpz/v5.png","https://cdn.steemitimages.com/DQmNZgVJRv8YAxEJ7YoVkJebT7KAcKCsBFss9fuz8zF3Pd7/2019-04-18_15.11.32.png","https://cdn.steemitimages.com/DQmbvaERWtU4PvCGFRGZgLbCNYjNGrCPzvEk5uZcw8s6sP1/v8.png","https://cdn.steemitimages.com/DQmYTE3cDphNLtR86Gwp9PhTfxsfAens7c22VauMqEAjxqb/end1.png"]}
created2019-04-18 14:32:39
last_update2019-04-18 14:32:39
depth0
children18
last_payout2019-04-25 14:32:39
cashout_time1969-12-31 23:59:59
total_payout_value32.527 HBD
curator_payout_value11.102 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,476
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries
0.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,327,757
net_rshares77,286,884,333,320
author_curate_reward""
vote details (224)
@flyerchen ·
$0.03
Die neuen features hören sich sehr gut an. Vor allem das neue Anti-AFK ist echt sehr genial.
👍  
properties (23)
authorflyerchen
permlinkre-immanuel94-74aa0b51-90e8-4f73-b8f8-ca4167a1f6e6
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK/0.1","format":"markdown"}
created2019-04-18 17:13:21
last_update2019-04-18 17:13:21
depth1
children1
last_payout2019-04-25 17:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation5,540,128,662,943
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,338,204
net_rshares46,575,141,449
author_curate_reward""
vote details (1)
@immanuel94 ·
Ja, mal schauen, ob das anti afk soweit gut läuft...^^
properties (22)
authorimmanuel94
permlinkre-flyerchen-re-immanuel94-74aa0b51-90e8-4f73-b8f8-ca4167a1f6e6-20190418t172759733z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-18 17:28:03
last_update2019-04-18 17:28:03
depth2
children0
last_payout2019-04-25 17:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,338,842
net_rshares0
@helo ·
$13.36
- Great post with videos, images, code samples, the whole thing!
- Commit and code comments are awesome.
- Good advancements and explanations of coding choices.


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-1-1-1-1-1-).

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

[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorhelo
permlinkre-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190418t232306241z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-1-1-1-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-04-18 23:23:06
last_update2019-04-18 23:23:06
depth1
children2
last_payout2019-04-25 23:23:06
cashout_time1969-12-31 23:59:59
total_payout_value10.160 HBD
curator_payout_value3.201 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length611
author_reputation121,547,934,535,311
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,353,813
net_rshares24,080,749,597,659
author_curate_reward""
vote details (27)
@immanuel94 ·
Thank you for reviewing my contribution post. =)
properties (22)
authorimmanuel94
permlinkre-helo-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190419t091416782z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-19 09:14:18
last_update2019-04-19 09:14:18
depth2
children0
last_payout2019-04-26 09:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,375,996
net_rshares0
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190418t232306241z-20190421t092048z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-21 09:20:51
last_update2019-04-21 09:20:51
depth2
children0
last_payout2019-04-28 09:20:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation152,955,367,999,756
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,490,385
net_rshares0
@jongartv ·
$0.03
ich finde es nice dass man jetzt die Jetboots auch mit andere treibstoffen befüllen kann
👍  , ,
properties (23)
authorjongartv
permlinkre-immanuel94-c6be6d95-ed4a-4152-a3cd-52d80501c8ef
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK/0.1","format":"markdown"}
created2019-04-18 17:06:57
last_update2019-04-18 17:06:57
depth1
children1
last_payout2019-04-25 17:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation4,965,680,100,622
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,337,820
net_rshares47,880,985,401
author_curate_reward""
vote details (3)
@immanuel94 ·
Vielen Dank nochmal für dein Feedback. ;)
properties (22)
authorimmanuel94
permlinkre-jongartv-re-immanuel94-c6be6d95-ed4a-4152-a3cd-52d80501c8ef-20190418t172744002z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-18 17:27:45
last_update2019-04-18 17:27:45
depth2
children0
last_payout2019-04-25 17:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,338,829
net_rshares0
@jongartv ·
Hey @immanuel94,
bisher ist es so das dass Bauen und Abbauen Flag zusammen ist, ich fände es jedoch besser wenn es dafür getrennte Flags gebe. Also einmal ein Flag zum bauen und einmal ein Flag zum abbauen. Der Grund dafür ist dass  wenn man jemanden beauftragen möchte etwas zu bauen nur den Flag einstellen kann dass er bauen kann und keine anderen Blöcke abbauen kann so ist die Insel vor Griefern geschützt.
👍  ,
properties (23)
authorjongartv
permlinkre-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190423t201342013z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["immanuel94"],"app":"steemit/0.1"}
created2019-04-23 20:13:39
last_update2019-04-23 20:13:39
depth1
children1
last_payout2019-04-30 20:13:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length411
author_reputation4,965,680,100,622
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,637,525
net_rshares7,774,436,542
author_curate_reward""
vote details (2)
@immanuel94 ·
Hallo @jongartv! =)

Vielen Dank für dein Feedback, ja, das ist eine gute Idee. Ich schaue mal, wann das umgesetzt werden kann.^^
properties (22)
authorimmanuel94
permlinkre-jongartv-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190423t201449258z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["jongartv"],"app":"steemit/0.1"}
created2019-04-23 20:14:51
last_update2019-04-23 20:14:51
depth2
children0
last_payout2019-04-30 20:14:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,637,568
net_rshares0
@jongartv ·
Hey, ich habe nochmal einen verbesserungsvorschlag. Und zwar kann man die Lagersysteme nur öffnen wenn ein Block nach oben Platz ist/ eine Stufe drübert ist. Könnte man es vlt machen dass man die Lagersystem auch öffnen kann wenn ein block drüber ein Block ist, das würde oftmals schöner aussehen.
👍  
properties (23)
authorjongartv
permlinkre-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190424t184127874z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-24 18:41:27
last_update2019-04-24 18:41:27
depth1
children1
last_payout2019-05-01 18:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length297
author_reputation4,965,680,100,622
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,696,070
net_rshares560,511,536
author_curate_reward""
vote details (1)
@immanuel94 ·
Hallo @jongartv! =)

Das ist ein guter Vorschlag. Ich schaue mal, ob und wie sich das am besten umsetzen lässt. Aktuell ist mit 1.14 viel anderes zu erledigen, aber sofern Zeit ist, wird das gemacht.
properties (22)
authorimmanuel94
permlinkre-jongartv-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190424t184350745z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["jongartv"],"app":"steemit/0.1"}
created2019-04-24 18:43:54
last_update2019-04-24 18:43:54
depth2
children0
last_payout2019-05-01 18:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,696,170
net_rshares0
@pompe72 ·
$0.04
How do you earn Taler on SkyBlock?

Posted using [Partiko Android](https://partiko.app/referral/pompe72)
👍  ,
properties (23)
authorpompe72
permlinkpompe72-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190418t153110039z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-04-18 15:31:09
last_update2019-04-18 15:31:09
depth1
children1
last_payout2019-04-25 15:31:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation43,886,386,406,791
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,331,966
net_rshares65,457,689,580
author_curate_reward""
vote details (2)
@immanuel94 · (edited)
$0.02
Hey @pompe72! =)

Using the command `/store`, you can get to the store where you can buy/sell stuff. If you're in the menu, click on the red block to sell stuff.

Also, I'm currently on the translation to English, which should help with the navigation through these menus a lot. ^^
👍  ,
properties (23)
authorimmanuel94
permlinkre-pompe72-pompe72-re-immanuel94-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190418t161313324z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["pompe72"],"app":"steemit/0.1"}
created2019-04-18 16:13:15
last_update2019-04-18 23:12:51
depth2
children0
last_payout2019-04-25 16:13:15
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,335,045
net_rshares42,166,239,159
author_curate_reward""
vote details (2)
@solerohot2018 ·
$0.02
Die Neuerungen hören sich gut an.
👍  
properties (23)
authorsolerohot2018
permlinkre-immanuel94-91362b89-86be-4f3a-8a5d-97266e35056c
categoryutopian-io
json_metadata{"tags":["SteemSK"],"app":"STEEM.SK/0.1","format":"markdown"}
created2019-04-18 17:13:51
last_update2019-04-18 17:13:51
depth1
children1
last_payout2019-04-25 17:13:51
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation492,192,235,857
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,338,236
net_rshares46,388,968,640
author_curate_reward""
vote details (1)
@immanuel94 ·
👍
properties (22)
authorimmanuel94
permlinkre-solerohot2018-re-immanuel94-91362b89-86be-4f3a-8a5d-97266e35056c-20190418t172819804z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-18 17:28:21
last_update2019-04-18 17:28:21
depth2
children0
last_payout2019-04-25 17:28:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation212,637,383,853,137
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id83,338,861
net_rshares0
@steem-ua ·
#### Hi @immanuel94!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 3.670 which ranks you at **#5457** across all Steem accounts.
Your rank has improved 4260 places in the last three days (old rank 9717).

In our last Algorithmic Curation Round, consisting of 211 contributions, your post is ranked at **#154**.
##### Evaluation of your UA score:

* You're on the right track, try to gather more followers.
* The readers appreciate your great work!
* Try to work on user engagement: the more people that interact with you via the comments, the higher your UA score!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190419t000024z
categoryutopian-io
json_metadata"{"app": "beem/0.20.19"}"
created2019-04-19 00:00:24
last_update2019-04-19 00:00:24
depth1
children0
last_payout2019-04-26 00:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length744
author_reputation23,214,230,978,060
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,355,132
net_rshares0
@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/posts.png?201904181911</td><td>You published more than 150 posts. Your next target is to reach 200 posts.</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>


To support your work, I also upvoted your post!


###### [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)
authorsteemitboard
permlinksteemitboard-notify-immanuel94-20190418t202023000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-04-18 20:20:21
last_update2019-04-18 20:20:21
depth1
children0
last_payout2019-04-25 20:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length884
author_reputation38,975,615,169,260
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,346,013
net_rshares0
@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)
authorutopian-io
permlinkre-skyblock-minecraft-addon-26-top-list-sorting-new-flags-and-new-anti-afk-add-on-20190418t234834z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-18 23:48:36
last_update2019-04-18 23:48:36
depth1
children0
last_payout2019-04-25 23:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length592
author_reputation152,955,367,999,756
root_title"SkyBlock Minecraft Addon #26 - Top list sorting, new flags & new anti afk add-on"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,354,770
net_rshares0