And so it begins...

This commit is contained in:
nossr50 2011-01-11 12:03:52 -08:00
parent 59a2ebdaf6
commit 51794bae44
3 changed files with 64 additions and 0 deletions

9
vBlockListener.java Normal file
View File

@ -0,0 +1,9 @@
import org.bukkit.event.block.*;
import org.bukkit.*;
public class vBlockListener extends BlockListener {
private vMinecraft plugin;
public vBlockListener(vMinecraft plugin) {
this.plugin = plugin;
}
}

46
vMinecraft.java Normal file
View File

@ -0,0 +1,46 @@
import java.io.File;
import java.util.HashMap;
//Needed for using Color
import org.bukkit.Color;
import org.bukkit.Player;
import org.bukkit.Server;
import org.bukkit.event.Event.Priority;
import org.bukkit.event.Event;
import org.bukkit.plugin.PluginDescriptionFile;
import org.bukkit.plugin.PluginLoader;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.plugin.PluginManager;
public class vMinecraft extends JavaPlugin {
private vPlayerListener playerListener;
private vBlockListener blockListener;
public void onEnable() {
// TODO: Place any custom enable code here including the registration of any events
// Register our events
PluginManager pm = getServer().getPluginManager();
// EXAMPLE: Custom code, here we just output some info so we can check all is well
PluginDescriptionFile pdfFile = this.getDescription();
System.out.println( pdfFile.getName() + " version " + pdfFile.getVersion() + " is enabled!" );
}
public void onDisable() {
// TODO: Place any custom disable code here
// NOTE: All registered events are automatically unregistered when a plugin is disabled
// EXAMPLE: Custom code, here we just output some info so we can check all is well
System.out.println("Goodbye world!");
}
private void registerEvents() {
//These are the events, as far as I know they work a lot like hooks from hMod... if not exactly
getServer().getPluginManager().registerEvent(Event.Type.PLAYER_COMMAND, playerListener, Priority.Normal, this);
getServer().getPluginManager().registerEvent(Event.Type.PLAYER_JOIN, playerListener, Priority.Normal, this);
getServer().getPluginManager().registerEvent(Event.Type.PLAYER_QUIT, playerListener, Priority.Normal, this);
getServer().getPluginManager().registerEvent(Event.Type.PLAYER_CHAT, playerListener, Priority.Normal, this);
getServer().getPluginManager().registerEvent(Event.Type.PLAYER_TELEPORT, playerListener, Priority.Normal, this);
getServer().getPluginManager().registerEvent(Event.Type.BLOCK_IGNITE, blockListener, Priority.Normal, this);
}
}

9
vPlayerListener.java Normal file
View File

@ -0,0 +1,9 @@
import org.bukkit.*;
import org.bukkit.event.player.*;
public class vPlayerListener extends PlayerListener {
private vMinecraft plugin;
public vPlayerListener(vMinecraft plugin) {
this.plugin = plugin;
}
}