Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaborszita/realisticelevator
Elevator plugin for Minecraft Bukkit/Spigot.
https://github.com/gaborszita/realisticelevator
java minecraft minecraft-plugin
Last synced: 15 days ago
JSON representation
Elevator plugin for Minecraft Bukkit/Spigot.
- Host: GitHub
- URL: https://github.com/gaborszita/realisticelevator
- Owner: gaborszita
- License: gpl-3.0
- Created: 2022-07-25T01:42:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-14T04:19:09.000Z (about 2 years ago)
- Last Synced: 2024-10-15T21:31:25.015Z (about 1 month ago)
- Topics: java, minecraft, minecraft-plugin
- Language: Java
- Homepage:
- Size: 257 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: COPYING
Awesome Lists containing this project
README
# RealisticElevator
RealisticElevator is a plugin for Minecraft which lets players create elevators.
## Commands
| Command | Description | Usage | Arguments | Permission |
|---------------------------------|---------------------------------------------------------|-------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
| /elevator adddoor | Adds a door to an elevator. | /elevator adddoor [elevator name] [x] [y] [z] | [elevator name] - Name of the elevator to add the door to.
[x] [y] [z] - Coordinates of the door relative to the elevator's master block (block of the elevator whose coordinates are the smallest). | realisticelevator.adddoor |
| /elevator addfloor | Adds a floor to an elevator. | /elevator addfloor [elevator name] [floor number] [x] [y] [z] | [elevator name] - Name of the elevator
[floor number] - Floor number
[x] [y] [z] - Coordinates of the door relative to the elevator's master block (block of the elevator whose coordinates are the smallest). | realisticelevator.addfloor |
| /elevator addfloordoor | Adds a door to an elevator floor. | /elevator addfloordoor [elevator name] [floor number] [x] [y] [z] | [elevator name] - Name of the elevator
[floor number] - Floor number
[x] [y] [z] - Coordinates of the door
| realisticelevator.addfloordoor |
| /elevator create | Creates a new elevator in a cuboid area. | /elevator create create [name] [x1] [y1] [z1] [x2] [y2] [z2] | [name] - Name of the elevator
[x1] [y1] [z1] - Coordinates of the first vertex of the cuboid
[x2] [y2] [z2] - Coordinates of the second vertex of the cuboid | realisticelevator.create |
| /elevator delete | Deletes an elevator. | /elevator delete [name] | [name] - Name of the elevator to delete | realisticelevator.delete |
| /elevator info | Lists coordinates of an elevator. | /elevator info [elevator name] | [elevator name] - the name of the elevator | realisticelevator.info |
| /elevator getfloorcallbutton | Gets the location of the floor call button for a floor. | /elevator getfloorcallbutton [elevator name] [floor number] | [elevator name] - Name of the elevator
[floor number] - Floor number | realisticelevator.getfloorcallbutton |
| /elevator getmasterblock | Gets the master block of an elevator. | /elevator getmasterblock [elevator name] | [elevator name] - Name of the elevator | realisticelevator.getmasterblock |
| /elevator goto | Goes to a floor. Player has to be in an elevator. | /elevator goto [floor] | [floor] - Floor to go to | realisticelevator.goto |
| /elevator listdoors | Lists all doors for an elevator. | /elevator listdoors [elevator name] | [elevator name] - the name of the elevator | realisticelevator.listdoors |
| /elevator list | Lists all elevators on this server. | /elevator list | | realisticelevator.list |
| /elevator listfloordoors | Lists doors for an elevator floor. | /elevator listfloordoors [elevator name] [floor number] | [elevator name] - the name of the elevator
[floor number] - Floor number | realisticelevator.listfloordoors |
| /elevator listfloors | Lists all floors of an elevator. | /elevator listfloors [elevator name] | [elevator name] - Name of the elevator | realisticelevator.listfloors |
| /elevator removedoor | Removes a door from an elevator. | /elevator removedoor [elevator name] [x] [y] [z] | [elevator name] - Name of the elevator to remove the door from.
[x] [y] [z] - Coordinates of the door relative to the elevator's master block (block of the elevator whose coordinates are the smallest). | realisticelevator.removedoor |
| /elevator removefloor | Removes a floor from an elevator. | /elevator removefloor [elevator name] [floor number] | [elevator name] - Name of the elevator
[floor number] - Number of the floor to remove | realisticelevator.removefloor |
| /elevator removefloorcallbutton | Removes a floor call button from an elevator. | /elevator removefloorcallbutton [elevator name] [floor number] | [elevator name] - Name of the elevator
[floor number] - Number of the floor to remove call button from | realisticelevator.removefloorcallbutton |
| /elevator removefloordoor | Removes a door from a floor. | /elevator removefloordoor [elevator name] [floor number] [x] [y] [z] | [elevator name] - Name of the elevator
[floor number] - Floor number
[x] [y] [z] - Coordinates of the door
| realisticelevator.removefloordoor |
| /elevator setlocation | Sets the location of an elevator. | /elevator setlocation [name] [x1] [y1] [z1] [x2] [y2] [z2] | [name] - Name of the elevator
[x1] [y1] [z1] - Coordinates of the first vertex of the cuboid
[x2] [y2] [z2] - Coordinates of the second vertex of the cuboid | realisticelevator.setlocation |
| /elevator setfloorcallbutton | Sets the call button for a floor. | /elevator setfloorcallbutton [elevator name] [floor number] [x] [y] [z] | [elevator name] - Name of the elevator
[floor number] - Number of the floor to add call button to
[x] [y] [z] - Coordinates of the call button | realisticelevator.setfloorcallbutton |I highly recommend giving everyone the `realisticelevator.goto` permission, because, in my opinion, everyone should be able to use all elevators.
## Compiling
RealisticElevator is written for Java 8 and uses Maven as its build system. To build the plugin JAR, run the Maven package lifecycle.