EdPrisonAddMultiplierCurrency

Event when a currency is added and it can be affected by a multiplier.

/**
 * Gets the UUID of the player associated with the event.
 *
 * @return The UUID of the player.
 */
public UUID getUUID() {
    // Method implementation
}

/**
 * Checks if the event is cancelled.
 *
 * @return True if the event is cancelled, false otherwise.
 */
@Override
public boolean isCancelled() {
    // Method implementation
}

/**
 * Sets the cancellation state of the event.
 *
 * @param cancel True to cancel the event, false otherwise.
 */
@Override
public void setCancelled(boolean cancel) {
    // Method implementation
}

/**
 * Gets the currency associated with the event.
 *
 * @return The currency name.
 */
public String getCurrency() {
    // Method implementation
}

/**
 * Gets the amount associated with the event.
 *
 * @return The amount.
 */
public double getAmount() {
    // Method implementation
}

/**
 * Sets the amount associated with the event.
 *
 * @param amount The new amount.
 */
public void setAmount(double amount) {
    // Method implementation
}

/**
 * Gets the multiplier associated with the event.
 *
 * @return The multiplier.
 */
public double getMultiplier() {
    // Method implementation
}

/**
 * Adds a multiplier to the event's current multiplier.
 *
 * @param multiplier The multiplier to add.
 */
public void addMultiplier(double multiplier) {
    // Method implementation
}

/**
 * Sets the multiplier associated with the event.
 *
 * @param multiplier The new multiplier.
 */
public void setMultiplier(double multiplier) {
    // Method implementation
}

Last updated