ChestShop-authors / ChestShop-3

ChestShop - the chest & sign shop plugin for Minecraft Servers running Bukkit/Spigot/Paper
https://dev.bukkit.org/projects/chestshop
GNU Lesser General Public License v2.1
275 stars 175 forks source link

Balance not updating when Selling to Admin Shop #478

Open PlayingWithPi opened 2 years ago

PlayingWithPi commented 2 years ago

What is happening?

Server Shop was set-up as below. Changed name from AdminShop just in case it was conflicting with anything. From hereon, I shall say Admin Shop to not cause any confusion here.

Current Behaviour: OP can make Admin Shop (how it's set on my server.), shop is created. Shop sign looks like:

  Server Shop
       64
  B 100 : 50 S
     Apple

Below is a snippet of Admin Shop settings used (with help from Phoenix616 on Discord):

# First line of your Admin Shop's sign should look like this:
ADMIN_SHOP_NAME: "Server Shop"
# Make all admin shops be unlimited even if they have a shop container at the sign
FORCE_UNLIMITED_ADMIN_SHOP: false
# The name of the economy account which Admin Shops should use and to which all taxes will go
SERVER_ECONOMY_ACCOUNT: "servershop"
# The uuid of the economy account for the Admin Shop. Useful for fake accounts as normally only accounts of players work
SERVER_ECONOMY_ACCOUNT_UUID: fa656a74-3291-3311-b1c5-a1757e256f9c
# Percent of the price that should go to the server's account. (100 = 100 percent)
TAX_AMOUNT: 100
# Percent of the price that should go to the server's account when buying from an Admin Shop.
SERVER_TAX_AMOUNT: 100

What did you expect to happen?

On left-click, the shop buying item(s) that are being requested from the sign, removing them from the users inventory and placing them within the respective container; I'd expected the balance of both the Admin Shop and seller to update to reflect the transaction.

Currently, when selling, the item(s) are taken but no balances are changed.

Plugin Version

ChestShop version 3.12.1-SNAPSHOT (build 324)

Plugin Config

Config ```yaml # Should the plugin log some messages that are useful for debugging? DEBUG: true # Do you want to turn off the automatic updates of ChestShop? TURN_OFF_UPDATES: true # Do you want to turn off the automatic notifications for new development builds? TURN_OFF_DEV_UPDATE_NOTIFIER: false # Do you want to include some values of this config in the metrics? (This will not leak sensitive data but help in the development process) INCLUDE_SETTINGS_IN_METRICS: true # How large should the internal caches be? CACHE_SIZE: 1000 # The default language when the client's language can't be found. DEFAULT_LANGUAGE: "en" # Should the plugin try to use a language file that matches the client's locale setting? USE_CLIENT_LOCALE: true # What containers are allowed to hold a shop? (Only blocks with inventories work!) SHOP_CONTAINERS: - "CHEST" - "TRAPPED_CHEST" - "SHULKER_BOX" # (In 1/1000th of a second) How often can a player use the shop sign? SHOP_INTERACTION_INTERVAL: 100 # Do you want to block people in creative mode from using shops? IGNORE_CREATIVE_MODE: true # Do you want to block people who have access to a shop due to their permissions from using it? (owners are always ignored) IGNORE_ACCESS_PERMS: true # If true, people will buy with left-click and sell with right-click. REVERSE_BUTTONS: false # If true, people will be able to buy/sell in 64 stacks while holding the crouch button. SHIFT_SELLS_IN_STACKS: true # If true, people will be able to sell/buy everything available of the same type. SHIFT_SELLS_EVERYTHING: false # What can you do by clicking shift with SHIFT_SELLS_IN_STACKS turned on? (ALL/BUY/SELL) SHIFT_ALLOWS: "ALL" # Can shop's chest be opened by owner with right-clicking a shop's sign? ALLOW_SIGN_CHEST_OPEN: true # If true, when you left-click your own shop sign you won't open chest's inventory, but instead you will start destroying the sign. ALLOW_LEFT_CLICK_DESTROYING: true # If true, if the shop is empty, the sign is destroyed and put into the chest, so the shop isn't usable anymore. REMOVE_EMPTY_SHOPS: false # If true, if the REMOVE_EMPTY_SHOPS option is turned on, the chest is also destroyed. REMOVE_EMPTY_CHESTS: false # A list of worlds in which to remove empty shops with the previous config. Case sensitive. An empty list means all worlds. REMOVE_EMPTY_WORLDS: - "world1" # First line of your Admin Shop's sign should look like this: ADMIN_SHOP_NAME: "Server Shop" # Make all admin shops be unlimited even if they have a shop container at the sign FORCE_UNLIMITED_ADMIN_SHOP: false # The name of the economy account which Admin Shops should use and to which all taxes will go SERVER_ECONOMY_ACCOUNT: "servershop" # The uuid of the economy account for the Admin Shop. Useful for fake accounts as normally only accounts of players work SERVER_ECONOMY_ACCOUNT_UUID: fa656a74-3291-3311-b1c5-a1757e256f9c # Percent of the price that should go to the server's account. (100 = 100 percent) TAX_AMOUNT: 100 # Percent of the price that should go to the server's account when buying from an Admin Shop. SERVER_TAX_AMOUNT: 100 # Amount of money player must pay to create a shop SHOP_CREATION_PRICE: 0 # How much money do you get back when destroying a sign? SHOP_REFUND_PRICE: 0 # How many decimal places are allowed at a maximum for prices? PRICE_PRECISION: 2 # This makes sure that the UUIDs of player shop accounts match the server's online-mode setting. Disabling this might lead to issues with offline players and is therefore unsupported! ENSURE_CORRECT_PLAYERID: false # This regexp validates the name of the player. If the name doesn't match, the player will neither be able to create a valid shop sign, nor buy/sell from a shop. # Note for Bedrock support: If you have Floodgate on your server, you should set this regexp to ^\\*?\\w+$ and ENSURE_CORRECT_PLAYERID to false # If your Floodgate prefix is not *, change the first * in the regexp (the one before the question mark) to whatever your prefix is. VALID_PLAYERNAME_REGEXP: "^\\w+$" # Should we block shops that sell things for more than they buy? (This prevents newbies from creating shops that would be exploited) BLOCK_SHOPS_WITH_SELL_PRICE_HIGHER_THAN_BUY_PRICE: false # Maximum amount of items that can be bought/sold at a shop. Default 3456 is a double chest of 64 stacks. MAX_SHOP_AMOUNT: 3456 # Do you want to allow other players to build a shop on a block where there's one already? ALLOW_MULTIPLE_SHOPS_AT_ONE_BLOCK: true # Can shops be used even when the buyer/seller doesn't have enough items, space or money? (The price will be scaled adequately to the item amount) ALLOW_PARTIAL_TRANSACTIONS: true # Can '?' be put in place of item name in order for the sign to be auto-filled? ALLOW_AUTO_ITEM_FILL: true # Enable this if you use BungeeCord and want players to receive shop notifications on other servers BUNGEECORD_MESSAGES: false # Do you want to show "Out of stock" messages? SHOW_MESSAGE_OUT_OF_STOCK: true # Do you want to show "Full shop" messages? SHOW_MESSAGE_FULL_SHOP: true # How many seconds do you want to wait before showing notifications for the same shop to the owner again? NOTIFICATION_MESSAGE_COOLDOWN: 10 # Can players hide the "Out of stock" messages with /cstoggle? CSTOGGLE_TOGGLES_OUT_OF_STOCK: true # Can players hide the "Full shop" messages with /cstoggle? CSTOGGLE_TOGGLES_FULL_SHOP: false # Do you want to show "You bought/sold... " messages? SHOW_TRANSACTION_INFORMATION_CLIENT: true # Do you want to show "Somebody bought/sold... " messages? SHOW_TRANSACTION_INFORMATION_OWNER: true # If true, plugin will log transactions in its own file LOG_TO_FILE: true # Do you want ChestShop's messages to show up in console? LOG_TO_CONSOLE: false # Should all shop removals be logged to the console? LOG_ALL_SHOP_REMOVALS: true # Do you want to stack all items up to 64 item stacks? STACK_TO_64: false # Do you want to use built-in protection against chest destruction? USE_BUILT_IN_PROTECTION: true # Do you want to have shop signs "stick" to chests? STICK_SIGNS_TO_CHESTS: true # EXPERIMENTAL: Do you want to turn off the default protection when another plugin is protecting the block? (Will leave the chest visually open - CraftBukkit bug!) TURN_OFF_DEFAULT_PROTECTION_WHEN_PROTECTED_EXTERNALLY: false # Do you want to turn off the default sign protection? Warning! Other players will be able to destroy other people's shops! TURN_OFF_SIGN_PROTECTION: false # Do you want to disable the hopper protection, which prevents Hopper-Minecarts from taking items out of shops? TURN_OFF_HOPPER_PROTECTION: false # Only allow users to buy/sell that have access to the sign's protection? (E.g. LWC protection) CHECK_ACCESS_FOR_SHOP_USE: false # Do you want to protect shop chests with LWC? PROTECT_CHEST_WITH_LWC: false # Of which type should the container protection be? Possible type: public, private, donate and on some LWC versions display LWC_CHEST_PROTECTION_TYPE: "PRIVATE" # Do you want to protect shop signs with LWC? PROTECT_SIGN_WITH_LWC: false # Of which type should the sign protection be? Possible type: public, private, donate and on some LWC versions display LWC_SIGN_PROTECTION_TYPE: "PRIVATE" # Should the chest's LWC protection be removed once the shop sign is destroyed? REMOVE_LWC_PROTECTION_AUTOMATICALLY: true # Should LWC limits block shop creations? LWC_LIMITS_BLOCK_CREATION: false # Do you want to only let people build inside WorldGuard regions? WORLDGUARD_INTEGRATION: false # Do you want to only let people build inside region flagged by doing /region regionName flag allow-shop allow? WORLDGUARD_USE_FLAG: true # Do you want ChestShop to respect WorldGuard's chest protection? WORLDGUARD_USE_PROTECTION: false # Do you want to only let people build inside GriefPrevention claims? GRIEFPREVENTION_INTEGRATION: false # Do you want to only let people build inside RedProtect regions? REDPROTECT_INTEGRATION: false # Do you want to deny shop access to unlogged users? AUTHME_HOOK: false # Do you want to allow shop access to unregistered users? (Example: registration is optional) AUTHME_ALLOW_UNREGISTERED: true # How much Heroes exp should people get for creating a ChestShop? HEROES_EXP: 0.0 # Add icons and make item names hoverable in transaction messages when ShowItem is installed? SHOWITEM_MESSAGE: false # Add stock counter to quantity line? USE_STOCK_COUNTER: false ```

Server Version

Paper version git-Paper-788 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)

