Added a teleport timer

This commit is contained in:
BongoCat 2022-07-16 15:28:36 -07:00
parent c10abbe228
commit 08c4cec910
3 changed files with 34 additions and 2 deletions

View 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>

View File

@ -1,6 +1,7 @@
package tech.nully.BossBarAPI; package tech.nully.BossBarAPI;
import com.comphenix.protocol.ProtocolLibrary; import com.comphenix.protocol.ProtocolLibrary;
import org.bukkit.Bukkit;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
@ -20,6 +21,8 @@ public class BossBar {
return bossHealth; return bossHealth;
} }
private TeleportScheduler t;
public void setHealth(int bossHealth) { public void setHealth(int bossHealth) {
this.bossHealth = bossHealth; this.bossHealth = bossHealth;
if (dragon != null) { if (dragon != null) {
@ -48,17 +51,20 @@ public class BossBar {
dragon.destroy(); dragon.destroy();
} }
} }
dragon = new SpawnFakeWither.FakeWither( dragon = new SpawnFakeWither.FakeWither(p, ProtocolLibrary.getProtocolManager());
new Location(p.getWorld(), p.getLocation().getX(), -15, p.getLocation().getZ()), ProtocolLibrary.getProtocolManager());
dragon.setCustomName(text); dragon.setCustomName(text);
dragon.setVisible(false); dragon.setVisible(false);
dragon.create(); dragon.create();
t = new TeleportScheduler(this);
Bukkit.getScheduler().scheduleSyncDelayedTask(Main.getInstance(), t, 100);
} }
public void delete() { public void delete() {
if (dragon != null) { if (dragon != null) {
if (dragon.created) { if (dragon.created) {
dragon.destroy(); dragon.destroy();
t.cancel();
} }
} }
} }

View 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();
}
}