diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 10:54:49 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 10:54:49 -0600 |
commit | 6d718d762735cbdd46a17c527712176fccd2a7da (patch) | |
tree | 10baa19041bc72c01647cb6260c475bf02fe070d | |
parent | 2968f7b9c1797c8ad125ef4a904da5f09b7a19ad (diff) | |
download | resurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar resurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar.gz resurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar.bz2 |
seeing if playerlistener class is working properly
-rw-r--r-- | TODO.md | 16 | ||||
-rw-r--r-- | out/production/Resurrection/net/brysonsteck/PlayerListener.class | bin | 1579 -> 1714 bytes | |||
-rw-r--r-- | out/production/Resurrection/net/brysonsteck/Resurrection.class | bin | 760 -> 889 bytes | |||
-rw-r--r-- | src/net/brysonsteck/PlayerListener.java | 1 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection.java | 3 |
5 files changed, 19 insertions, 1 deletions
@@ -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 Binary files differindex feee780..e4cf33b 100644 --- a/out/production/Resurrection/net/brysonsteck/PlayerListener.class +++ b/out/production/Resurrection/net/brysonsteck/PlayerListener.class diff --git a/out/production/Resurrection/net/brysonsteck/Resurrection.class b/out/production/Resurrection/net/brysonsteck/Resurrection.class Binary files differindex aca34c9..9b8a988 100644 --- a/out/production/Resurrection/net/brysonsteck/Resurrection.class +++ b/out/production/Resurrection/net/brysonsteck/Resurrection.class 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 |