22 lines
641 B
Markdown
Executable file
22 lines
641 B
Markdown
Executable file
# Teleportation Stick
|
|
Built for 1.21.1.
|
|
|
|
|
|
A small plugin for making a Teleportation Stick that works in game, with a cost. This allows players to teleport with a material cost. The sticks are
|
|
- 1. Bound to an individual player
|
|
- 2. Have 20 uses before being destroyed
|
|
|
|
They are made like this:
|
|
```kotlin
|
|
recipe.shape("x, Emerald Block, x",
|
|
"Diamond, Stick, Diamond",
|
|
"x, Diamond ,x")
|
|
```
|
|
After which, a stick that can be bound to a player by hitting them is born.
|
|
|
|
Once boumd, you can use copper blocks to teleport to them
|
|
# Build
|
|
```
|
|
mvn install
|
|
```
|
|
then place the target/TeleRod-1.0.jar into your plugins/ server
|