diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 00:15:30 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 00:15:30 -0600 |
commit | d308671441ce473bc2b56fa166d7a214aec980c6 (patch) | |
tree | a5736c00452c6ab4bebf833ba594a6027bf33069 | |
parent | 6b9e7b28e59a274ee2881f388649357b651cf037 (diff) | |
download | resurrection-d308671441ce473bc2b56fa166d7a214aec980c6.tar resurrection-d308671441ce473bc2b56fa166d7a214aec980c6.tar.gz resurrection-d308671441ce473bc2b56fa166d7a214aec980c6.tar.bz2 |
allowing out folder for now
15 files changed, 32 insertions, 3 deletions
@@ -1,3 +1,3 @@ .idea/ -out/ + Resurrection.iml diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar Binary files differnew file mode 100644 index 0000000..3669061 --- /dev/null +++ b/out/artifacts/Resurrection_jar/Resurrection.jar diff --git a/out/production/DeadForADay/net/brysonsteck/DeadForADay.class b/out/production/DeadForADay/net/brysonsteck/DeadForADay.class Binary files differnew file mode 100644 index 0000000..6fe8bca --- /dev/null +++ b/out/production/DeadForADay/net/brysonsteck/DeadForADay.class diff --git a/out/production/DeadForADay/net/brysonsteck/PlayerData.class b/out/production/DeadForADay/net/brysonsteck/PlayerData.class Binary files differnew file mode 100644 index 0000000..978e898 --- /dev/null +++ b/out/production/DeadForADay/net/brysonsteck/PlayerData.class diff --git a/out/production/DeadForADay/net/brysonsteck/plugin.yml b/out/production/DeadForADay/net/brysonsteck/plugin.yml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/out/production/DeadForADay/net/brysonsteck/plugin.yml diff --git a/out/production/Resurrection/META-INF/MANIFEST.MF b/out/production/Resurrection/META-INF/MANIFEST.MF new file mode 100644 index 0000000..6af58fd --- /dev/null +++ b/out/production/Resurrection/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0
+Main-Class: Resurrection
+
diff --git a/out/production/Resurrection/net/brysonsteck/PlayerAttributes.class b/out/production/Resurrection/net/brysonsteck/PlayerAttributes.class Binary files differnew file mode 100644 index 0000000..831949d --- /dev/null +++ b/out/production/Resurrection/net/brysonsteck/PlayerAttributes.class diff --git a/out/production/Resurrection/net/brysonsteck/PlayerData.class b/out/production/Resurrection/net/brysonsteck/PlayerData.class Binary files differnew file mode 100644 index 0000000..3b9818b --- /dev/null +++ b/out/production/Resurrection/net/brysonsteck/PlayerData.class diff --git a/out/production/Resurrection/net/brysonsteck/PlayerListener.class b/out/production/Resurrection/net/brysonsteck/PlayerListener.class Binary files differnew file mode 100644 index 0000000..feee780 --- /dev/null +++ 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 differnew file mode 100644 index 0000000..aca34c9 --- /dev/null +++ b/out/production/Resurrection/net/brysonsteck/Resurrection.class diff --git a/out/production/Resurrection/net/brysonsteck/plugin.yml b/out/production/Resurrection/net/brysonsteck/plugin.yml new file mode 100644 index 0000000..36632da --- /dev/null +++ b/out/production/Resurrection/net/brysonsteck/plugin.yml @@ -0,0 +1,3 @@ +main: net.brysonsteck.Resurrection +name: Resurrection +version: alpha 0.0.1
\ No newline at end of file diff --git a/src/META-INF/MANIFEST.MF b/src/META-INF/MANIFEST.MF new file mode 100644 index 0000000..6af58fd --- /dev/null +++ b/src/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0
+Main-Class: Resurrection
+
diff --git a/src/net/brysonsteck/PlayerListener.java b/src/net/brysonsteck/PlayerListener.java new file mode 100644 index 0000000..8a57624 --- /dev/null +++ b/src/net/brysonsteck/PlayerListener.java @@ -0,0 +1,17 @@ +package net.brysonsteck; + +import org.bukkit.entity.Player; +import org.bukkit.event.EventHandler; +import org.bukkit.event.Listener; +import org.bukkit.event.entity.PlayerDeathEvent; + +public class PlayerListener implements Listener { + @EventHandler + public void onDeath(PlayerDeathEvent e) { + Player p = e.getEntity(); + Long timeOfDeath = System.currentTimeMillis(); + Long resurrectionTime = timeOfDeath + 86400000; + + p.sendMessage("You have died at " + timeOfDeath + ". You will respawn at " + resurrectionTime); + } +} diff --git a/src/net/brysonsteck/Resurrection.java b/src/net/brysonsteck/Resurrection.java index c4553e8..74fc8af 100644 --- a/src/net/brysonsteck/Resurrection.java +++ b/src/net/brysonsteck/Resurrection.java @@ -8,7 +8,7 @@ import java.io.*; import java.nio.Buffer; public class Resurrection extends JavaPlugin { - public Plugin plugin = getPlugin(Resurrection.class); +// public Plugin plugin = getPlugin(Resurrection.class); //spigot things @Override @@ -19,7 +19,7 @@ public class Resurrection extends JavaPlugin { @Override public void onEnable() { super.onEnable(); - + System.out.println("I'm alive!"); } // end of spigot things diff --git a/src/net/brysonsteck/plugin.yml b/src/net/brysonsteck/plugin.yml index e69de29..36632da 100644 --- a/src/net/brysonsteck/plugin.yml +++ b/src/net/brysonsteck/plugin.yml @@ -0,0 +1,3 @@ +main: net.brysonsteck.Resurrection +name: Resurrection +version: alpha 0.0.1
\ No newline at end of file |