{"id":81644,"date":"2026-06-04T19:38:59","date_gmt":"2026-06-04T16:38:59","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/"},"modified":"2026-06-04T19:38:59","modified_gmt":"2026-06-04T16:38:59","slug":"homabric","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/","title":{"rendered":"Homabric"},"content":{"rendered":"<p># Homabric<br \/>\n Little yet powerful home management mod for Fabric<\/p>\n<p>> \u26a0\ufe0fThis mod is in early stage of development, you can use all functions that are listed below, but they may be changed in future. Code quality might be very poor sometimes and it will be improved in future.<\/p>\n<p>### Features<\/p>\n<p>&#8211; \u2b50 Sharing homes with players.<br \/>\n&#8211; \u2b50 Max home limits per group or player via permissions.<br \/>\n&#8211; \u2b50 Using GUI for teleportation and viewing all home information.<br \/>\n&#8211; \u2b50 Editing home icons for GUI with support for modded items.<br \/>\n&#8211; \u2b50 Ability to easily configure the mod and view player locations.<br \/>\n&#8211; \u2b50 Teleport timeout with ability to prevent teleportation if player moved or got damaged.<\/p>\n<p>#### Planned features<\/p>\n<p>&#8211; [ ] Ability to define teleport timeout using permissions.<br \/>\n&#8211; [ ] Ability to define `\/home` command aliases in config.<br \/>\n&#8211; [ ] Rewrite code for better readability.<\/p>\n<p>### Languages<\/p>\n<p>&#8211; \ud83c\uddec\ud83c\udde7 English<br \/>\n&#8211; \ud83c\uddf7\ud83c\uddfa Russian<br \/>\n&#8211; \ud83c\udde8\ud83c\uddf3 Chinese (@Neubulae)<\/p>\n<p>## Commands<\/p>\n<p>You can use `homabric.teleport.bypass` permission to bypass teleport timeout.<\/p>\n<p>### Players<\/p>\n<p>&#8211; \/h **OR** \/home `homabric.base.use`<br \/>\n&#8211; \/h <name?> `homabric.base.byName`<br \/>\n&#8211; \/h set <name?> `homabric.base.set`<br \/>\n&#8211; \/h remove <home> `homabric.base.remove`<br \/>\n&#8211; \/h p <player> <home> `homabric.base.others`<br \/>\n&#8211; \/h list `homabric.base.list`<br \/>\n&#8211; \/h allow <player> <home> `homabric.base.allow`<br \/>\n&#8211; \/h disallow <player> <home> `homabric.base.disallow`<br \/>\n&#8211; \/h setIcon <home> <item identificator> `homabric.base.setIcon`<\/p>\n<p>### Admins<\/p>\n<p>You can access to admin commands by using `\/homabric`.<\/p>\n<p>&#8211; \/homabric `homabric.admin.use`<br \/>\n&#8211; \/homabric reload `homabric.admin.reload`<br \/>\n&#8211; \/homabric teleport <player> <home> `homabric.admin.teleport`<br \/>\n&#8211; \/homabric set <player> <home> `homabric.admin.set`<br \/>\n&#8211; \/homabric remove <player> <home> `homabric.admin.remove`<br \/>\n&#8211; \/homabric list <player> `homabric.admin.list`<\/p>\n<p>### Classic Commands<\/p>\n<p>You can disable these commands in configuration file by setting `enableClassicCommands` to `false`.<\/p>\n<p>&#8211; \/sethome <name> `homabric.base.set`<br \/>\n&#8211; \/removehome <home> `homabric.base.remove`<br \/>\n&#8211; \/playerhome <player> <home> `homabric.base.others`<br \/>\n&#8211; \/listhome `homabric.base.list`<br \/>\n&#8211; \/allowhome <player> <home> `homabric.base.allow`<br \/>\n&#8211; \/disallowhome <player> <home> `homabric.base.disallow`<\/p>\n<p>## Configuration<\/p>\n<p>I developed this mod with simplicity in mind, I decided to store home data inside the configuration file instead of NBT in Entity or World, this allows server owners fast migration between maps without loosing data and editing them which saves a lot of time.<\/p>\n<p>> \u26a0\ufe0f Starting from version 2.0.0 the configuration file are now split into two different ones.<\/p>\n<p>### homabric.config.conf<\/p>\n<p>This file stores Homabric settings.<\/p>\n<p>&#8220;`shell<br \/>\n# Do not touch this value, it allows mod to<br \/>\n# check if config file is outdated or not.<br \/>\nconfigVersion=3<br \/>\n# This option enables alternative command variants like \/sethome, \/removehome and etc.<br \/>\nenableClassicCommands=true<br \/>\n# Sets the maximum amount of homes per player.<br \/>\nhomesLimit=21<br \/>\n# You can define permissions that will override home limit for the players if they have them.<br \/>\n# Permission names are transformed to permissions like &#8216;homabric.homelimit.<permissionName>&#8216;<br \/>\n# Example permission: vip: { max-homes=6 }<br \/>\npermissionsHomeLimit {}<br \/>\n# Sets the timeout in seconds before player will be teleported home.<br \/>\n# You can disable this feature by setting it to 0.<br \/>\nteleportCooldown=5<br \/>\n&#8220;`<\/p>\n<p>### homabric.homes.conf<\/p>\n<p>This file contains all homes that are created by players.<\/p>\n<p>&#8220;`shell<br \/>\nplayers {<br \/>\n        # Player nickname (not a DisplayName)<br \/>\n        ExamplePlayer {<br \/>\n            # List of player homes<br \/>\n            homes {<br \/>\n                # Name of the home<br \/>\n                &#8220;village&#8221; {<br \/>\n                    # Players that can access this home<br \/>\n                    allowed-players=[]<br \/>\n                    # Icon must be an identifier, for example &#8216;minecraft:cobblestone&#8217;<br \/>\n                    icon=&#8221;minecraft:map&#8221;<br \/>\n                    # World where home is located<br \/>\n                    world=&#8221;minecraft:overworld&#8221;<br \/>\n                    # Coordinates, including head position<br \/>\n                    pitch=7.15<br \/>\n                    x=160.66<br \/>\n                    y=72.0<br \/>\n                    yaw=-51.45<br \/>\n                    z=-76.45<br \/>\n                }<br \/>\n                # Example of home with allowed player &#8216;Rogi27&#8217;<br \/>\n                home {<br \/>\n                    allowed-players=[<br \/>\n                        Rogi27<br \/>\n                    ]<br \/>\n                    icon=&#8221;minecraft:iron_shovel&#8221;<br \/>\n                    pitch=8.25<br \/>\n                    world=&#8221;minecraft:overworld&#8221;<br \/>\n                    x=1337.3<br \/>\n                    y=172.0<br \/>\n                    yaw=123.1<br \/>\n                    z=276.45<br \/>\n                }<br \/>\n            }<br \/>\n        }<br \/>\n    }<br \/>\n&#8220;`<\/p>\n<p>### Migration from 1.x.x<\/p>\n<p>Due to breaking changes in 2.0.0 you are required to manually edit your config file and move `players` section from original config to new one called `homabric.homes.conf`.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud83c\udfe0 Little yet powerful home management mod for Fabric<\/p>\n","protected":false},"featured_media":81645,"template":"","meta":{"_minecraft_slug":"homabric","_minecraft_project_id":"yfRb7tkQ","_minecraft_author":"rogi27","_minecraft_license":"LGPL-3.0-only","_minecraft_downloads":10042,"_minecraft_follows":49,"_minecraft_client_side":"optional","_minecraft_server_side":"optional","_minecraft_storage_type":"zip","_minecraft_archive_name":"homabric.zip","_minecraft_size_bytes":55666903,"_minecraft_version_count":21,"_minecraft_updated_at":"2026-05-16T06:06:45.688961Z","_minecraft_date_created":"2021-12-20T23:30:59.051873Z","_minecraft_date_modified":"2023-06-16T18:29:45.754527Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/homabric","_minecraft_icon_attachment_id":81645,"_minecraft_imported_at":"2026-06-04T16:39:00+00:00","_minecraft_import_hash":"ff1e1172bc9bd51a5a7a923ff72a2217","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,97,98,92],"mod_loader":[99,100],"minecraft_version":[50,602,603,604,605,606,51,623,624,625,626,52,627,628,629,630,53,635,636,637,638,54,655,656,55,56,57,58,59,36,639],"class_list":["post-81644","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-fabric","mod_category-quilt","mod_category-utility","mod_loader-fabric","mod_loader-quilt","minecraft_version-1-17-1","minecraft_version-1-17-1-pre1","minecraft_version-1-17-1-pre2","minecraft_version-1-17-1-pre3","minecraft_version-1-17-1-rc1","minecraft_version-1-17-1-rc2","minecraft_version-1-18","minecraft_version-1-18-rc1","minecraft_version-1-18-rc2","minecraft_version-1-18-rc3","minecraft_version-1-18-rc4","minecraft_version-1-18-1","minecraft_version-1-18-1-pre1","minecraft_version-1-18-1-rc1","minecraft_version-1-18-1-rc2","minecraft_version-1-18-1-rc3","minecraft_version-1-18-2","minecraft_version-1-18-2-pre1","minecraft_version-1-18-2-pre2","minecraft_version-1-18-2-pre3","minecraft_version-1-18-2-rc1","minecraft_version-1-19","minecraft_version-1-19-rc1","minecraft_version-1-19-rc2","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-22w11a"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Homabric - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Homabric - Minecraft\" \/>\n<meta property=\"og:description\" content=\"\ud83c\udfe0 Little yet powerful home management mod for Fabric\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/\",\"name\":\"Homabric - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp\",\"datePublished\":\"2026-06-04T16:38:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/homabric\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Homabric\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Homabric - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/","og_locale":"en_US","og_type":"article","og_title":"Homabric - Minecraft","og_description":"\ud83c\udfe0 Little yet powerful home management mod for Fabric","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/","name":"Homabric - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp","datePublished":"2026-06-04T16:38:59+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/homabric\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/homabric-icon-51aaef26a390aa4812b26e00e741905d37459640_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/homabric\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Homabric"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/81644","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/81645"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=81644"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=81644"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=81644"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=81644"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}