mirror of
https://github.com/darverdevs/BossBarAPI.git
synced 2024-12-21 23:04:11 -08:00
commit
683a57af8f
10
.idea/runConfigurations.xml
Normal file
10
.idea/runConfigurations.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RunConfigurationProducerService">
|
||||
<option name="ignoredProducers">
|
||||
<set>
|
||||
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
||||
</set>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
|
@ -73,9 +73,9 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
<properties>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<java.version>1.8</java.version>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package tech.nully.BossBarAPI;
|
||||
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
|
@ -20,6 +21,8 @@ public class BossBar {
|
|||
return bossHealth;
|
||||
}
|
||||
|
||||
private TeleportScheduler t;
|
||||
|
||||
public void setHealth(int bossHealth) {
|
||||
this.bossHealth = bossHealth;
|
||||
if (dragon != null) {
|
||||
|
@ -48,17 +51,20 @@ public class BossBar {
|
|||
dragon.destroy();
|
||||
}
|
||||
}
|
||||
dragon = new SpawnFakeWither.FakeWither(
|
||||
new Location(p.getWorld(), p.getLocation().getX(), -15, p.getLocation().getZ()), ProtocolLibrary.getProtocolManager());
|
||||
dragon = new SpawnFakeWither.FakeWither(p, ProtocolLibrary.getProtocolManager());
|
||||
dragon.setCustomName(text);
|
||||
dragon.setVisible(false);
|
||||
dragon.create();
|
||||
|
||||
t = new TeleportScheduler(this);
|
||||
Bukkit.getScheduler().scheduleSyncDelayedTask(Main.getInstance(), t, 100);
|
||||
}
|
||||
|
||||
public void delete() {
|
||||
if (dragon != null) {
|
||||
if (dragon.created) {
|
||||
dragon.destroy();
|
||||
t.cancel();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
16
src/main/java/tech/nully/BossBarAPI/TeleportScheduler.java
Normal file
16
src/main/java/tech/nully/BossBarAPI/TeleportScheduler.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package tech.nully.BossBarAPI;
|
||||
|
||||
import org.bukkit.scheduler.BukkitRunnable;
|
||||
|
||||
public class TeleportScheduler extends BukkitRunnable {
|
||||
private BossBar b;
|
||||
|
||||
public TeleportScheduler(BossBar b) {
|
||||
this.b = b;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
b.display();
|
||||
}
|
||||
}
|
Binary file not shown.
BIN
target/BossBarAPI-0.0.1.jar
Normal file
BIN
target/BossBarAPI-0.0.1.jar
Normal file
Binary file not shown.
|
@ -1,3 +1,7 @@
|
|||
tech\nully\BossBarAPI\FakeWitherCommand$1.class
|
||||
tech\nully\BossBarAPI\BossBar.class
|
||||
tech\nully\BossBarAPI\FakeWitherCommand.class
|
||||
tech/nully/BossBarAPI/BossBar.class
|
||||
tech/nully/BossBarAPI/Main.class
|
||||
tech/nully/BossBarAPI/FakeWitherCommand$1.class
|
||||
tech/nully/BossBarAPI/SpawnFakeWither.class
|
||||
tech/nully/BossBarAPI/TeleportScheduler.class
|
||||
tech/nully/BossBarAPI/FakeWitherCommand.class
|
||||
tech/nully/BossBarAPI/SpawnFakeWither$FakeWither.class
|
||||
|
|
BIN
target/original-BossBarAPI-0.0.1.jar
Normal file
BIN
target/original-BossBarAPI-0.0.1.jar
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user