Advertisement
MsGamerHD

Untitled

Sep 21st, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1.     @EventHandler(priority = EventPriority.HIGHEST)
  2.     public void onPlayerLogin(PlayerLoginEvent e) {
  3.         String ip = e.getHostname().toString().split(":")[0];
  4.        
  5.         if(!(ip.toLowerCase().endsWith("msgamerhd.de") || ip.toLowerCase().endsWith("lostisland.de"))){
  6.             e.disallow(Result.KICK_BANNED, "§4Eine Sicherheitslück wurde erkannt!"
  7.                     + "\n§eBitte benutze die Adresse §fLostIsland.de §eoder §fMsGamerHD.de");
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement