diff --git a/content/app/ideas.md b/content/app/ideas.md index 45c69d3..8960884 100644 --- a/content/app/ideas.md +++ b/content/app/ideas.md @@ -3,6 +3,12 @@ # Ideas for extensions and differences from current implementations +## max followers + +https://github.com/mastodon/mastodon/issues/20089 + +max followers? mastodon has a MAX_FOLLOWS and MAX_FOLLOW_RATIO so why not MAX_FOLLOWERS + ## Webfinger Content-Type of activitystreams profile i wonder if setting a Content-Type of `"application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\""` instead of `"application/activity+json"` would break anything diff --git a/content/gaming/_index.md b/content/gaming/_index.md new file mode 100644 index 0000000..f7ba421 --- /dev/null +++ b/content/gaming/_index.md @@ -0,0 +1,2 @@ ++++ ++++ \ No newline at end of file diff --git a/content/gaming/minecraft/_index.md b/content/gaming/minecraft/_index.md new file mode 100644 index 0000000..f7ba421 --- /dev/null +++ b/content/gaming/minecraft/_index.md @@ -0,0 +1,2 @@ ++++ ++++ \ No newline at end of file diff --git a/content/gaming/minecraft/server/_index.md b/content/gaming/minecraft/server/_index.md new file mode 100644 index 0000000..f7ba421 --- /dev/null +++ b/content/gaming/minecraft/server/_index.md @@ -0,0 +1,2 @@ ++++ ++++ \ No newline at end of file diff --git a/content/gaming/minecraft/server/multiverse.md b/content/gaming/minecraft/server/multiverse.md new file mode 100644 index 0000000..0a98272 --- /dev/null +++ b/content/gaming/minecraft/server/multiverse.md @@ -0,0 +1,64 @@ +# multiverse + +## skyblock in bukkit/spigot/paper + +prerequisites: +- multiverse-core +- multiverse-inventories +- multiverse-netherportals +- voidgen + +``` +/mvcreate world_skyblock NORMAL -g VoidGen:{structures:true,decoration:true,mobs:true} +/mvcreate world_skyblock_nether NORMAL -g VoidGen:{structures:true,decoration:true,mobs:true} +/mvcreate world_skyblock_the_end NORMAL -g VoidGen:{structures:true,decoration:true,mobs:true} +``` + +create a multiverse-inventories group to share player data + +``` +/mvinv group +create +# name the group something like "world_skyblock" +world_skyblock # add world +world_skyblock_nether # add world +world_skyblock_the_end # add world +@ # continue after adding all worlds +all # share all player data +@ # finish +``` + +go to the world and change settings + +``` +/mvtp world_skyblock +/gm c # go into creative, make a starter island +/mvsetspawn # set a reasonable spawn point +/mvmset respawnWorld world_skyblock # respawn in overworld +/mvmset diff hard +/mvmset allowflight false +/mvmset alias Skyblock +/mvmset color AQUA + +/mvtp world_skyblock_nether +/gm c # go into creative, make a starter island +/mvsetspawn # set a reasonable spawn point +/mvmset respawnWorld world_skyblock # respawn in overworld +/mvmset hidden true # hide non-overworld from mvlist +/mvmset diff hard +/mvmset allowflight false +/mvmset alias Skyblock +/mvmset color AQUA + +/mvtp world_skyblock_the_end +/gm c # go into creative, make a starter island +/mvsetspawn # set a reasonable spawn point +/mvmset respawnWorld world_skyblock # respawn in overworld +/mvmset hidden true # hide non-overworld from mvlist +/mvmset diff hard +/mvmset allowflight false +/mvmset alias Skyblock +/mvmset color AQUA +``` + +if you use essentialsx-chat: go to `plugins/Essentials/config.yml` and `chat.world-aliases` and define your aliases \ No newline at end of file