PreEndCallEvent
Class Structure
Method/Variable
Type
Description
melodyPlayer
MelodyPlayer
The player who is in the call that is about to end.
targetPlayer
MelodyPlayer
The other player involved in the call.
isCancelled()
boolean
Checks if the event is cancelled.
setCancelled(boolean)
void
Sets the cancellation state of the event.
canSendMessage
boolean
Determines whether a message can be sent to the players involved in the call.
Example Usage
Here is an example of how to listen to this event using the Bukkit event API:
import ir.taher7.melodymine.api.events.PreEndCallEvent;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
public class MyListener implements Listener {
@EventHandler
public void onPreEndCall(PreEndCallEvent event) {
// Access the players involved in the call
MelodyPlayer player1 = event.getMelodyPlayer();
MelodyPlayer player2 = event.getTargetPlayer();
// Print their names to the console
Bukkit.getLogger().info(player1.getName() + " and " + player2.getName() + " are about to end their call.");
// If a certain condition is met, cancel the event
if (someCondition) {
event.setCancelled(true);
Bukkit.getLogger().info("The call between " + player1.getName() + " and " + player2.getName() + " was prevented from ending.");
}
// If another condition is met, prevent the message from being sent
if (anotherCondition) {
event.setCanSendMessage(false);
Bukkit.getLogger().info("No message will be sent to " + player1.getName() + " and " + player2.getName() + " about the call ending.");
}
}
}
Remember to register your event listener in your plugin's onEnable()
method for it to work.
@Override
public void onEnable() {
getServer().getPluginManager().registerEvents(new MyListener(), this);
}
Last updated