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
| # TCore by SainttX | |
| modules: | |
| death-chest: true | |
| enderpearl-cooldown: true | |
| enderpearl-actionbar: true | |
| apple-cooldown: true | |
| apple-actionbar: true | |
| combat-region: true | |
| tnt-defuse: true |
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
| # ClickTest by SainttX | |
| # Valid materials for the item can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html | |
| test-length-seconds: 5 | |
| item: | |
| material: COOKIE | |
| name: "&dClicking Speed Test" | |
| lore: | |
| - "&7Right-click to test your clicking speed!" |
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
| # EnchantmentLimiter plugin by SainttX | |
| # Define limited enchantments here by adding new entries | |
| # entries are to be define by Enchantment: Max Level | |
| # ie. DAMAGE_ALL: 4 (Sharpness IV would be the max level) | |
| # Find enchantments here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html | |
| limited: | |
| DAMAGE_ALL: 4 | |
| ARROW_DAMAGE: 1 |
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
| # Crates for evopvp.net by SainttX | |
| gui: | |
| title: "Crates" | |
| right-click-message: "&6Head over to &ehttp://store.evopvp.net/ &6to purchase more keys!" | |
| crates: | |
| minor: | |
| menu-index: 12 | |
| icon: |
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
| # SQL data is to be input here | |
| sql: | |
| host: 'localhost' | |
| port: 3306 | |
| username: 'root' | |
| password: "" | |
| db: 'Moderation' | |
| table: 'moderation' | |
| # Here is where you can define your warnings |
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 pckg; | |
| import org.bukkit.configuration.Configuration; | |
| import java.sql.Connection; | |
| import java.sql.DriverManager; | |
| import java.sql.SQLException; | |
| import java.util.logging.Level; | |
| /** |
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
| # ShopGUI by SainttX | |
| # This section allows you to configure various parts of the | |
| # shops appearance/messages | |
| gui: | |
| # The title of the main menu | |
| title: "Shop: MENU" | |
| # The following three options allow you to format the lore | |
| # of every individual items price descriptions | |
| buy-text: "Buy: ${0} (Amount: {1})" |
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 net.evopvp.moderation.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
| // WRITING | |
| Object o = someObject; // A serializable object | |
| byte[] serialized = o.serialize(); | |
| ByteArrayDataOutput out = ByteStreams.newDataOutput(); | |
| out.writeUTF("Forward"); | |
| out.writeUTF("ALL"); | |
| out.writeUTF("subchannel"); |
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
| # Collect by SainttX | |
| # A list that allows you to configure the material types that fortune applies to | |
| # Get valid types here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html | |
| allow-fortune-for: | |
| - EMERALD | |
| - DIAMOND | |
| - REDSTONE | |
| - COAL | |
| - QUARTZ |