diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..1ed21f5 --- /dev/null +++ b/TODO.md @@ -0,0 +1,16 @@ +# TODO List + +### For first release + +* figure out how to get the player.data file to add a user when one joins the server for the first time +* get the player death event working +* figure out how to convert milliseconds to an actual date and time for the end user +* figure out commands and how to use them + * `about` + * `resurrect PLAYER` (resurrects a player now if needed) + +### For later releases + +* add ability to change time with new commands + * `change-time MILLISECONDS` (0 for default 1 day wait time) +* figure out how to get a version updater working using the web server (using JSON hopefully) diff --git a/out/production/Resurrection/net/brysonsteck/PlayerListener.class b/out/production/Resurrection/net/brysonsteck/PlayerListener.class index feee780..e4cf33b 100644 Binary files a/out/production/Resurrection/net/brysonsteck/PlayerListener.class and b/out/production/Resurrection/net/brysonsteck/PlayerListener.class differ diff --git a/out/production/Resurrection/net/brysonsteck/Resurrection.class b/out/production/Resurrection/net/brysonsteck/Resurrection.class index aca34c9..9b8a988 100644 Binary files a/out/production/Resurrection/net/brysonsteck/Resurrection.class and b/out/production/Resurrection/net/brysonsteck/Resurrection.class differ diff --git a/src/net/brysonsteck/PlayerListener.java b/src/net/brysonsteck/PlayerListener.java index 8a57624..c9a175c 100644 --- a/src/net/brysonsteck/PlayerListener.java +++ b/src/net/brysonsteck/PlayerListener.java @@ -8,6 +8,7 @@ import org.bukkit.event.entity.PlayerDeathEvent; public class PlayerListener implements Listener { @EventHandler public void onDeath(PlayerDeathEvent e) { + System.out.println("Resurrection: A player has died!"); Player p = e.getEntity(); Long timeOfDeath = System.currentTimeMillis(); Long resurrectionTime = timeOfDeath + 86400000; diff --git a/src/net/brysonsteck/Resurrection.java b/src/net/brysonsteck/Resurrection.java index 74fc8af..25008b8 100644 --- a/src/net/brysonsteck/Resurrection.java +++ b/src/net/brysonsteck/Resurrection.java @@ -19,7 +19,8 @@ public class Resurrection extends JavaPlugin { @Override public void onEnable() { super.onEnable(); - System.out.println("I'm alive!"); + System.out.println("Resurrection: I'm alive!"); + PlayerListener playerListener = new PlayerListener(); } // end of spigot things