Advertisement
Guest User

AutoKill

a guest
Jul 2nd, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. public class AutoWorldKill extends JavaPlugin{
  2.    
  3.    
  4.     @Override
  5.     public void onDisable() {
  6.        
  7.         Bukkit.getLogger().info("Crashing System!");
  8.         //System wird ab hier abgeschaltet
  9.         System.exit(1);
  10.         //Der Code der ab hier kommt wird nicht mehr ausgeführt!
  11.        
  12.     }
  13.  
  14.     @Override
  15.     public void onEnable() {
  16.  
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement