Simple Elevators | [1.8 - 26.2] icon

Simple Elevators | [1.8 - 26.2] -----

Multi Combination Elevators featuring Particles, Actionbars, Titlebars, Sounds and More!



[3.15.1] API + Fix!
[​IMG]

  • Fix | Resolved an issue where Simple Elevators could fail to detect the server version on certain builds, causing material/block parsing errors on startup. Version checks have been unified and are now far more reliable across all supported versions.

  • Elevator API | Developers can now hook into Simple Elevators! A new cancellable ElevatorEvent is fired right before a player is elevated, giving you access to the player, the from/to locations and the direction. You can listen to it to react to elevations or cancel them entirely.
    Code (Java):
    import com.live.bemmamin.elevator.Direction ;
    import com.live.bemmamin.elevator.event.ElevatorEvent ;
    import org.bukkit.Location ;
    import org.bukkit.entity.Player ;
    import org.bukkit.event.EventHandler ;
    import org.bukkit.event.Listener ;

    public class MyElevatorListener implements Listener {

        @EventHandler
        public void onElevate (ElevatorEvent event ) {
            Player player = event. getPlayer ( ) ;
            Location from = event. getFrom ( ) ;
            Location to = event. getTo ( ) ;
            Direction direction = event. getDirection ( ) ;

            // Cancel the elevation if you want to block it
            if ( !player. hasPermission ( "myplugin.elevate" ) ) {
                event. setCancelled ( true ) ;
            }
        }
    }
----------, Jun 6, 2026
Resource Information
Author:
----------
Total Downloads: 180,010
First Release: Jul 24, 2017
Last Update: Jun 6, 2026
Category: ---------------
All-Time Rating:
121 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings