Go to file
Brianna 8bea204b45 Merge branch 'development' 2021-01-15 16:13:53 -06:00
src/main Fixed an issue with incompatible sounds. 2020-11-19 12:43:31 -06:00
.gitignore Version 2019-08-21 10:10:25 -04:00
EpicVouchers.iml Hotfix for: SD-3014 2019-07-16 22:53:23 +02:00
LICENSE Totally Redone 2018-10-04 00:25:06 -04:00
README.md Update README.md 2020-11-13 15:57:37 -06:00
Read_this_before_your_first_use.txt Upload New File 2018-10-18 22:40:02 +00:00
pom.xml version 2.1.20b 2021-01-15 16:13:08 -06:00

README.md

EpicVouchers

EpicVouchers

Create vouchers that players can claim for rewards with seemingly infinite possibilities. Customize your servers vouchers through an intuitive in-game editor.

Discord Patreon
Latest quality Last Updated
Servers Maintained

Table of Contents

Introduction

EpicVouchers is simple to use voucher plugin, that gives you the ability to reward players automatically without needing to give them permission to a command or manually run a command on a player yourself. This plugin is perfect for cosmetic rewards, selling in-game ranks, crate and kit rewards, unique shop designs, etc. The plugin also features an in-game GUI that allows you to create, edit and delete vouchers without needing to configurate the files, or restart/reload the server to apply the changes. It's a perfect plugin for production servers, and gives you unlimited ways to reward your loyal players easily.

Marketplace

You can visit our marketplace to download EpicVouchers as well as take a look at many other fantastic plugins which are sure to catch your eye.

Documentation

You can find all the information about the plugin, including dependencies, commands, permissions, incompatible plugins on our wiki. Feel free to also contribute to the wiki as a way to help others in the community with using the plugin.

Developers API

Here is an example with built-in methods for developers that want to use the EpicVouchers API for their own resources. This is a pretty long example, so take that into consideration when looking at the example, but I am sure that you will understand the usage of it quickly.

@EventHandler
public void redeemListener(VoucherRedeemEvent event) {
# Returns the player that redeemed the voucher.
Player player = event.getPlayer();
# Returns the name of the redeemed voucher.
String voucher = event.getVoucher();
# Returns the ItemStack of the redeemed voucher.
ItemStack item = event.getItem();
# Returns if the voucher was redeemed manual or not.
boolean manual = event.getManual();
# Returns if the event is cancelled or not.
boolean cancelled = event.isCancelled();
# Get a list of handlers for this event.
HandlerList handlers = event.getHandlers();
# Cancel the event with a boolean.
event.isCancelled(true);
}

@EventHandler
public void forceListener(ForceRedeemEvent event) {
# Returns the player that redeemed the voucher.
Player player = event.getPlayer();
# Returns the name of the redeemed voucher.
String voucher = event.getVoucher();
# Returns the amount of vouchers that were redeemed.
int amount = event.getAmount();
# Returns the sender that forced the players.
CommandSender sender = event.getSender();
# Returns if the event is cancelled or not.
boolean cancelled = event.isCancelled();
# Get a list of handlers for this event.
HandlerList handlers = event.getHandlers();
# Cancel the event with a boolean.
event.isCancelled(true);
}

@EventHandler
public void receiveListener(VoucherReceiveEvent event) {
# Returns the player that received the voucher.
Player player = event.getPlayer();
# Returns the name of the received voucher.
String voucher = event.getVoucher();
# Returns the ItemStack of the received voucher.
ItemStack item = event.getItem();
# Returns the amount of vouchers that were received.
int amount = event.getAmount();
# Returns the sender that gave the vouchers.
CommandSender sender = event.getSender();
# Returns if the event is cancelled or not.
boolean cancelled = event.isCancelled();
# Get a list of handlers for this event.
HandlerList handlers = event.getHandlers();
# Cancel the event with a boolean.
event.isCancelled(true);
}

Support

If you encounter any issues while using the plugin, feel free to create a ticket on our support desk.

Suggestions

For suggestions about features you think should be added to the plugin to increase its functionality, feel free to create a thread over on our feedback site.