Setup simply sets up all your events for you. You can either extend it to a Basic setup or a normal setup. A basic setup, sets up the most used server events. The normal setup, sets up all the events from the event type.
public class Test extends BlockSetup{ @Override public void onBlockBreak(BlockBreakEvent event) { // TODO Auto-generated method stub }
The only thing you must do is replace the @Override with the new bukkit event system.
@EventHandler(priority = EventPriority.NORMAL)
BlockEvents
EntityEvents
PlayerEvents
WorldEvents
VehicleEvents
Build #100