Server Log

Server Log ```yaml [22:21:36] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [22:21:36] [main/INFO]: Reloading ResourceManager: Default, bukkit [22:21:36] [Worker-Main-1/INFO]: Loaded 7 recipes [22:21:37] [Server thread/INFO]: Starting minecraft server version 1.16.5 [22:21:37] [Server thread/INFO]: Loading properties [22:21:38] [Server thread/INFO]: This server is running Paper version git-Paper-788 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT) [22:21:38] [Server thread/INFO]: Debug logging is disabled [22:21:38] [Server thread/INFO]: Server Ping Player Sample Count: 12 [22:21:38] [Server thread/INFO]: Using 4 threads for Netty based IO [22:21:38] [Server thread/INFO]: Default game type: SURVIVAL [22:21:38] [Server thread/INFO]: Generating keypair [22:21:38] [Server thread/INFO]: Starting Minecraft server on 54.37.244.4:25627 [22:21:38] [Server thread/INFO]: Using epoll channel type [22:21:39] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug! [22:21:42] [Server thread/WARN]: Legacy plugin Herochat v6.0.1-SNAPSHOT-bb35 does not specify an api-version. [22:21:42] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/openjdk/nashorn/nashorn-core/15.2/nashorn-core-15.2.jar [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar [22:21:42] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server741534/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar [22:21:42] [Server thread/INFO]: [AsyncWorldEdit] Detected Java 8+, trying to open modules for reflection access... [22:21:42] [Server thread/INFO]: [AsyncWorldEdit] Injector platform set to: InjectorBukkit [22:21:42] [Server thread/INFO]: [AsyncWorldEdit] Injecting NMS classes... [22:21:42] [Server thread/INFO]: [AsyncWorldEdit] Injecting WorldEdit classes... [22:21:42] [Server thread/WARN]: [WorldEdit] Loaded class org.primesoft.asyncworldedit.injector.injected.util.eventbus.IDispatchableEventBus from AsyncWorldEdit v3.9.1 which is not a depend, softdepend or loadbefore of this plugin. [22:21:43] [Server thread/INFO]: [AsyncWorldEdit] Injector Enabled [22:21:43] [Server thread/INFO]: [AsyncWorldEdit] New class factory set to: org.primesoft.asyncworldedit.asyncinjector.async.AsyncClassFactory [22:21:43] [Server thread/INFO]: [OpenInv] Loading OpenInv v4.1.7 [22:21:43] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.10 [22:21:43] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2 [22:21:43] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.2 [22:21:43] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.0.1 [22:21:43] [Server thread/INFO]: [ViaVersion] ViaVersion 4.0.1 is now loaded, injecting! [22:21:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings... [22:21:43] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings... [22:21:43] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings... [22:21:43] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings... [22:21:43] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings... [22:21:43] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings... [22:21:43] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings... [22:21:43] [Server thread/INFO]: [KeepDeathDrop] Loading KeepDeathDrop v1.0.7 [22:21:43] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.0.1 [22:21:43] [Server thread/INFO]: [ViaBackwards] Loading translations... [22:21:44] [Via-Mappingloader-7/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings... [22:21:44] [Via-Mappingloader-7/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings... [22:21:44] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings... [22:21:44] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ... [22:21:45] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings... [22:21:45] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.68 [22:21:45] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings... [22:21:45] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings... [22:21:46] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings... [22:21:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings... [22:21:46] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings... [22:21:46] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.7.0 [22:21:47] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131 [22:21:47] [Server thread/INFO]: [dynmap] Loading dynmap v3.2-beta-3-514 [22:21:47] [Server thread/INFO]: [dynmap] version=git-Paper-788 (MC: 1.16.5) [22:21:47] [Server thread/INFO]: [dynmap] Mod Support API available [22:21:47] [Server thread/INFO]: [MyWarp] Loading MyWarp v3.1.1+GitHub_Action-b16.git-d80ddf2ca9 [22:21:47] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.6+4b2d1e7 [22:21:47] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@76c5035e] [22:21:47] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.0 [22:21:47] [Server thread/INFO]: [Herochat] Loading Herochat v6.0.1-SNAPSHOT-bb35 [22:21:47] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v2.1.2 [22:21:47] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.9 [22:21:47] [Server thread/INFO]: [CrateReloaded] Loading CrateReloaded v2.0.35 [22:21:47] [Server thread/INFO]: [CommandSigns] Loading CommandSigns v2.2.0 [22:21:47] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.6.3 [22:21:47] [Server thread/INFO]: [AsyncWorldEdit] Loading AsyncWorldEdit v3.9.1 [22:21:47] [Server thread/INFO]: [AsyncWorldEdit] Plugin installed [22:21:47] [Server thread/INFO]: [AdvancedAchievements] Loading AdvancedAchievements v7.2.3 [22:21:47] [Server thread/INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP v2.19.0 [22:21:47] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.6 [22:21:47] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.0 [22:21:47] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v20.1 [22:21:47] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5+3827266 [22:21:47] [Server thread/INFO]: [CraftBook] Loading CraftBook v3.10.3;4680-f1ee2df [22:21:47] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.201 [22:21:47] [Server thread/INFO]: [mcMMO] Registered WG flags successfully! [22:21:47] [Server thread/INFO]: [ProtectionStones] Loading ProtectionStones v2.8.5 [22:21:47] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.5-SNAPSHOT [22:21:47] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12.1-SNAPSHOT (build 324) [22:21:47] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.5+3827266 loaded. [22:21:47] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v3.7.1 [22:21:47] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast [22:21:47] [Server thread/INFO]: [ChestShopNotifier] Loading ChestShopNotifier v1.3.3 (build 51) [22:21:47] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.24.0 [22:21:47] [Server thread/INFO]: [OreAnnouncer] Loading OreAnnouncer v2.8.1 [22:21:47] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.1, this may take a while [22:21:47] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator [22:21:47] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm [22:21:47] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons [22:21:47] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2 [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr4-runtime [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4 [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4 [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-java [22:21:48] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql [22:21:48] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it [22:21:48] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.68 [22:21:48] [Server thread/INFO]: __ [22:21:48] [Server thread/INFO]: | |__) LuckPerms v5.3.68 [22:21:48] [Server thread/INFO]: |___ | Running on Bukkit - Paper [22:21:48] [Server thread/INFO]: [22:21:48] [Server thread/INFO]: [LuckPerms] Loading configuration... [22:21:48] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2] [22:21:49] [Server thread/INFO]: [LuckPerms] Loading internal permission managers... [22:21:49] [Server thread/INFO]: [LuckPerms] Performing initial data load... [22:21:49] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1611ms) [22:21:49] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.7.0 [22:21:49] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread. [22:21:49] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131 [22:21:49] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.0 which is not a depend, softdepend or loadbefore of this plugin. [22:21:49] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting [22:21:49] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system. [22:21:49] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131 [22:21:49] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook. [22:21:49] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.6+4b2d1e7 [22:21:49] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface [22:21:50] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions [22:21:50] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R3 as the Bukkit adapter [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] Enabling AsyncWorldEdit v3.9.1 [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] Platform set to Bukkit API [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] =================================================================================== [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = ___ _ __ __ ________ ___ __ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = / | _______ ______ ____| | / /___ _____/ /___/ / ____/___/ (_) /_ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = / /| | / ___/ / / / __ \/ ___/ | /| / / __ \/ ___/ / __ / __/ / __ / / __/ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = / ___ |(__ ) /_/ / / / / /__ | |/ |/ / /_/ / / / / /_/ / /___/ /_/ / / /_ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = /_/ |_/____/\__, /_/ /_/\___/ |__/|__/\____/_/ /_/\__,_/_____/\__,_/_/\__/ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = /____/ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = Author: SBPrime = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = ________________ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] = ___/ free version \___ = [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] =================================================================================== [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] Initializing WorldEdit. [22:21:51] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] Undo cleanup started... [22:21:51] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] ...undo cleanup done. [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] No matching adapter found for Bukkit.v1_16_R3, DirectChunkAPI disabled [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] PlotMeFix set to class org.primesoft.asyncworldedit.plotme.NullFix. [22:21:51] [Server thread/INFO]: [AsyncWorldEdit] Enabled [22:21:51] [Server thread/INFO]: Preparing level "world" [22:21:51] [Thread-11/INFO]: [AsyncWorldEdit] You have the latest version of the plugin. [22:21:51] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld [22:21:51] [Server thread/INFO]: Preparing spawn area: 0% [22:21:51] [Server thread/INFO]: Time elapsed: 153 ms [22:21:51] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether [22:21:51] [Server thread/INFO]: Time elapsed: 10 ms [22:21:51] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end [22:21:51] [Server thread/INFO]: Time elapsed: 7 ms [22:21:51] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.1.7 [22:21:51] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.10 [22:21:51] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.0.1 which is not a depend, softdepend or loadbefore of this plugin. [22:21:51] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information... [22:21:51] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2 [22:21:51] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter [22:21:51] [Server thread/INFO]: [ClearLag] Loading modules... [22:21:51] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values [22:21:51] [Server thread/INFO]: [ClearLag] Modules have been loaded! [22:21:51] [Server thread/INFO]: [ClearLag] Clearlag is now enabled! [22:21:51] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.2 [22:21:51] [Server thread/INFO]: [Votifier] Loaded token for website: default [22:21:52] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes. [22:21:52] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder. [22:21:52] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.0.1 [22:21:52] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /54.37.244.4:8473. [22:21:52] [Server thread/INFO]: [KeepDeathDrop] Enabling KeepDeathDrop v1.0.7 [22:21:52] [Server thread/INFO]: [KeepDeathDrop] Enabled! [22:21:52] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.0.1 [22:21:52] [Server thread/INFO]: [dynmap] Enabling dynmap v3.2-beta-3-514 [22:21:52] [Server thread/INFO]: [dynmap] Using LuckPerms 5.3.68 for access control [22:21:52] [Server thread/INFO]: [dynmap] Mod Support processing completed [22:21:52] [Server thread/INFO]: [dynmap] Loaded 25 shaders. [22:21:52] [Server thread/INFO]: [dynmap] Loaded 82 perspectives. [22:21:52] [Server thread/INFO]: [dynmap] Loaded 22 lightings. [22:21:52] [Server thread/INFO]: [dynmap] Starting enter/exit processing [22:21:52] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization [22:21:53] [Server thread/INFO]: [dynmap] Web server started on address 54.37.244.4:8123 [22:21:53] [Server thread/INFO]: [dynmap] version 3.2-beta-3-514 is enabled - core version 3.2-beta-3-514 [22:21:53] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap or our Discord at https://discord.gg/s3rd5qn [22:21:53] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues [22:21:53] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm [22:21:53] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'. [22:21:53] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'. [22:21:53] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'. [22:21:53] [Server thread/INFO]: [dynmap] Enabled [22:21:53] [Server thread/INFO]: [MyWarp] Enabling MyWarp v3.1.1+GitHub_Action-b16.git-d80ddf2ca9 [22:21:53] [Server thread/INFO]: [MyWarp] Flyway Community Edition 7.5.0 by Redgate [22:21:53] [Server thread/INFO]: [MyWarp] Database: jdbc:h2:/home/minecraft/multicraft/servers/server741534/plugins/MyWarp/warps (H2 1.4) [22:21:53] [Server thread/INFO]: [MyWarp] Successfully validated 2 migrations (execution time 00:00.024s) [22:21:53] [Server thread/INFO]: [MyWarp] Current version of schema "mywarp": 1 [22:21:53] [Server thread/INFO]: [MyWarp] Schema "mywarp" is up to date. No migration necessary. [22:21:53] [Server thread/INFO]: [MyWarp] Using Vault for group support. [22:21:53] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.0 [22:21:54] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml [22:21:54] [Server thread/INFO]: [Essentials] No kits found to migrate. [22:21:54] [pool-23-thread-1/INFO]: [MyWarp]  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@ @@ @@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@ @@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@ @@@@@@@@@@ @@ @@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@ @@@@@@@@@@ @@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ @@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ @@@@@@@@@@ @@ @ @ @@@@@@@@@@ @@@@@@@@@@ @@ @@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using jOOQ 3.14.4  [22:21:54] [Server thread/INFO]: [Essentials] Loaded 36837 items from items.json. [22:21:54] [Server thread/INFO]: [Essentials] Using locale en_GB [22:21:54] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API [22:21:54] [Server thread/INFO]: [Essentials] Metrics disabled per bStats config. [22:21:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked. [22:21:54] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms) [22:21:54] [Server thread/INFO]: [Herochat] Enabling Herochat v6.0.1-SNAPSHOT-bb35* [22:21:54] [Server thread/INFO]: [Herochat] Saving channels [22:21:54] [Server thread/INFO]: [Herochat] Save complete [22:21:54] [Server thread/WARN]: [Herochat] Ignoring attempt to change parent of plugin logger [22:21:54] [Server thread/INFO]: [Herochat] Version 6.0.1-SNAPSHOT-bb35 is enabled. [22:21:54] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v2.1.2 [22:21:54] [Thread-24/INFO]: [MyWarp] 11 warps loaded. [22:21:54] [Server thread/INFO]: [WorldBorder] [CONFIG] Using elliptic/round border, knockback of 3.0 blocks, and timer delay of 5. [22:21:54] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started. [22:21:54] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world" has border radius 50000 at X: -37.5 Z: -27.5 [22:21:54] [Server thread/INFO]: [WorldBorder] [CONFIG] Successfully hooked into DynMap for the ability to display borders. [22:21:54] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: -37.0 Y: 197.0 Z: -14.0 [22:21:54] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.9 [22:21:54] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib. [22:21:54] [Server thread/INFO]: [CrateReloaded] Enabling CrateReloaded v2.0.35 [22:21:54] [Server thread/INFO]: [CrateReloaded] Config Version: 2.X [22:21:54] [Server thread/INFO]: [CrateReloaded] v1_16_R3 [22:21:54] [Server thread/INFO]: [CrateReloaded] Hologram Provider: HolographicDisplays [22:21:55] [Server thread/INFO]: [CrateReloaded] Crate Configurations (1): crate.yml [22:21:58] [Server thread/INFO]: [CommandSigns] Enabling CommandSigns v2.2.0 [22:21:58] [Server thread/INFO]: [CommandSigns] Plugin vault detected [22:21:58] [Server thread/INFO]: [CommandSigns] Vault economy [EssentialsX Economy] linked with command signs ! [22:21:58] [Server thread/INFO]: [CommandSigns] If this plugin is useful to you, you can make a donation at: https://www.paypal.me/nokorbis [22:21:58] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.6.3 [22:21:59] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config [22:21:59] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.6.3 [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v7.2.3 [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files... [22:21:59] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories. [22:21:59] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed Pet Master in your plugins folder or add PetMasterGive and PetMasterReceive to the DisabledCategories list in config.yml. [22:21:59] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling JobsReborn category. [22:21:59] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed JobsReborn in your plugins folder or add JobsReborn to the DisabledCategories list in config.yml. [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Loaded 71 achievements in 50 categories. [22:21:59] [Server thread/INFO]: [AdvancedAchievements] 3 disabled categories: [PetMasterGive, JobsReborn, PetMasterReceive] [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners... [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Initialising sqlite database... [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers... [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks... [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Registering permissions... [22:21:59] [Thread-38/INFO]: [AdvancedAchievements] Checking for plugin update... [22:21:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aach [22:21:59] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 611ms. [22:21:59] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.19.0 [22:21:59] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/. [22:21:59] [Server thread/INFO]: [EssentialsGeoIP] Metrics disabled per bStats config. [22:21:59] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.6 [22:21:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [22:21:59] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI [22:21:59] [Server thread/INFO]: [SuperVanish] Hooked into dynmap [22:21:59] [Server thread/INFO]: [SuperVanish] Hooked into Essentials [22:21:59] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.0 [22:21:59] [Server thread/INFO]: [EssentialsSpawn] Metrics disabled per bStats config. [22:21:59] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v20.1 [22:22:03] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! [22:22:03] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage. [22:22:03] [Server thread/INFO]: -------------------- [22:22:03] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord! [22:22:03] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/ [22:22:03] [Server thread/INFO]: -------------------- [22:22:03] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5+3827266 [22:22:03] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked. [22:22:03] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED. [22:22:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world' [22:22:03] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED. [22:22:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether' [22:22:03] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked. [22:22:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED. [22:22:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end' [22:22:03] [Server thread/INFO]: [WorldGuard] Loading region data... [22:22:03] [Server thread/INFO]: [CraftBook] Enabling CraftBook v3.10.3;4680-f1ee2df [22:22:03] [Server thread/INFO]: [CraftBook] Loading persistent data from YAML! [22:22:03] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.201 [22:22:03] [Server thread/INFO]: [mcMMO] [Debug] Loading mcMMO config.yml File... [22:22:03] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml! [22:22:03] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties [22:22:03] [Server thread/INFO]: [mcMMO] [Debug] Loading mcMMO advanced.yml File... [22:22:03] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml! [22:22:03] [Server thread/INFO]: [mcMMO] Platform String: 1.16.5-R0.1-SNAPSHOT [22:22:03] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.16.5 [22:22:03] [Server thread/INFO]: [mcMMO] Loading compatibility layers... [22:22:03] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers. [22:22:03] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book... [22:22:05] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file.. [22:22:05] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills [22:22:05] [Server thread/INFO]: [mcMMO] Registered subskill: Roll [22:22:06] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist [22:22:06] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.8.5 [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler [22:22:06] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled! [22:22:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: protectionstones [22:22:06] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled! [22:22:06] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks: [22:22:06] [Server thread/INFO]: [ProtectionStones] - COBWEB (SpiderWeb) [22:22:06] [Server thread/INFO]: [ProtectionStones] - LAPIS_BLOCK (lapisblock) [22:22:06] [Server thread/INFO]: [ProtectionStones] - IRON_BLOCK (ironblock) [22:22:06] [Server thread/INFO]: [ProtectionStones] - DIAMOND_BLOCK (diamondblock) [22:22:06] [Server thread/INFO]: [ProtectionStones] - DIAMOND_ORE (diamondore) [22:22:06] [Server thread/INFO]: [ProtectionStones] - GOLD_BLOCK (goldblock) [22:22:06] [Server thread/INFO]: [ProtectionStones] - EMERALD_BLOCK (emeraldblock) [22:22:06] [Server thread/INFO]: [ProtectionStones] Building region cache... [22:22:06] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true) [22:22:06] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs... [22:22:06] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started! [22:22:06] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.5-SNAPSHOT [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler [22:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler [22:22:06] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.1-SNAPSHOT (build 324) [22:22:06] [Server thread/INFO]: [ChestShop] Loading configuration config.yml [22:22:06] [Server thread/INFO]: [ChestShop] DEBUG: true [22:22:06] [Server thread/INFO]: [ChestShop] TURN_OFF_UPDATES: true [22:22:06] [Server thread/INFO]: [ChestShop] TURN_OFF_DEV_UPDATE_NOTIFIER: false [22:22:06] [Server thread/INFO]: [ChestShop] INCLUDE_SETTINGS_IN_METRICS: true [22:22:06] [Server thread/INFO]: [ChestShop] CACHE_SIZE: 1000 [22:22:06] [Server thread/INFO]: [ChestShop] DEFAULT_LANGUAGE: "en" [22:22:06] [Server thread/INFO]: [ChestShop] USE_CLIENT_LOCALE: true [22:22:06] [Server thread/INFO]: [ChestShop] SHOP_CONTAINERS: - "CHEST" - "TRAPPED_CHEST" - "SHULKER_BOX" [22:22:06] [Server thread/INFO]: [ChestShop] SHOP_INTERACTION_INTERVAL: 100 [22:22:06] [Server thread/INFO]: [ChestShop] IGNORE_CREATIVE_MODE: true [22:22:06] [Server thread/INFO]: [ChestShop] IGNORE_ACCESS_PERMS: true [22:22:06] [Server thread/INFO]: [ChestShop] REVERSE_BUTTONS: false [22:22:06] [Server thread/INFO]: [ChestShop] SHIFT_SELLS_IN_STACKS: true [22:22:06] [Server thread/INFO]: [ChestShop] SHIFT_SELLS_EVERYTHING: false [22:22:06] [Server thread/INFO]: [ChestShop] SHIFT_ALLOWS: "ALL" [22:22:06] [Server thread/INFO]: [ChestShop] ALLOW_SIGN_CHEST_OPEN: true [22:22:06] [Server thread/INFO]: [ChestShop] ALLOW_LEFT_CLICK_DESTROYING: true [22:22:06] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_SHOPS: false [22:22:06] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_CHESTS: false [22:22:06] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_WORLDS: - "world1" [22:22:06] [Server thread/INFO]: [ChestShop] ADMIN_SHOP_NAME: "Server Shop" [22:22:06] [Server thread/INFO]: [ChestShop] FORCE_UNLIMITED_ADMIN_SHOP: false [22:22:06] [Server thread/INFO]: [ChestShop] SERVER_ECONOMY_ACCOUNT: "servershop" [22:22:06] [Server thread/INFO]: [ChestShop] SERVER_ECONOMY_ACCOUNT_UUID: fa656a74-3291-3311-b1c5-a1757e256f9c [22:22:06] [Server thread/INFO]: [ChestShop] TAX_AMOUNT: 100 [22:22:06] [Server thread/INFO]: [ChestShop] SERVER_TAX_AMOUNT: 100 [22:22:06] [Server thread/INFO]: [ChestShop] SHOP_CREATION_PRICE: 0 [22:22:06] [Server thread/INFO]: [ChestShop] SHOP_REFUND_PRICE: 0 [22:22:06] [Server thread/INFO]: [ChestShop] PRICE_PRECISION: 2 [22:22:06] [Server thread/INFO]: [ChestShop] ENSURE_CORRECT_PLAYERID: false [22:22:06] [Server thread/INFO]: [ChestShop] VALID_PLAYERNAME_REGEXP: "^\\w+$" [22:22:06] [Server thread/INFO]: [ChestShop] BLOCK_SHOPS_WITH_SELL_PRICE_HIGHER_THAN_BUY_PRICE: false [22:22:06] [Server thread/INFO]: [ChestShop] MAX_SHOP_AMOUNT: 3456 [22:22:06] [Server thread/INFO]: [ChestShop] ALLOW_MULTIPLE_SHOPS_AT_ONE_BLOCK: true [22:22:06] [Server thread/INFO]: [ChestShop] ALLOW_PARTIAL_TRANSACTIONS: true [22:22:06] [Server thread/INFO]: [ChestShop] ALLOW_AUTO_ITEM_FILL: true [22:22:06] [Server thread/INFO]: [ChestShop] BUNGEECORD_MESSAGES: false [22:22:06] [Server thread/INFO]: [ChestShop] SHOW_MESSAGE_OUT_OF_STOCK: true [22:22:06] [Server thread/INFO]: [ChestShop] SHOW_MESSAGE_FULL_SHOP: true [22:22:06] [Server thread/INFO]: [ChestShop] NOTIFICATION_MESSAGE_COOLDOWN: 10 [22:22:06] [Server thread/INFO]: [ChestShop] CSTOGGLE_TOGGLES_OUT_OF_STOCK: true [22:22:06] [Server thread/INFO]: [ChestShop] CSTOGGLE_TOGGLES_FULL_SHOP: false [22:22:06] [Server thread/INFO]: [ChestShop] SHOW_TRANSACTION_INFORMATION_CLIENT: true [22:22:06] [Server thread/INFO]: [ChestShop] SHOW_TRANSACTION_INFORMATION_OWNER: true [22:22:06] [Server thread/INFO]: [ChestShop] LOG_TO_FILE: true [22:22:06] [Server thread/INFO]: [ChestShop] LOG_TO_CONSOLE: false [22:22:06] [Server thread/INFO]: [ChestShop] LOG_ALL_SHOP_REMOVALS: true [22:22:06] [Server thread/INFO]: [ChestShop] STACK_TO_64: false [22:22:06] [Server thread/INFO]: [ChestShop] USE_BUILT_IN_PROTECTION: true [22:22:06] [Server thread/INFO]: [ChestShop] STICK_SIGNS_TO_CHESTS: true [22:22:06] [Server thread/INFO]: [ChestShop] TURN_OFF_DEFAULT_PROTECTION_WHEN_PROTECTED_EXTERNALLY: false [22:22:06] [Server thread/INFO]: [ChestShop] TURN_OFF_SIGN_PROTECTION: false [22:22:06] [Server thread/INFO]: [ChestShop] TURN_OFF_HOPPER_PROTECTION: false [22:22:06] [Server thread/INFO]: [ChestShop] CHECK_ACCESS_FOR_SHOP_USE: false [22:22:06] [Server thread/INFO]: [ChestShop] PROTECT_CHEST_WITH_LWC: false [22:22:06] [Server thread/INFO]: [ChestShop] LWC_CHEST_PROTECTION_TYPE: "PRIVATE" [22:22:06] [Server thread/INFO]: [ChestShop] PROTECT_SIGN_WITH_LWC: false [22:22:06] [Server thread/INFO]: [ChestShop] LWC_SIGN_PROTECTION_TYPE: "PRIVATE" [22:22:06] [Server thread/INFO]: [ChestShop] REMOVE_LWC_PROTECTION_AUTOMATICALLY: true [22:22:06] [Server thread/INFO]: [ChestShop] LWC_LIMITS_BLOCK_CREATION: false [22:22:06] [Server thread/INFO]: [ChestShop] WORLDGUARD_INTEGRATION: false [22:22:06] [Server thread/INFO]: [ChestShop] WORLDGUARD_USE_FLAG: true [22:22:06] [Server thread/INFO]: [ChestShop] WORLDGUARD_USE_PROTECTION: false [22:22:06] [Server thread/INFO]: [ChestShop] GRIEFPREVENTION_INTEGRATION: false [22:22:06] [Server thread/INFO]: [ChestShop] REDPROTECT_INTEGRATION: false [22:22:06] [Server thread/INFO]: [ChestShop] AUTHME_HOOK: false [22:22:06] [Server thread/INFO]: [ChestShop] AUTHME_ALLOW_UNREGISTERED: true [22:22:06] [Server thread/INFO]: [ChestShop] HEROES_EXP: 0.0 [22:22:06] [Server thread/INFO]: [ChestShop] SHOWITEM_MESSAGE: false [22:22:06] [Server thread/INFO]: [ChestShop] USE_STOCK_COUNTER: false [22:22:06] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk [22:22:06] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now. [22:22:06] [Server thread/INFO]: [ChestShop] Vault loaded! [22:22:06] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent! [22:22:07] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v3.7.1 [22:22:07] [Server thread/INFO]: [ArmorStandTools] Loading support for v1_16_R3 [22:22:07] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support. [22:22:07] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled. [22:22:07] [Server thread/INFO]: [ChestShopNotifier] Enabling ChestShopNotifier v1.3.3 (build 51) [22:22:07] [Server thread/INFO]: [ChestShopNotifier] Connecting to the database... [22:22:07] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.24.0 [22:22:07] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.1 [22:22:07] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.1 [22:22:07] [pool-49-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (1d08598206b1af5dcc29e411cead8e152e4c3f94) [22:22:07] [Server thread/INFO]: [OreAnnouncer] Hooked into DiscordSRV [22:22:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oreannouncer [22:22:07] [Server thread/INFO]: [OreAnnouncer] Hooked into PlaceholderAPI [22:22:07] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.1 enabled [22:22:07] [Log4j2-TF-1-AsyncLogger[AsyncContext@14514713]-1/INFO]: [DiscordSRV] [JDA] Login Successful! [22:22:08] [Log4j2-TF-1-AsyncLogger[AsyncContext@14514713]-1/INFO]: [DiscordSRV] [JDA] Connected to WebSocket [22:22:08] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing... [22:22:08] [Thread-51/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.0 which is not a depend, softdepend or loadbefore of this plugin. [22:22:08] [Server thread/INFO]: Starting GS4 status listener [22:22:08] [Log4j2-TF-1-AsyncLogger[AsyncContext@14514713]-1/INFO]: [DiscordSRV] [JDA] Finished Loading! [22:22:08] [Server thread/INFO]: Thread Query Listener started [22:22:08] [Query Listener #1/INFO]: Query running on 54.37.244.4:25565 [22:22:08] [Server thread/INFO]: Running delayed init tasks [22:22:08] [Craft Scheduler Thread - 5/INFO]: [ClearLag] 0 Logs have been removed! [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:[KFB] Minecraft(852215410120065024) [22:22:08] [Craft Scheduler Thread - 5/INFO]: [Essentials] Fetching version information... [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:welcome(852215610410926090) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rules(852215638365700126) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions(852215682136408096) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:help-wanted(852218130041798676) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat(852217788617457744) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:showoff-central(852215787452235786) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:pixel-art(852215968902021120) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-spam(892508772600254504) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:help-ticket(852235956840431656) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(852215410120065027) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:trade(852215727587196941) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helpme(852215747690102834) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-chat(852226545426235484) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-rules(852216192599982121) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console(852216119019700295) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:private-admin-chat(852216137785802822) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ore-announce(856026100310999050) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-suggestions(852216171667390465) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcripts(852235527809663068) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:audit-log(892513598897791008) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:music(852228795552497755) [22:22:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console(852216119019700295) [22:22:08] [Server thread/INFO]: [AsyncWorldEdit] Loading plugins... [22:22:08] [Craft Scheduler Thread - 15/INFO]: [com.wfector.lib.hikari.HikariDataSource] HikariPool-1 - Starting... [22:22:08] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4/5 (754) [22:22:08] [Craft Scheduler Thread - 9/INFO]: [mcMMO] Cleaned backup files. Deleted 6 of 51 files. [22:22:08] [DiscordSRV - Initialization/WARN]: Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. [22:22:08] [Craft Scheduler Thread - 15/INFO]: [com.wfector.lib.hikari.HikariDataSource] HikariPool-1 - Start completed. [22:22:08] [Craft Scheduler Thread - 15/INFO]: [ChestShopNotifier] Database connected! [22:22:08] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)! [22:22:08] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized. [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] JDBC tables passed validation, using JDBC account backend [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Herochat hook [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook [22:22:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook [22:22:10] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor! [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.bencodez.votingplugin.VotingPluginMain from VotingPlugin v6.6.3 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.3.68 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ViaVersion [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.gmail.nossr50.mcMMO from mcMMO v2.1.201 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.5+3827266 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.sk89q.worldedit.world.World from WorldEdit v7.2.6+4b2d1e7 which is not a depend, softdepend or loadbefore of this plugin. [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: worldguard [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: worldborder [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [22:22:10] [Server thread/INFO]: 9 placeholder hooks successfully registered! [22:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [22:22:10] [Server thread/INFO]: Done (32.215s)! For help, type "help" [22:22:10] [Server thread/INFO]: Timings Reset [22:22:10] [Craft Scheduler Thread - 14/INFO]: [Vault] Checking for Updates ... [22:22:10] [Craft Scheduler Thread - 14/INFO]: [Vault] No new version available [22:22:10] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy! [22:22:10] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions [22:22:10] [Craft Scheduler Thread - 15/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.6.3 [22:25:17] [Server thread/INFO]: CONSOLE issued server command: /list [22:25:17] [Server thread/INFO]: There are 0 players online. [22:28:25] [Server thread/INFO]: CONSOLE issued server command: /list [22:28:25] [Server thread/INFO]: There are 0 players online. [22:31:33] [Server thread/INFO]: CONSOLE issued server command: /list [22:31:33] [Server thread/INFO]: There are 0 players online. [22:32:51] [User Authenticator #1/INFO]: UUID of player IronChef__ is 842a806f-d543-412b-b643-522479784a43 [22:32:52] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates... [22:32:52] [Server thread/INFO]: IronChef__[/2.216.57.193:56746] logged in with entity id 81 at ([world]22.242609450490875, 164.0, -7.210203065386932) [22:32:52] [Server thread/INFO]: IronChef__ joined the game [22:32:57] [Craft Scheduler Thread - 62/INFO]: [ChestShopNotifier] Found rows: 0 [22:32:57] [Craft Scheduler Thread - 62/INFO]: [ChestShopNotifier] Done. [22:33:10] [Server thread/INFO]: IronChef__ issued server command: /baltop [22:33:37] [Server thread/INFO]: IronChef__ issued server command: /eco set ServerShop 100000 [22:33:41] [Server thread/INFO]: IronChef__ issued server command: /eco reset IronChef__ [22:33:45] [Server thread/INFO]: IronChef__ issued server command: /baltop [22:33:54] [Server thread/INFO]: [ChestShopNotifier] Item added to batch. [22:33:54] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Uploading a batch... [22:33:54] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Update: INSERT INTO csnUUID (`ShopOwnerId`, `CustomerId`, `CustomerName`, `ItemId`, `Mode`, `Amount`, `Time`, `Quantity`, `Unread`) VALUES (?,?,?,?,?,?,?,?,?) [22:33:54] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Batch completed. [22:33:55] [Server thread/INFO]: IronChef__ issued server command: /baltop [22:34:11] [Server thread/INFO]: [ChestShopNotifier] Item added to batch. [22:34:11] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Uploading a batch... [22:34:11] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Update: INSERT INTO csnUUID (`ShopOwnerId`, `CustomerId`, `CustomerName`, `ItemId`, `Mode`, `Amount`, `Time`, `Quantity`, `Unread`) VALUES (?,?,?,?,?,?,?,?,?) [22:34:11] [Craft Scheduler Thread - 72/INFO]: [ChestShopNotifier] Batch completed. [22:34:12] [Server thread/INFO]: IronChef__ issued server command: /baltop [22:35:45] [Server thread/INFO]: IronChef__ lost connection: Disconnected [22:35:45] [Server thread/INFO]: IronChef__ left the game ```
Chestshop.log ```yaml 2021/10/03 20:04:20 Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml! 2021/10/03 20:06:07 IronChef__ bought 64 Birch Log for 100.00 from Server Shop at [world] 24, 165, -10 2021/10/03 20:06:12 IronChef__ sold 64 Birch Log for 50.00 to Server Shop at [world] 24, 165, -10 2021/10/03 22:19:21 Disabling ChestShop v3.12.1-SNAPSHOT (build 324) 2021/10/03 22:22:07 Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml! 2021/10/03 22:33:54 IronChef__ bought 64 Birch Log for 100.00 from Server Shop at [world] 24, 165, -10 2021/10/03 22:34:11 IronChef__ sold 64 Birch Log for 50.00 to Server Shop at [world] 24, 165, -10 ```

What other plugins are you running?

Plugins ```yaml Plugins (36): AdvancedAchievements, ArmorStandTools, AsyncWorldEdit, ChestShop, ChestShopNotifier, ClearLag, CommandSigns, CoreProtect, CraftBook, CrateReloaded, DiscordSRV, dynmap, Essentials, EssentialsGeoIP, EssentialsSpawn, Herochat*, HolographicDisplays, KeepDeathDrop, LuckPerms, mcMMO, MyWarp, OpenInv, OreAnnouncer, PlaceholderAPI, ProtectionStones, ProtocolLib, SuperVanish, Vault, ViaBackwards, ViaVersion, Votifier, VotingPlugin, WorldBorder, WorldEdit, WorldGuard, WorldGuardExtraFlags ```

Agreements

Additional context

If any other information is required, please let me know, and I shall get it to you.

PlayingWithPi commented 2 years ago

Just read through possible same issues...(?) and they had added the chestshop.notax.sell flag to their users permissions to resolve the issue..

This seems to worked for me as well. Which of the tax options does the flag above ignore? TAX_AMOUNT or SERVER_TAX_AMOUNT ?

May want to look further into what's happening here. Or at least adding a line saying that it's being taxed within Chestshop.log, so it doesn't look like nothing is happening surrounding the transaction !

