Cooldown Module
Overview
Apollo's cooldown module allows servers to interact with the Cooldown mod found within Lunar Client.
- Create your own cooldowns for the Lunar Client cooldown mod.
- Add your own custom icon, visible within the cooldown.
- Set your own duration for each cooldown.
Display any in-game item, SVGs or textures found within resourcepacks! (1.7+)
Integration
Sample Code
Explore each integration by cycling through each tab, to find the best fit for your requirements and needs.
Displaying a Cooldown with an item
public void displayCooldownItemExample(Player viewer) {
Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
apolloPlayerOpt.ifPresent(apolloPlayer -> {
this.cooldownModule.displayCooldown(apolloPlayer, Cooldown.builder()
.name("enderpearl-cooldown")
.duration(Duration.ofSeconds(15))
.icon(ItemStackIcon.builder()
.itemName("ENDER_PEARL")
.build()
)
.build()
);
});
}
Displaying a Cooldown with a resource
public void displayCooldownResourceExample(Player viewer) {
Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
apolloPlayerOpt.ifPresent(apolloPlayer -> {
this.cooldownModule.displayCooldown(apolloPlayer, Cooldown.builder()
.name("lunar-cooldown")
.duration(Duration.ofSeconds(15))
.icon(SimpleResourceLocationIcon.builder()
.resourceLocation("lunar:logo/logo-200x182.svg")
.size(12)
.build()
)
.build()
);
});
}
Removing a Cooldown
public void removeCooldownExample(Player viewer) {
Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
apolloPlayerOpt.ifPresent(apolloPlayer -> {
this.cooldownModule.removeCooldown(apolloPlayer, "enderpearl-cooldown");
this.cooldownModule.removeCooldown(apolloPlayer, "lunar-cooldown");
});
}
Resetting all Cooldowns
public void resetCooldownsExample(Player viewer) {
Optional<ApolloPlayer> apolloPlayerOpt = Apollo.getPlayerManager().getPlayer(viewer.getUniqueId());
apolloPlayerOpt.ifPresent(this.cooldownModule::resetCooldowns);
}
Cooldown
Options
.name(String)
should include a unique identifier for the each cooldown.
.name("enderpearl-cooldown")
.duration(java.time.Duration)
the duration the cooldown should last for. See the java.time.Duration Javadocs (opens in a new tab) for more.
.duration(Duration.ofSeconds(15))
.icon(itemStackIcon)
is how you display a custom item icon. Read the icons utilities page to learn more about icons.
.icon(ItemStackIcon.builder().itemId("ENDER_PEARL").build())
.icon(SimpleResourceLocationIcon)
is how you display a custom texture icon. Read the icons utilities page to learn more about icons.
.icon(SimpleResourceLocationIcon.builder().resourceLocation("lunar:logo/logo-200x182.svg").size(12).build())