/MCDocs/src/com/tazzernator/bukkit/mcdocs/MCDocs.java
https://bitbucket.org/atajsic/bukkit-plugins · Java · 69 lines · 27 code · 14 blank · 28 comment · 0 complexity · bccf670dcacc56b8fb7a69b438fe4f97 MD5 · raw file
- /*
- * MCDocs by Tazzernator
- * (Andrew Tajsic ~ atajsicDesigns ~ http://atajsic.com)
- *
- * THIS PLUGIN IS LICENSED UNDER THE WTFPL - (Do What The Fuck You Want To Public License)
- *
- * This program is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- *
- * TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- *
- * 0. You just DO WHAT THE FUCK YOU WANT TO.
- *
- * */
- package com.tazzernator.bukkit.mcdocs;
- //Java Import
- import java.util.logging.Logger;
- //Bukkit Import
- import org.bukkit.event.Event.Priority;
- import org.bukkit.event.Event;
- import org.bukkit.plugin.PluginDescriptionFile;
- import org.bukkit.plugin.java.JavaPlugin;
- import org.bukkit.plugin.PluginManager;
- import org.bukkit.configuration.file.FileConfiguration;
- /**
- * MCDocs Plugin for Bukkit
- *
- * @author Tazzernator
- *(Andrew Tajsic - atajsicDesigns - http://atajsic.com)
- *
- */
- public class MCDocs extends JavaPlugin {
- //Listener, Logger, Config.
- private final MCDocsListener playerListener = new MCDocsListener(this);
- public static final Logger log = Logger.getLogger("Minecraft");
- FileConfiguration config;
-
-
- public void onDisable() {
- PluginDescriptionFile pdfFile = this.getDescription();
- log.info("[" + pdfFile.getName() + "] (Tazzernator/Andrew Tajsic) - v" + pdfFile.getVersion() + " shutdown.");
- }
-
- public void onEnable() {
-
- config = this.getConfig();
- this.playerListener.setupConfig(config);
-
- //Register our events
- PluginManager pm = getServer().getPluginManager();
- pm.registerEvent(Event.Type.PLAYER_JOIN, this.playerListener, Priority.Normal, this);
- pm.registerEvent(Event.Type.PLAYER_COMMAND_PREPROCESS, this.playerListener, Priority.Normal, this);
- pm.registerEvent(Event.Type.PLAYER_QUIT, this.playerListener, Priority.Normal, this);
-
- PluginDescriptionFile pdfFile = this.getDescription();
- log.info("[" + pdfFile.getName() + "] (Tazzernator/Andrew Tajsic) - v" + pdfFile.getVersion() + " loaded.");
- }
-
-
- }