49 lines
1.6 KiB
Java
49 lines
1.6 KiB
Java
package us.camin;
|
|
|
|
/*
|
|
This file is part of Caminus
|
|
|
|
Caminus is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Caminus is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Caminus. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import org.bukkit.configuration.Configuration;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.Event;
|
|
import org.bukkit.plugin.PluginManager;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
import java.util.HashMap;
|
|
import java.util.logging.Logger;
|
|
|
|
public class Plugin extends JavaPlugin {
|
|
|
|
Logger log = Logger.getLogger("Caminus");//Define your logger
|
|
private JoinListener m_listener;
|
|
|
|
public void onDisable() {
|
|
log.info("[Caminus] Plugin disabled");
|
|
}
|
|
|
|
public void onEnable() {
|
|
log.info("[Caminus] Plugin enabled");
|
|
|
|
PluginManager pm = this.getServer().getPluginManager();
|
|
m_listener = new JoinListener();
|
|
Configuration conf = getConfig();
|
|
conf.addDefault("url", "http://camin.us/api/");
|
|
String url = conf.getString("url");
|
|
m_listener.setURL(url);
|
|
pm.registerEvent(Event.Type.PLAYER_LOGIN, m_listener, Event.Priority.Normal, this);
|
|
}
|
|
}
|