<div><a href="https://cdn.steemitimages.com/DQmYxUpvEgDUP22VXaQMAMZdCdtgRPFDDtsyQSDoU3HfVCp/2019-01-16_13.04.08.png"><img src="https://cdn.steemitimages.com/DQmYxUpvEgDUP22VXaQMAMZdCdtgRPFDDtsyQSDoU3HfVCp/2019-01-16_13.04.08.png"/> <div class="text-justify"><blockquote>Sausemaus suggested the inventory recovery, thank you!</blockquote></div></a> </div> --- Hello minecraft players and steemians, I want to show two new add-ons within this post I added recently to SKYBLOCK.SK; A Minecraft game mode, where the players have to build on a flying island with limited resources. SKYBLOCK.SK is licenced under the MIT licence, feel free to use it as you want. ### 1. Repository https://github.com/Abwasserrohr/SKYBLOCK.SK ### 2. Index 1. Repository 2. Index 3. New Features 3.1. Added JetBoots 3.2. Added ```islandtoplist``` function 3.3. Added inventory recovery 4. Pull requests 5. GitHub Account 6. How to contribute ### 3. New Features #### 3.1. Added JetBoots <div class="pull-right"><a href="https://cdn.steemitimages.com/DQmWDTvYLVC7Mb3ixf9wy5TncpEf69rRbpumqXAYjavWVxQ/jetboots-flying-1.gif"><img src="https://cdn.steemitimages.com/DQmWDTvYLVC7Mb3ixf9wy5TncpEf69rRbpumqXAYjavWVxQ/jetboots-flying-1.gif"/> <div class="text-justify"><blockquote>An example of a useful case, where the new JetBoots can help.</blockquote></div></a> </div> Players can now fly around the world using the JetBoots. The JetBoots are an add-on, which can disabled very easy by simply putting a "-" in front of the add-on file ```SkyBlock/addons/jetboots.sk```. This new add-on makes it possible to fly but with a cost. They have to be crafted out of 4 diamond blocks and two feathers, which makes them not only very expensive to create but also expensive in the maintenance. The server operator can define in the options of the add-on, how much should fuel fill up the JetBoots. If a player flies around, the fuel is reduced by 1 every tick. This means that the JetBoots are going to consume 20 fuel per second. As a default setting, this is one coal per second. Coal is now way more useful than before, which helps economy. <div class="pull-right"><a href="https://cdn.steemitimages.com/DQmWyEdtFpQhUxZTVdSVEAWHFhdDNWYWWgMwSaWBBTpmVEn/crafting_jetboots.gif"><img src="https://cdn.steemitimages.com/DQmWyEdtFpQhUxZTVdSVEAWHFhdDNWYWWgMwSaWBBTpmVEn/crafting_jetboots.gif"/> <div class="text-justify"><blockquote>The process of crafting the new JetBoots.</blockquote></div></a></div> For add-ons, I decided to also add options. This means that the server operator can change settings of a specific add-on no longer only directly in config.sk but also in the add-on file itself. ``` options: item_name: "&eJetBoots" ``` If the server operator wants to replace the name of the JetBoots, only this option has to be changed. ``` fuelworth: 20 flyspeed: 0.04 ``` Here, the flying speed of the JetBoots and the fuel worth can be set up. If wanted, a server operator could set the fuelworth to 1, which would mean that the JetBoots consume 20 coal per second or give more to make it easier. ``` fillinfo: "Fill &eJetBoots&r up with coal while wearing them." emptyinfo: "Your &eJetBoots&r are empty!" loadedinfo: "Your &eJetBoots&r have been filled up." ``` <div class="pull-right"><a href="https://cdn.steemitimages.com/DQmPX1SQ9t3oYtDecGnhJ6XsZ1CJSYeomTT8babsJSCBSdp/jetboots-refill.gif"><img src="https://cdn.steemitimages.com/DQmPX1SQ9t3oYtDecGnhJ6XsZ1CJSYeomTT8babsJSCBSdp/jetboots-refill.gif"/> <div class="text-justify"><blockquote>Refilling the JetBoots is easy. The player has to right click with coal while wearing the JetBoots to fill them up.</blockquote></div></a></div> If someone wants to run the JetBoots without SKYBLOCK.SK, I added a fallback English translation directly into the options, which are used if there is no language translation available. To make it possible to craft something like that, we have to register a shaped recipe, which means that the player has to put a specific shape of predefined items into the crafting table to get another predefined item out. This is how this can be done: --- ``` on load: set {_item} to diamond boots set name of {_item} to {@item_name} set line 1 of lore of {_item} to {@item_name} set line 2 of lore of {_item} to "&r0" register new shaped recipe for {_item} using air, air, air, diamond block, feather, diamond block, diamond block, feather, diamond block ``` I started with a {_item} variable, which I set to the item "diamond boots" and then I can change the name of the item and the lore (text below item name) of the variable to my needs. I can then register a new shaped recipe for that item, which is stored in the variable. The shaped recipe is hard-coded into the add-on. To make flying with the JetBoots something special, I added particle effects, I know that they aren't necessary but they look nice, I though. =D I added a function called ```jetparticle```, which only needs one parameter; A player, where the particles should appear. ``` function jetparticle(p:player): set {_l} to location of {_p} set {_x} to x-coord of {_l} set {_y} to y-coord of {_l} set {_z} to z-coord of {_l} set {_world} to {_p}'s world {_world}.spawnParticle(Particle.EXPLOSION_NORMAL!,{_x},{_y},{_z}, 0.5) ``` This function uses two Java classes from bukkit (server dependency), which allow the particle effects to be spawned. We need to spawn particles and make a particle effect above. <div class="pull-left"><a href="https://cdn.steemitimages.com/DQme12oqdT7oFgu6J4aLVZLPgDEDFtXLWX53KuC6xKYVqXe/jetboots-flying-2.gif"><img src="https://cdn.steemitimages.com/DQme12oqdT7oFgu6J4aLVZLPgDEDFtXLWX53KuC6xKYVqXe/jetboots-flying-2.gif"/> <div class="text-justify"><blockquote>Flying from bottom to top without stacking blocks is just a nice feeling.^^</blockquote></div></a></div> <div class="pull-right"><a href="https://cdn.steemitimages.com/DQmbi6ZQZiT53jzbBt5xMCvNadsjHAbZKYXv8GrpnT6m6rd/jetboots-flying-3.gif"><img src="https://cdn.steemitimages.com/DQmbi6ZQZiT53jzbBt5xMCvNadsjHAbZKYXv8GrpnT6m6rd/jetboots-flying-3.gif"/> <div class="text-justify"><blockquote>Flying over the island to make some screenshots or simply look around.</blockquote></div></a></div> Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/94 --- #### 3.2. Added ```islandtoplist``` function Adding more and more functions, which reduce the size of SKYBLOCK.SK and clean up some parts, the ```islandtoplist``` function is one of multiple upcoming functions, which are going to replace most of the ```SkyBlock/SKYBLOCK.SK/Commands.sk``` parts with only functions. Many parts, which are still in ```Commands.sk``` are still from the first basic creation. The newly created functions are going to be easier to read and better to maintain. Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/98 --- #### 3.3. Added inventory recovery <div class="pull-right"><a href="https://cdn.steemitimages.com/DQmNchKgh7jh3KviabTS1LfVsaa5d99CzbxTzoDFDo8kBxz/2019-01-16_11.40.20.png"><img src="https://cdn.steemitimages.com/DQmNchKgh7jh3KviabTS1LfVsaa5d99CzbxTzoDFDo8kBxz/2019-01-16_11.40.20.png"/> <div class="text-justify"><blockquote>The inventory recovery menu where players can buy the inventories by clicking on the chest they want.</blockquote></div></a></div> The inventory recovery is a controversial function. Some hate it, some love it. But one thing is for sure, once somebody loses his diamond tools, which are packed full of enchantments, which may took hundreds of hours to get, some people may quit the game forever. To prevent such high losses, I added the inventory recovery. Thanks to @sausemaus for suggesting this feature. While this makes the game far more easier, the server operator can disable this add-on of course at any moment by putting a "-" in front of the ```SkyBlock/addons/recovery.sk```. Also the prices for an inventory recovery can be set to a custom amount of money. Void and lava deaths can be expensive and people will be happy to see their valuable stuff again, no matter how much in-game money they have to pay. But it should be still affordable. To show a little part of this add-on and how this works, here is the part where the variables get created on the death of the player. ``` on death of player: set {_uuid} to uuid of player ``` To identify the player, even if the name is changed, we need the uuid of the player. ``` while {_s} is not set: set {_invuuid} to UUID.randomUUID() if {SR::recovery::time::%{_invuuid}%} is not set: set {_s} to true ``` Every inventory, which is stored on death gets its own uuid. To be sure that the uuid is unique and not some super rare case happens that we have two times the same random UUID, a while loop is used to be sure we have a unique uuid. ``` add {_invuuid} to {SR::recovery::player::%{_uuid}%::*} ``` Then, the inventory uuid is assigned to the players uuid to make it possible to track all inventory uuids of this player down, as we need that to recover them. ``` set {SR::recovery::time::%{_invuuid}%} to now ``` Storing everything forever is possible but not a good solution. This would fill up the space quickly with never used data. To prevent this from happening, the inventory is going to expiry at some point. The variable, which is set above is used to determine if the inventory is expired or not. ``` set {SR::recovery::idp::%{_invuuid}%} to {_uuid} ``` Also assign a player uuid to the inventory uuid, that way we can know who owns it. ``` set {SR::recovery::cause::%{_invuuid}%} to "%damage cause%" ``` There are different types of death. Not every death cause is going to remove all items or experience. There can be different prices for specific death causes like void death, which would be a guaranteed loss of all items and experience. Which would also allow a higher recovery price. ``` loop all items in player's inventory: set {_item} to loop-item add loop-item to {SR::recovery::inv::%{_invuuid}%::*} ``` Then, the inventory is looped through; everything is saved within a variable. ``` clear drops remove all 1 xp from drops ``` At the end, the drops of the players are cleared. This is needed to prevent duplication, since the player could get the drops back and also use the recovery. <div><a href="https://cdn.steemitimages.com/DQma5GS1CGgJU8gKsgTdiY2TGU5E6oqdgovXvTWN1K7Tjs2/2019-01-16_12.59.35.png"><img src="https://cdn.steemitimages.com/DQma5GS1CGgJU8gKsgTdiY2TGU5E6oqdgovXvTWN1K7Tjs2/2019-01-16_12.59.35.png"/> <div class="text-justify"><blockquote>Some people already lost their JetBoots due to deaths I'm sure that they're happy to get them back using the recovery menu now. =)</blockquote></div></a></div> Pull request: https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/100 </div> ### 4. Pull requests https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/94 https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/98 https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/100 ### 5. GitHub Account https://github.com/Abwasserrohr ### 6. How to contribute Are you interested in contributing to SKYBLOCK.SK? I'm looking forward to meet you on the Discord linked below. =) Discord: https://discord.gg/FRuK5BC --- Thank you for reading my contribution post. People have been asking for these add-ons for a while now, I'm now looking forward to get more feedback by users who test SKYBLOCK.SK for new add-ons and functions. While this may take a time, I'm now going to follow the roadmap and reduce the size if possible and also create some functions which may come in handy for some server operators, if they want to modify SKYBLOCK.SK. Feedback is highly appreciated. Just let me know what you think, thank you for taking the time. ^^ Keep on steeming @immanuel94
author | immanuel94 | ||||||
---|---|---|---|---|---|---|---|
permlink | open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11 | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"steempeak","app":"steempeak","format":"markdown","tags":["utopian-io","development","minecraft","skyblock","skript"],"users":["item","sausemaus","immanuel94"],"links":["https://cdn.steemitimages.com/DQmYxUpvEgDUP22VXaQMAMZdCdtgRPFDDtsyQSDoU3HfVCp/2019-01-16_13.04.08.png","https://github.com/Abwasserrohr/SKYBLOCK.SK","https://cdn.steemitimages.com/DQmWDTvYLVC7Mb3ixf9wy5TncpEf69rRbpumqXAYjavWVxQ/jetboots-flying-1.gif","https://cdn.steemitimages.com/DQmWyEdtFpQhUxZTVdSVEAWHFhdDNWYWWgMwSaWBBTpmVEn/crafting_jetboots.gif","https://cdn.steemitimages.com/DQmPX1SQ9t3oYtDecGnhJ6XsZ1CJSYeomTT8babsJSCBSdp/jetboots-refill.gif","https://cdn.steemitimages.com/DQme12oqdT7oFgu6J4aLVZLPgDEDFtXLWX53KuC6xKYVqXe/jetboots-flying-2.gif","https://cdn.steemitimages.com/DQmbi6ZQZiT53jzbBt5xMCvNadsjHAbZKYXv8GrpnT6m6rd/jetboots-flying-3.gif","https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/94","https://github.com/Abwasserrohr/SKYBLOCK.SK/pull/98","https://cdn.steemitimages.com/DQmNchKgh7jh3KviabTS1LfVsaa5d99CzbxTzoDFDo8kBxz/2019-01-16_11.40.20.png"],"image":["https://cdn.steemitimages.com/DQmYxUpvEgDUP22VXaQMAMZdCdtgRPFDDtsyQSDoU3HfVCp/2019-01-16_13.04.08.png","https://cdn.steemitimages.com/DQmWDTvYLVC7Mb3ixf9wy5TncpEf69rRbpumqXAYjavWVxQ/jetboots-flying-1.gif","https://cdn.steemitimages.com/DQmWyEdtFpQhUxZTVdSVEAWHFhdDNWYWWgMwSaWBBTpmVEn/crafting_jetboots.gif","https://cdn.steemitimages.com/DQmPX1SQ9t3oYtDecGnhJ6XsZ1CJSYeomTT8babsJSCBSdp/jetboots-refill.gif","https://cdn.steemitimages.com/DQme12oqdT7oFgu6J4aLVZLPgDEDFtXLWX53KuC6xKYVqXe/jetboots-flying-2.gif","https://cdn.steemitimages.com/DQmbi6ZQZiT53jzbBt5xMCvNadsjHAbZKYXv8GrpnT6m6rd/jetboots-flying-3.gif","https://cdn.steemitimages.com/DQmNchKgh7jh3KviabTS1LfVsaa5d99CzbxTzoDFDo8kBxz/2019-01-16_11.40.20.png","https://cdn.steemitimages.com/DQma5GS1CGgJU8gKsgTdiY2TGU5E6oqdgovXvTWN1K7Tjs2/2019-01-16_12.59.35.png"]} | ||||||
created | 2019-01-16 12:20:39 | ||||||
last_update | 2019-01-16 12:20:39 | ||||||
depth | 0 | ||||||
children | 11 | ||||||
last_payout | 2019-01-23 12:20:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 49.752 HBD | ||||||
curator_payout_value | 16.915 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 11,807 | ||||||
author_reputation | 212,637,383,853,137 | ||||||
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 78,452,640 | ||||||
net_rshares | 115,447,308,617,013 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 6,473,812,358,812 | 31.26% | ||
cmp2020 | 0 | 17,546,477,248 | 30% | ||
darkflame | 0 | 37,095,373,813 | 100% | ||
phusionphil | 0 | 438,127,842 | 1.9% | ||
remlaps1 | 0 | 21,191,443,105 | 30% | ||
cub1 | 0 | 83,084,461,525 | 30% | ||
remlaps2 | 0 | 1,917,528,600 | 30% | ||
erikaflynn | 0 | 15,129,879,036 | 35% | ||
lisa.palmer | 0 | 2,075,671,505 | 30% | ||
cub2 | 0 | 1,851,665,070 | 30% | ||
astronomyizfun | 0 | 1,565,487,268 | 30% | ||
miniature-tiger | 0 | 133,286,811,878 | 50% | ||
jassennessaj | 0 | 19,064,627,978 | 5% | ||
jga | 0 | 4,563,741,288 | 39.08% | ||
yehey | 0 | 10,092,365,098 | 10% | ||
freethink | 0 | 19,112,904,209 | 100% | ||
helo | 0 | 157,988,565,771 | 100% | ||
themarkymark | 0 | 521,113,459,312 | 50% | ||
clumsysilverdad | 0 | 16,456,147,461 | 10.9% | ||
accelerator | 0 | 21,342,892,951 | 1.5% | ||
espoem | 0 | 98,179,848,557 | 52.04% | ||
mcfarhat | 0 | 43,864,132,117 | 29.74% | ||
pierlave | 0 | 2,323,934,053 | 100% | ||
utopian-io | 0 | 104,419,830,861,272 | 78.16% | ||
jaff8 | 0 | 140,835,881,119 | 74.35% | ||
newsrx | 0 | 175,119,206 | 11.52% | ||
scipio | 0 | 25,007,195,287 | 25% | ||
amosbastian | 0 | 196,710,079,368 | 74.35% | ||
tdre | 0 | 79,955,811,161 | 100% | ||
asaj | 0 | 18,414,688,968 | 100% | ||
jjay | 0 | 500,813,047 | 100% | ||
portugalcoin | 0 | 7,482,746,268 | 15% | ||
holger80 | 0 | 379,173,278,977 | 72% | ||
effofex | 0 | 112,051,382 | 0.75% | ||
suntree | 0 | 12,672,202,812 | 100% | ||
kendallron | 0 | 227,957,013 | 15% | ||
ryuna.siege | 0 | 208,781,558 | 100% | ||
indayclara | 0 | 258,991,692 | 7.5% | ||
pinas | 0 | 450,831,001 | 50% | ||
camillesteemer | 0 | -10,138,511 | -100% | ||
lucky2 | 0 | 996,115,162,752 | 100% | ||
bestofph | 0 | 6,432,897,766 | 15% | ||
rgkmb-unofficial | 0 | 1,810,583,591 | 30% | ||
rgkmb | 0 | 108,354,508 | 30% | ||
ulockblock | 0 | 94,483,885,772 | 33.27% | ||
mops2e | 0 | 614,162,926 | 41.63% | ||
cmp2020-lite | 0 | 88,960,578 | 30% | ||
remlaps-lite | 0 | 101,258,788 | 30% | ||
steem-ua | 0 | 1,255,157,356,418 | 11.52% | ||
kaczynski | 0 | 249,315,145 | 100% | ||
efra00 | 0 | 31,659,562 | 100% | ||
steemitbuzz | 0 | 3,304,545,946 | 25% | ||
steemexpress | 0 | 892,347,954 | 1.69% | ||
curbot | 0 | 2,339,632,796 | 100% | ||
stmpay | 0 | 5,792,705,226 | 1.8% | ||
bluesniper | 0 | 6,217,990,862 | 0.36% | ||
grewin455 | 0 | 3,289,359,425 | 100% | ||
ascorphat | 0 | 880,385,595 | 2.5% | ||
samirajpoot | 0 | 0 | 100% | ||
cerd26 | 0 | 22,966,249 | 50% | ||
mgranja | 0 | 82,773,949,635 | 37% | ||
zacktime | 0 | 431,204,910 | 100% | ||
olligamer | 0 | 52,490,967 | 100% | ||
neno001hr | 0 | 139,629,812 | 100% | ||
yovannyjvv | 0 | 221,760,722 | 100% | ||
monstercrash | 0 | 199,339,188 | 100% | ||
ovo22 | 0 | 451,286,662 | 100% | ||
dustin-grim | 0 | 367,141 | 100% | ||
lobojt | 0 | 0 | 100% |
Coole Idee mit den LAgersystemen
author | bipoo |
---|---|
permlink | re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-1547816553 |
category | utopian-io |
json_metadata | {"tags":["steemcraft","skyroad","gaming"],"app":"steemcraft"} |
created | 2019-01-18 13:02:36 |
last_update | 2019-01-18 13:02:36 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 13:02:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 3,288,568,196 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,558,108 |
net_rshares | 55,562,566,912 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
immanuel94 | 0 | 55,562,566,912 | 32% |
- Awesome post, great animated gifs and code samples. - Great to see taking community feedback and building it into the game - 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-1-1-2-1-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-immanuel94-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190116t152504507z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-1-1-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-01-16 15:25:03 |
last_update | 2019-01-16 15:25:03 |
depth | 1 |
children | 2 |
last_payout | 2019-01-23 15:25:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.616 HBD |
curator_payout_value | 3.392 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 600 |
author_reputation | 121,547,934,535,311 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,459,339 |
net_rshares | 23,055,488,879,594 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 29,211,820,958 | 100% | ||
codingdefined | 0 | 23,324,318,724 | 20% | ||
themarkymark | 0 | 92,821,995,094 | 9% | ||
espoem | 0 | 27,664,854,692 | 15% | ||
utopian-io | 0 | 22,574,884,966,024 | 15.77% | ||
cheneats | 0 | 571,001,312 | 3% | ||
amosbastian | 0 | 72,293,259,210 | 28.05% | ||
nenya | 0 | 497,175,286 | 95% | ||
reazuliqbal | 0 | 12,811,773,619 | 10% | ||
hakancelik | 0 | 1,901,679,857 | 30% | ||
immanuel94 | 0 | 199,920,089,722 | 100% | ||
ulockblock | 0 | 13,544,673,363 | 4.9% | ||
nijn | 0 | 593,699,727 | 95% | ||
quenty | 0 | 4,124,166,286 | 71.25% | ||
ascorphat | 0 | 866,062,477 | 2.5% | ||
nimloth | 0 | 457,343,243 | 95% |
Thank you for reviewing my contribution. =) I'll try my best to always check on how the community feels about changes and also try to add new ideas in the future. :3
author | immanuel94 |
---|---|
permlink | re-helo-re-immanuel94-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190116t153950638z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 15:39:54 |
last_update | 2019-01-16 15:39:54 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 15:39:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 212,637,383,853,137 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 78,459,955 |
net_rshares | 0 |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-immanuel94-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190116t152504507z-20190119t045111z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-01-19 04:51:12 |
last_update | 2019-01-19 04:51:12 |
depth | 2 |
children | 0 |
last_payout | 2019-01-26 04:51:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,597,803 |
net_rshares | 0 |
Ich finde es cool das es jetzt auch lagersysteme gibt. Der preis ist angemessen dafΓΌr das man soviel damit machen kann
author | jongartv |
---|---|
permlink | re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-1547816571 |
category | utopian-io |
json_metadata | {"tags":["steemcraft","skyroad","gaming"],"app":"steemcraft"} |
created | 2019-01-18 13:02:51 |
last_update | 2019-01-18 13:02:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 13:02:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 4,965,680,100,622 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,558,135 |
net_rshares | 55,207,050,253 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
immanuel94 | 0 | 55,207,050,253 | 32% |
die funktion ist sehr praktisch
author | mcsiempre |
---|---|
permlink | re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-1547643485 |
category | utopian-io |
json_metadata | {"tags":["steemcraft","skyroad","gaming"],"app":"steemcraft"} |
created | 2019-01-16 12:58:06 |
last_update | 2019-01-16 12:58:06 |
depth | 1 |
children | 1 |
last_payout | 2019-01-23 12:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 12,102,344,856 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,453,902 |
net_rshares | 55,920,373,533 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
immanuel94 | 0 | 55,920,373,533 | 32% |
Hallo @mcsiempre. Ja, die sind durchaus sehr praktisch. =D Wenn auch teuer.^^
author | immanuel94 |
---|---|
permlink | re-mcsiempre-re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-1547643485-20190116t130215783z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcsiempre"],"app":"steemit/0.1"} |
created | 2019-01-16 13:02:18 |
last_update | 2019-01-16 13:02:18 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 13:02:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 212,637,383,853,137 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 78,454,026 |
net_rshares | 0 |
Hi, I see you're into minecraft modding, would you be interested in joining us in Minecolonies? =)
author | raycoms |
---|---|
permlink | re-immanuel94-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190120t113654886z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-20 11:36:54 |
last_update | 2019-01-20 11:36:54 |
depth | 1 |
children | 1 |
last_payout | 2019-01-27 11:36:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.074 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 115,046,969,395,583 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,657,682 |
net_rshares | 178,421,806,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
immanuel94 | 0 | 178,421,806,305 | 100% |
Hey @raycoms! =) I'm more into server side modding only and give players a good experience just using Vanilla. With resource packs, plugins and skripts, like this one. I already do so much Minecraft stuff that I'm happy if I can do something else than Minecraft... ._. Another Minecraft project isn't healthy for me right now, sorry. =D But I really like what you guys are doing there with Minecolonies, it's amazing!^^ I think I'm going to look into Hytale in the future and maybe join some open source projects there, since it looks like there are some fancy tools included to mod the hell out of it with less restrictions for server operators like Mojang does. :3 Have a great week.
author | immanuel94 |
---|---|
permlink | re-raycoms-re-immanuel94-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190120t231150621z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["raycoms"],"app":"steemit/0.1"} |
created | 2019-01-20 23:11:51 |
last_update | 2019-01-20 23:19:36 |
depth | 2 |
children | 0 |
last_payout | 2019-01-27 23:11:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 689 |
author_reputation | 212,637,383,853,137 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 78,683,964 |
net_rshares | 0 |
#### 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)**
author | steem-ua |
---|---|
permlink | re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190116t154852z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-16 15:48:54 |
last_update | 2019-01-16 15:48:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 15:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 289 |
author_reputation | 23,214,230,978,060 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,460,345 |
net_rshares | 0 |
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>
author | utopian-io |
---|---|
permlink | re-open-source-skyblock-minecraft-addon-jetboots-or-inventory-recovery-added-new-feature-11-20190117t120850z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-17 12:08:51 |
last_update | 2019-01-17 12:08:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 12:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 592 |
author_reputation | 152,955,367,999,756 |
root_title | "[Open Source] SkyBlock Minecraft Addon - JetBoots | Inventory recovery added [New feature #11]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,497,175 |
net_rshares | 0 |