{"id":19272241,"url":"https://github.com/restoremonarchyplugins/morehomes","last_synced_at":"2025-04-21T22:31:12.023Z","repository":{"id":53145147,"uuid":"173482275","full_name":"RestoreMonarchyPlugins/MoreHomes","owner":"RestoreMonarchyPlugins","description":"RocketMod 4 plugin for Unturned which allows players to have more than just one bed.","archived":false,"fork":false,"pushed_at":"2024-10-29T19:36:13.000Z","size":15130,"stargazers_count":6,"open_issues_count":4,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-29T21:39:15.046Z","etag":null,"topics":["mcrow","restoremonarchy","rocketmod","unturned","unturned-server","unturnedplugin"],"latest_commit_sha":null,"homepage":"https://restoremonarchy.com/plugins/morehomes","language":"C#","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RestoreMonarchyPlugins.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-02T18:10:48.000Z","updated_at":"2024-10-29T19:35:50.000Z","dependencies_parsed_at":"2024-06-14T07:03:35.767Z","dependency_job_id":null,"html_url":"https://github.com/RestoreMonarchyPlugins/MoreHomes","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RestoreMonarchyPlugins%2FMoreHomes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RestoreMonarchyPlugins%2FMoreHomes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RestoreMonarchyPlugins%2FMoreHomes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RestoreMonarchyPlugins%2FMoreHomes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RestoreMonarchyPlugins","download_url":"https://codeload.github.com/RestoreMonarchyPlugins/MoreHomes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223881264,"owners_count":17219262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcrow","restoremonarchy","rocketmod","unturned","unturned-server","unturnedplugin"],"created_at":"2024-11-09T20:35:58.964Z","updated_at":"2025-04-21T22:31:12.015Z","avatar_url":"https://github.com/RestoreMonarchyPlugins.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MoreHomes\n\nA plugin for Unturned that allows players to claim and teleport to multiple beds.\n\n## Features\n- Claim multiple beds as homes\n- Teleport to your homes with simple commands\n- Configurable cooldown and delay system\n- Teleportation cancels if player moves\n- Works with Teleportation plugin to check combat and raid status\n- VIP system for special cooldowns, delays, and home limits\n\n## Commands\n\n### Player Commands\n- `/home` - Teleport to your first home\n- `/home \u003cname\u003e` - Teleport to a specific home\n- `/homes` - List all your homes\n- `/destroyhome \u003cname\u003e` - Delete a home\n- `/renamehome \u003cname\u003e \u003cnew_name\u003e` - Rename a home\n\n### Admin Commands\n- `/restorehomes` - Rebuild homes database from all beds on the map (console only)\n\n## Configuration\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cMoreHomesConfiguration xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\u003e\n  \u003cMessageColor\u003eyellow\u003c/MessageColor\u003e\n  \u003cMessageIconUrl\u003ehttps://i.imgur.com/9TF5aB1.png\u003c/MessageIconUrl\u003e\n  \u003cDefaultHomeCooldown\u003e20\u003c/DefaultHomeCooldown\u003e\n  \u003cDefaultHomeDelay\u003e10\u003c/DefaultHomeDelay\u003e\n  \u003cDefaultMaxHomes\u003e2\u003c/DefaultMaxHomes\u003e\n  \u003cTeleportHeight\u003e0.5\u003c/TeleportHeight\u003e\n  \u003cCancelOnMove\u003etrue\u003c/CancelOnMove\u003e\n  \u003cMoveMaxDistance\u003e0.5\u003c/MoveMaxDistance\u003e\n  \u003cBlockUnderground\u003efalse\u003c/BlockUnderground\u003e\n  \u003cVIPCooldowns\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.vip\" Value=\"10\" /\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.star\" Value=\"5\" /\u003e\n  \u003c/VIPCooldowns\u003e\n  \u003cVIPDelays\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.vip\" Value=\"5\" /\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.star\" Value=\"3\" /\u003e\n  \u003c/VIPDelays\u003e\n  \u003cVIPMaxHomes\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.vip\" Value=\"3\" /\u003e\n    \u003cVIPPermission PermissionTag=\"morehomes.star\" Value=\"4\" /\u003e\n  \u003c/VIPMaxHomes\u003e\n\u003c/MoreHomesConfiguration\u003e\n```\n\n### Configuration Options\n\n- `MessageColor` - Color of plugin messages to players\n- `MessageIconUrl` - URL of the icon shown in messages\n- `DefaultHomeCooldown` - Seconds players must wait between using home teleport\n- `DefaultHomeDelay` - Seconds players must wait before teleportation happens\n- `DefaultMaxHomes` - Maximum number of homes a player can have\n- `TeleportHeight` - Height offset when teleporting to a bed\n- `CancelOnMove` - Whether teleportation should cancel if player moves\n- `MoveMaxDistance` - How far a player can move before teleport cancels\n- `BlockUnderground` - Prevent teleporting to beds located underground\n\n## VIP System\n\nThe VIP system uses permission tags to give players special benefits:\n\n- `VIPCooldowns` - Custom cooldown times for VIP players\n- `VIPDelays` - Custom delay times for VIP players\n- `VIPMaxHomes` - Custom maximum home limits for VIP players\n\nEach VIP setting contains:\n- `PermissionTag` - The permission node that players need to have\n- `Value` - The numeric value for that permission\n\nFor example:\n- `\u003cVIPPermission PermissionTag=\"morehomes.vip\" Value=\"3\" /\u003e` in VIPMaxHomes means players with \"morehomes.vip\" permission can have 3 homes\n- `\u003cVIPPermission PermissionTag=\"morehomes.star\" Value=\"5\" /\u003e` in VIPCooldowns means players with \"morehomes.star\" permission have a 5 second cooldown\n\nThe plugin always uses the best value for the player:\n- For cooldowns and delays: the lowest value from applicable permissions\n- For max homes: the highest value from applicable permissions\n\n## Player Permissions\n\n```xml\n\u003cPermission Cooldown=\"0\"\u003ehome\u003c/Permission\u003e\n\u003cPermission Cooldown=\"0\"\u003ehomes\u003c/Permission\u003e\n\u003cPermission Cooldown=\"0\"\u003edestroyhome\u003c/Permission\u003e\n\u003cPermission Cooldown=\"0\"\u003erenamehome\u003c/Permission\u003e\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestoremonarchyplugins%2Fmorehomes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frestoremonarchyplugins%2Fmorehomes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestoremonarchyplugins%2Fmorehomes/lists"}