Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grape-lol/launchpad
https://github.com/grape-lol/launchpad
minecraft minecraft-plugin minecraft-server paper-plugin papermc papermc-plugin spigot spigot-plugin spigotmc spigotmc-plugin
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/grape-lol/launchpad
- Owner: grape-lol
- Created: 2024-12-15T00:34:13.000Z (8 days ago)
- Default Branch: master
- Last Pushed: 2024-12-15T03:02:30.000Z (8 days ago)
- Last Synced: 2024-12-15T03:41:43.526Z (8 days ago)
- Topics: minecraft, minecraft-plugin, minecraft-server, paper-plugin, papermc, papermc-plugin, spigot, spigot-plugin, spigotmc, spigotmc-plugin
- Language: Java
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A Minecraft plugin designed to create launch pads that launches players into the air when they step on a specific block combination which you can change in the config!
Example Launch Pad:
![launch pad example](https://cdn.modrinth.com/data/TuKBwiKu/images/5ed4c2e4615a5d864b320cdd1822099421e4c631.png)**config.yml**
```
enable-plugin: true
disable-fall-damage: true# You need to have the name exact you can find a list here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
top-block: "STONE_PRESSURE_PLATE"
under-block: "GOLD_BLOCK"# I recommend testing these values for your needs
y-velocity: 2 # How high you want the player to go (not the exact y level because of multiply-velocity)
multiply-velocity: 3 # How much the players momentum multiples by# This sends a message when the player gets launched
message: true
message-cooldown: 1500 # In milliseconds 1000 = 1sec, this is recommended so it doesn't spam there chat
launch-message: "&aWeeee!"
```