helomen commented 2 years ago

Unfortunately, I get the same error even though I added chestshop.notax.sell to user permissions. Does anyone have another idea or could help me?

I'm running on PaperMC: This server is running Paper version git-Paper-379 (MC: 1.18.2) (Implementing API version 1.18.2-R0.1-SNAPSHOT) (Git: 276d830) You are running the latest version Previous version: git-Paper-81 (MC: 1.18.1)

ChestShop's version is: 3.12.1 (build 347)

EssentialX version: 2.19.4 Vault-Version: 1.7.3-b131

Here is my log: 2022/06/10 08:46:36 WARNING Could not get balance account of 7649cddd-572a-4d3d-bfbb-4fe224c02031/null.This is probably due to https://github.com/MilkBowl/Vault/issues/746 and has to be fixed in either Vault directly or your economy plugin.If you are sure it's not this issue then please report the following error. java.lang.NullPointerException: Cannot invoke "String.toLowerCase()" because "this.username" is null at EssentialsX-2.19.4.jar//com.earth2me.essentials.config.EssentialsUserConfiguration.altFileExists(EssentialsUserConfiguration.java:59) at EssentialsX-2.19.4.jar//com.earth2me.essentials.config.EssentialsConfiguration.load(EssentialsConfiguration.java:353) at EssentialsX-2.19.4.jar//com.earth2me.essentials.UserData.reloadConfig(UserData.java:84) at EssentialsX-2.19.4.jar//com.earth2me.essentials.UserData.(UserData.java:59) at EssentialsX-2.19.4.jar//com.earth2me.essentials.User.(User.java:97) at EssentialsX-2.19.4.jar//com.earth2me.essentials.UserMap.load(UserMap.java:209) at EssentialsX-2.19.4.jar//com.earth2me.essentials.economy.vault.VaultEconomyProvider.createPlayerAccount(VaultEconomyProvider.java:322) at EssentialsX-2.19.4.jar//com.earth2me.essentials.economy.vault.VaultEconomyProvider.getBalance(VaultEconomyProvider.java:118) at EssentialsX-2.19.4.jar//com.earth2me.essentials.economy.vault.VaultEconomyProvider.getBalance(VaultEconomyProvider.java:140) at ChestShop.jar//com.Acrobot.ChestShop.Listeners.Economy.Plugins.VaultListener.onAmountCheck(VaultListener.java:111) at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor423.execute(Unknown Source) at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:669) at ChestShop.jar//com.Acrobot.ChestShop.ChestShop.callEvent(ChestShop.java:561) at ChestShop.jar//com.Acrobot.ChestShop.Listeners.Economy.ServerAccountCorrector.onBalanceCheck(ServerAccountCorrector.java:140) at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:669) at ChestShop.jar//com.Acrobot.ChestShop.ChestShop.callEvent(ChestShop.java:561) at ChestShop.jar//com.Acrobot.ChestShop.Listeners.PreTransaction.PartialTransactionModule.onPreSellTransaction(PartialTransactionModule.java:119) at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:669) at ChestShop.jar//com.Acrobot.ChestShop.Listeners.Player.PlayerInteract.onInteract(PlayerInteract.java:168) at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:669) at org.bukkit.craftbukkit.v1_18_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:544) at org.bukkit.craftbukkit.v1_18_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:507) at org.bukkit.craftbukkit.v1_18_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:502) at net.minecraft.server.level.PlayerInteractManager.a(PlayerInteractManager.java:229) at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:1770) at net.minecraft.network.protocol.game.PacketPlayInBlockDig.a(PacketPlayInBlockDig.java:34) at net.minecraft.network.protocol.game.PacketPlayInBlockDig.a(PacketPlayInBlockDig.java:14) at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$1(PlayerConnectionUtils.java:51) at net.minecraft.server.TickTask.run(TickTask.java:18) at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153) at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24) at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1400) at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:188) at net.minecraft.util.thread.IAsyncTaskHandler.y(IAsyncTaskHandler.java:126) at net.minecraft.server.MinecraftServer.be(MinecraftServer.java:1377) at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1370) at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136) at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1348) at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1230) at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) at java.base/java.lang.Thread.run(Thread.java:833)