{"id":15143840,"url":"https://github.com/falkirks/simplewarp","last_synced_at":"2025-06-14T10:37:21.480Z","repository":{"id":17148040,"uuid":"19914737","full_name":"falkirks/SimpleWarp","owner":"falkirks","description":"The original warp plugin for PocketMine-MP","archived":false,"fork":false,"pushed_at":"2021-11-30T13:37:47.000Z","size":758,"stargazers_count":19,"open_issues_count":11,"forks_count":28,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-09-26T10:20:09.032Z","etag":null,"topics":["php","pocketmine-mp","pocketmine-plugins"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"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/falkirks.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}},"created_at":"2014-05-18T16:10:33.000Z","updated_at":"2023-05-20T19:38:06.000Z","dependencies_parsed_at":"2022-07-20T09:18:39.440Z","dependency_job_id":null,"html_url":"https://github.com/falkirks/SimpleWarp","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falkirks%2FSimpleWarp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falkirks%2FSimpleWarp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falkirks%2FSimpleWarp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falkirks%2FSimpleWarp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falkirks","download_url":"https://codeload.github.com/falkirks/SimpleWarp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219874556,"owners_count":16554593,"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":["php","pocketmine-mp","pocketmine-plugins"],"created_at":"2024-09-26T10:20:14.611Z","updated_at":"2024-09-26T10:20:16.001Z","avatar_url":"https://github.com/falkirks.png","language":"PHP","readme":"![SimpleWarp](/meta/simplewarp-2.png)\n\n![Poggit](https://poggit.pmmp.io/ci.shield/Falkirks/SimpleWarp/SimpleWarp)\n[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/Falkirks/SimpleWarp.svg)](http://isitmaintained.com/project/Falkirks/SimpleWarp \"Average time to resolve an issue\")\n![Total downloads](https://img.shields.io/github/downloads/Falkirks/SimpleWarp/total.svg)\n\nSimpleWarp is the original warp plugin for PocketMine-MP. It allows players to move from point **A** to **B** with ease. At the core of SimpleWarp is simplicity and extensibility. Although very easy on the end user, it exposes a powerful backend for developers to hack around with.\n \n**SimpleWarp 2.0 is not compatible with older SimpleWarp and PocketMine versions.**\n\n## Commands\n| Command | Usage | Description | \n| ------- | ----- | ----------- |\n| `/warp` | `/warp \u003cname\u003e [player]` | Warps you or another player to a specified warp. |\n| `/addwarp` | `/addwarp \u003cname\u003e [\u003cip\u003e \u003cport\u003e\\|\u003cx\u003e \u003cy\u003e \u003cz\u003e \u003clevel\u003e\\|\u003cplayer\u003e]` | Creates a new warp at a set location. |\n| `/delwarp` | `/delwarp \u003cname\u003e` | Deletes specified warp. |\n| `/listwarps` | `/listwarps` | Prints out list of warps. |\n| `/openwarp` | `/openwarp \u003cname\u003e` | Allows any player to access specified warp. |\n| `/closewarp` | `/closewarp \u003cname\u003e` | Restricts specfied so that only players with correct permission node can use it |\n| `/warpreport` | `/warpreport [title]` | Run from console to generate a new GitHub issue for SimpleWarp |\n\n## Permissions\n```yaml\n simplewarp:\n  default: op\n  children:\n   simplewarp.command:\n    default: op\n    children:\n     simplewarp.command.list:\n      default: true\n      children:\n       simplewarp.command.list.xyz:\n        default: op\n       simplewarp.command.list.visual:\n        default: op\n     simplewarp.command.addwarp:\n      default: op\n     simplewarp.command.delwarp:\n      default: op\n     simplewarp.command.warp:\n      default: true\n      children:\n        simplewarp.command.warp.other:\n         default: op\n     simplewarp.command.openwarp:\n      default: op\n     simplewarp.command.closewarp:\n       default: op\n     simplewarp.command.closewarp:\n       default: op\n   simplewarp.essentials.notice:\n    default: op\n    description: Recieve messages when their is warp conflict in Essentials\n   simplewarp.warp:\n    default: op\n    description: Allows usage of all warps\n```\n\n## API\nWhat good is a plugin without an API? SimpleWarp has an API which is used by it's own core components. \n\n### Getting access\nMake sure to add the following to your `plugin.yml`\n\n```yaml\ndepend: [\"SimpleWarp\"]\n```\n**Note:** If you use `softdepend` you will need to check if SimpleWarp is installed.\n\nNow you can a copy of the API in your `onEnable` method\n\n```php\n$api = SimpleWarpAPI::getInstance($this); // This only works inside a PluginBase\n```\n\nIf you want to get the instance outside your main class, you can do\n\n```php\n$api = $server-\u003egetPluginManager()-\u003egetPlugin(\"SimpleWarp\")-\u003egetApi(); // $server is an instance of \\pocketmine\\Server\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalkirks%2Fsimplewarp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalkirks%2Fsimplewarp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalkirks%2Fsimplewarp/lists"}