Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a minor spelling problem #6

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# PhpStorm
.idea/

# Composer
vendor/
4 changes: 2 additions & 2 deletions .poggit.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Ad5001/PlayerSelectors
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/fuyutsuki/PlayerSelectors
branches:
- master
projects:
PlayerSelectors:
path: ""
icon: icon.png
icon: /assets/icon.png
...
File renamed without changes.
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
## This repository was moved to [git.ad5001.eu](https://git.ad5001.eu/Ad5001/PlayerSelectors)
> The original developer is Ad5001, but because development is stopped, I develop it instead.

<h1>
<img src="https://github.com/Ad5001/PlayerSelectors/raw/master/icon.png" width="36px" height="36px">&nbsp;&nbsp;PlayerSelectors -
<a href="https://poggit.pmmp.io/p/PlayerSelectors"><img src="https://poggit.pmmp.io/shield.approved/PlayerSelectors"></a>
<img src="https://github.com/fuyutsuki/PlayerSelectors/raw/master/assets/icon.png" width=72 height=72>&nbsp;&nbsp;PlayerSelectors
</h1>
Implementation of minecraft selectors into PocketMine!

<h1><img src="https://png.icons8.com/?id=365&size=1x">&nbsp;&nbsp;How to install?</h1>
## How to install?
1. Download the .phar file from the link given at the top of the repo
2. Put that phar into your "plugins" folder
3. Restart your server and Selectors should be reay to go!

<h1><img src="https://png.icons8.com/?id=3330&size=1x">&nbsp;&nbsp;Implemented features</h1>
PlayerSelectors implements all the default minecraft selectors:<br>
- @a - All players<br>
- @p - Nearset player<br>
- @e - Entities<br>
- @r - Random player<br>
- @s - Self/Sender<br>
but also features a custom made one:<br>
Since PocketMine implements a multi world system, you can easily select players from your current world using the "@w" selector!
<br><br>
## Implemented features
PlayerSelectors implements all the default minecraft selectors:
- @a - All players
- @p - Nearset player
- @e - Entities
- @r - Random player
- @s - Self/Sender

### but also features a custom made one:
Since PocketMine implements a multi-world-system, you can easily select players from your current world using the "@w" selector!

Minecraft also supports specific search parameters such as the distance from the sender, the count of matched player/entities, ...<br>
All the standard minecraft search params can be used with the syntax

Expand Down
File renamed without changes
67 changes: 67 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"name": "fuyutsuki/playerselectors",
"description": "Minecraft selectors (@A, @p, @r, @e, @s) added to pocketmine.",
"type": "project",
"homepage": "https://github.com/fuyutsuki/PlayerSelectors",
"license": "NTOS",
"require": {
"php": ">=7.2.0",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-phar": "*",
"ext-pthreads": ">=3.1.7dev",
"ext-reflection": "*",
"ext-sockets": "*",
"ext-spl": "*",
"ext-yaml": ">=2.0.0",
"ext-zip": "*",
"ext-zlib": ">=1.2.11",
"pocketmine/pocketmine-mp": "^3.0",
"pocketmine/raklib": "^0.12.0",
"pocketmine/spl": "^0.3.0",
"pocketmine/binaryutils": "^0.1.0",
"pocketmine/nbt": "^0.2.0",
"pocketmine/math": "^0.2.0",
"pocketmine/snooze": "^0.1.0"
},
"autoload": {
"psr-4": {
"": ["src"]
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pmmp/PocketMine-MP"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/RakLib"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/SPL"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/BinaryUtils"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/NBT"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/Math"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/Snooze"
}
]
}
Loading