This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAkZoBEGl0BAagF+ICoGE3i8R8+8IFBxzZL/zhILO95zO0HmKx+2+6lA2w4FkXlm+y16Lwg5fpJ1jhATZyWoohYPQjhNJ9UEuXFJZMcz8G+XN96GWCQi7V4m54ESAOONMFu4xgYiwDwNK9UPiF2ZCpRzLrKMafNE6KhD6Jd5yDQz5CjKM7u+TlNLIFsw+7e5Ii6Z4A3f9yMlnO5+fEIH5kaPG/Y50rvlGkUpnjoHADgCqEMANILxKbRW0aeotrXDzvizOCc0IsArmNrh6/GxjQh0trktrEKpKmrLAFnDZvXW/5dXOXwcj1spK+V4NVu8AdXX2J0gdtdBP8pNoHygy6EQ== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private Map<String, CommandImpl> commandCache = new HashMap<>(); | |
| private final String CMD_PACKAGE = "com.example.commands."; | |
| @Override | |
| public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { | |
| ClassLoader classLoader = getClass().getClassLoader(); | |
| String commandName = command.getName().substring(0, 1).toUpperCase() + command.getName().substring(1); | |
| CommandImpl commandClass; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* */ package zayneh.zeoncps; | |
| /* */ | |
| /* */ import java.util.HashMap; | |
| /* */ import org.bukkit.Bukkit; | |
| /* */ import org.bukkit.ChatColor; | |
| /* */ import org.bukkit.configuration.file.FileConfiguration; | |
| /* */ import org.bukkit.configuration.file.FileConfigurationOptions; | |
| /* */ import org.bukkit.event.Listener; | |
| /* */ import org.bukkit.plugin.PluginManager; | |
| /* */ import org.bukkit.plugin.java.JavaPlugin; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.sainttx.auctions.util; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.entity.Player; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.Method; | |
| import java.util.HashMap; | |
| import java.util.Map; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### Bounties ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| # General settings for the plugin | |
| settings: | |
| # The minimum amount for a bounty that can be entered |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### BadWords Config ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| # Define your bad word definitions in this section | |
| detection: | |
| # This is a useless key that doesn't mean anything, it is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### Cannon Tracker ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| # General plugin settings can be defined here | |
| settings: | |
| # The maximum amount of tasks that can be |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### MineBomb ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| # Define your base bomb item here | |
| # note that if you change it in the future | |
| # all other bomb items may end up being invalid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### SignShop ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| # General settings for the way the menu and items look | |
| settings: | |
| shopTitle: "&cShop &8- &r[item]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| ### ### | |
| ### PVPTimer ### | |
| ### by SainttX ### | |
| ### ### | |
| ################################# | |
| settings: | |
| protection-time-seconds: 900 | |
| protection-time-death-seconds: 90 |