EpicFlo

Members
  • Content Count

    202
  • Joined

  • Last visited

  • Days Won

    26
  • Minecraft Name

    EpicFlo

EpicFlo last won the day on January 22

EpicFlo had the most liked content!

Community Reputation

826 Ausgezeichnet

About EpicFlo

  • Rank
    Geschichtenerzähler
  • RP Volk:Nordmarer
  • EpicFlo

ERRUNGENSCHAFTEN

Recent Profile Visitors

6,470 profile views

Über mich

 package de.flo;

 import de.flo.Work;
 import org.bukkit.Bukkit;

 public class Flo extends Developer {
   private static Flo instance;
   public static Config config;

   public void onEnable() {
      instance = this;
      config = new Config(this);
      Work.getInstance().start(this);
      Bukkit.getConsoleSender().send("[Dev] Starting up. Be patient...");
   }

   public void onDisable() {
      Work.getInstance().stop(this);
      Bukkit.getConsoleSender().send("[Dev] Disabling. Be patient, eating some Magerquark...");
   }

 }