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

Could not add money to account, java.lang.NullPointerException: null #351

Closed Mobmaker55 closed 4 years ago

Mobmaker55 commented 4 years ago

Plugin Version

3.11 (build 213)

Plugin Config

# Should the plugin log some messages that are useful for debugging?
DEBUG: false

# 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"

# (In 1/1000th of a second) How often can a player use the shop sign?
SHOP_INTERACTION_INTERVAL: 250
# Do you want to allow using shops to people in creative mode?
IGNORE_CREATIVE_MODE: true
# Do you want to allow using shops to people who have access to it due to their permissions? (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: false
# 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"
- "world2"

# First line of your Admin Shop's sign should look like this:
ADMIN_SHOP_NAME: "Shop"
# The name of the economy account which Admin Shops should use and to which all taxes will go
SERVER_ECONOMY_ACCOUNT: ""
# 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: 00000000-0000-0000-0000-000000000000
# Percent of the price that should go to the server's account. (100 = 100 percent)
TAX_AMOUNT: 0
# Percent of the price that should go to the server's account when buying from an Admin Shop.
SERVER_TAX_AMOUNT: 0
# 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

# 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: true

# 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: false
# 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: false
# 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: false
# Do you want ChestShop's messages to show up in console?
LOG_TO_CONSOLE: true
# 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: false
# 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: true

# 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: false
# 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: true
# Do you want to allow shop access to unregistered users? (Example: registration is optional)
AUTHME_ALLOW_UNREGISTERED: false

# How much Heroes exp should people get for creating a ChestShop?
HEROES_EXP: 100.0

# Add icons and make item names hoverable in transaction messages when ShowItem is installed?
SHOWITEM_MESSAGE: true

Server Version

Paper version git-Paper-149 (MC: 1.16.2) (Implementing API version 1.16.2-R0.1-SNAPSHOT)

Server Log

[07:46:27] [main/INFO]: Reloading ResourceManager: Default, bukkit
[07:46:29] [Server-Worker-4/INFO]: Loaded 7 recipes
[07:46:31] [Server thread/INFO]: Starting minecraft server version 1.16.2
[07:46:31] [Server thread/INFO]: Loading properties
[07:46:31] [Server thread/INFO]: This server is running Paper version git-Paper-149 (MC: 1.16.2) (Implementing API version 1.16.2-R0.1-SNAPSHOT)
[07:46:31] [Server thread/INFO]: Server Ping Player Sample Count: 12
[07:46:31] [Server thread/INFO]: Using 4 threads for Netty based IO
[07:46:31] [Server thread/INFO]: Debug logging is disabled
[07:46:31] [Server thread/INFO]: Default game type: SURVIVAL
[07:46:31] [Server thread/INFO]: Generating keypair
[07:46:32] [Server thread/INFO]: Starting Minecraft server on *:25565
[07:46:33] [Server thread/INFO]: Using epoll channel type
[07:46:34] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[07:46:39] [Server thread/WARN]: Legacy plugin dynmap v3.1-beta3a-409 does not specify an api-version.
[07:46:39] [Server thread/WARN]: Legacy plugin VaultChatFormatter v1.0-SNAPSHOT does not specify an api-version.
[07:46:39] [Server thread/WARN]: Legacy plugin ChatEx v2.6.1 does not specify an api-version.
[07:46:40] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.1.93
[07:46:40] [Server thread/INFO]: [UberEnchant] Loading UberEnchant v8.9.1
[07:46:40] [Server thread/INFO]: [OpenInv] Loading OpenInv v4.1.4
[07:46:40] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.9
[07:46:40] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[07:46:40] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[07:46:40] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.1
[07:46:40] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.16.2) has not yet been tested! Proceed with caution.
[07:46:40] [Server thread/INFO]: [dynmap] Loading dynmap v3.1-beta3a-409
[07:46:40] [Server thread/INFO]: [dynmap] version=git-Paper-149 (MC: 1.16.2)
[07:46:40] [Server thread/INFO]: [dynmap] Mod Support API available
[07:46:40] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.0-beta-04+98f71a3
[07:46:41] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@44b07723]
[07:46:41] [Server thread/INFO]: [TabList] Loading TabList v5.4.5
[07:46:41] [Server thread/INFO]: [VaultChatFormatter] Loading VaultChatFormatter v1.0-SNAPSHOT
[07:46:41] [Server thread/INFO]: [BasicEcon] Loading BasicEcon v1.0
[07:46:41] [Server thread/INFO]: [ChatEx] Loading ChatEx v2.6.1
[07:46:41] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.4
[07:46:41] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.4-beta1;bc551da
[07:46:41] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.11 (build 213)
[07:46:41] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.4-beta1;bc551da loaded.
[07:46:41] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.11.0
[07:46:42] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (265 ms)
[07:46:42] [Server thread/INFO]: [Shopkeepers] Loading config.
[07:46:42] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[07:46:42] [Server thread/INFO]: [Shopkeepers] Couldn't register WorldGuard flag 'allow-shop': A flag already exists by the name allow-shop
[07:46:42] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[07:46:42] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v6.4.0
[07:46:42] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[07:46:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.1.93
[07:46:42] [Server thread/INFO]:         __    
[07:46:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.1.93
[07:46:42] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[07:46:42] [Server thread/INFO]: 
[07:46:42] [Server thread/INFO]: [LuckPerms] Loading configuration...
[07:46:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[07:46:44] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[07:46:44] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[07:46:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2402ms)
[07:46:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[07:46:45] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[07:46:45] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[07:46:45] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[07:46:45] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.1
[07:46:45] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[07:46:45] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.0-beta-04+98f71a3
[07:46:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[07:46:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R2 as the Bukkit adapter
[07:46:46] [Server thread/INFO]: [BasicEcon] Enabling BasicEcon v1.0
[07:46:46] [Server thread/INFO]: VaultAPI hooked into BasicEcon
[07:46:46] [Server thread/INFO]: Preparing level "world"
[07:46:47] [Server thread/INFO]: -------- World Settings For [world] --------
[07:46:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:46:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[07:46:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[07:46:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[07:46:47] [Server thread/INFO]: Max TNT Explosions: 100
[07:46:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:46:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:46:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:46:47] [Server thread/INFO]: Item Merge Radius: 2.5
[07:46:47] [Server thread/INFO]: Item Despawn Rate: 6000
[07:46:47] [Server thread/INFO]: View Distance: 10
[07:46:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[07:46:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:46:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:46:47] [Server thread/INFO]: Mob Spawn Range: 8
[07:46:47] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[07:46:47] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[07:46:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:46:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[07:46:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[07:46:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[07:46:47] [Server thread/INFO]: Max TNT Explosions: 100
[07:46:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:46:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:46:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:46:47] [Server thread/INFO]: Item Merge Radius: 2.5
[07:46:47] [Server thread/INFO]: Item Despawn Rate: 6000
[07:46:47] [Server thread/INFO]: View Distance: 10
[07:46:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[07:46:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:46:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:46:47] [Server thread/INFO]: Mob Spawn Range: 8
[07:46:47] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[07:46:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[07:46:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:46:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[07:46:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[07:46:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[07:46:47] [Server thread/INFO]: Max TNT Explosions: 100
[07:46:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:46:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:46:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:46:47] [Server thread/INFO]: Item Merge Radius: 2.5
[07:46:47] [Server thread/INFO]: Item Despawn Rate: 6000
[07:46:47] [Server thread/INFO]: View Distance: 10
[07:46:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[07:46:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:46:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:46:47] [Server thread/INFO]: Mob Spawn Range: 8
[07:46:48] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[07:46:49] [Server thread/INFO]: Loaded 0 spawn chunks for world world
[07:46:49] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:49] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:49] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:49] [Server thread/INFO]: Preparing spawn area: 2%
[07:46:49] [Server thread/INFO]: Time elapsed: 1612 ms
[07:46:49] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[07:46:50] [Server thread/INFO]: Loaded 0 spawn chunks for world world_nether
[07:46:50] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:50] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:50] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:51] [Server-Worker-3/INFO]: Preparing spawn area: 100%
[07:46:51] [Server thread/INFO]: Time elapsed: 1789 ms
[07:46:51] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[07:46:51] [Server thread/INFO]: Loaded 0 spawn chunks for world world_the_end
[07:46:51] [Server thread/INFO]: Preparing spawn area: 0%
[07:46:51] [Server-Worker-3/INFO]: Preparing spawn area: 99%
[07:46:52] [Server thread/INFO]: Time elapsed: 831 ms
[07:46:52] [Server thread/INFO]: [UberEnchant] Enabling UberEnchant v8.9.1
[07:46:52] [Server thread/WARN]: [UberEnchant] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[07:46:52] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.1.4
[07:46:52] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.9
[07:46:52] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[07:46:52] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[07:46:52] [Server thread/INFO]: [dynmap] Enabling dynmap v3.1-beta3a-409*
[07:46:53] [Server thread/INFO]: [dynmap] Added 4 custom biome mappings
[07:46:53] [Server thread/INFO]: [dynmap] Using LuckPerms 5.1.93 for access control
[07:46:53] [Server thread/INFO]: [dynmap] Mod Support processing completed
[07:46:54] [Server thread/INFO]: [dynmap] Loaded 25 shaders.
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[07:46:55] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[07:46:55] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[07:46:55] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:8123
[07:46:55] [Server thread/INFO]: [dynmap] version 3.1-beta3a-409 is enabled - core version 3.1-beta3a-409
[07:46:55] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap or our Discord at https://discord.gg/s3rd5qn
[07:46:55] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[07:46:55] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 26994 pending tile renders for world 'world'
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'.
[07:46:55] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'.
[07:46:55] [Server thread/INFO]: [dynmap] Enabled
[07:46:55] [Server thread/INFO]: [TabList] Enabling TabList v5.4.5
[07:46:55] [Server thread/INFO]: [TabList] Hooked PlaceholderAPI version: 2.10.9
[07:46:55] [Server thread/INFO]: [TabList] > The plugin successfully enabled v5.4.5! (131ms)
[07:46:55] [Server thread/INFO]: [VaultChatFormatter] Enabling VaultChatFormatter v1.0-SNAPSHOT*
[07:46:55] [Server thread/INFO]: [VaultChatFormatter] New Vault Chat implementation registered: LuckPerms
[07:46:56] [Server thread/INFO]: [ChatEx] Enabling ChatEx v2.6.1*
[07:46:56] [Server thread/INFO]: [ChatEx] Successfully hooked into: LuckPerms
[07:46:56] [Server thread/INFO]: [ChatEx] Hooked into PlaceholderAPI
[07:46:56] [Server thread/INFO]: [ChatEx] Server version:git-Paper-149 (MC: 1.16.2)
[07:46:56] [Server thread/INFO]: [ChatEx] Loading RGB ColorCodes!
[07:46:56] [Server thread/INFO]: [ChatEx] No ColorCodes Specified!
[07:46:56] [Server thread/INFO]: [ChatEx] Thanks for using bstats, it was enabled!
[07:46:56] [Server thread/INFO]: [ChatEx] is now enabled!
[07:46:56] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.4
[07:46:56] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[07:46:56] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.4-beta1;bc551da
[07:46:56] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[07:46:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[07:46:56] [Server thread/INFO]: [WorldGuard] Loading region data...
[07:46:56] [ForkJoinPool.commonPool-worker-1/INFO]: New version (5.4.6) is available at https://www.spigotmc.org/resources/46229/
[07:46:57] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.11 (build 213)
[07:46:57] [Server thread/INFO]: [ChestShop] Found locale en!
[07:46:57] [Server thread/WARN]: [ChestShop] Server economy account setting '' doesn't seem to be the name of a known player! Please log in at least once in order for the server economy account to work.
[07:46:57] [Server thread/INFO]: [ChestShop] Using BasicEcon as the Economy provider now.
[07:46:57] [Server thread/INFO]: [ChestShop] Vault loaded!
[07:46:57] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[07:46:57] [Server thread/INFO]: [ChestShop] 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!
[07:46:57] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.11.0
[07:46:57] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v6.4.0
[07:46:57] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[07:46:57] [Server thread/INFO]: [SilkSpawners] Loading support for v1_16_R2
[07:46:57] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled.
[07:46:58] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[07:46:58] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[07:46:58] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[07:46:58] [Server thread/INFO]: Running delayed init tasks
[07:46:58] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Checking for update...
[07:46:58] [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.
[07:46:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[07:46:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: objective
[07:46:58] [Server thread/INFO]: 2 placeholder hooks successfully registered!
[07:46:58] [Server thread/INFO]: Done (27.387s)! For help, type "help"
[07:46:58] [Server thread/INFO]: Timings Reset
[07:46:58] [Craft Scheduler Thread - 4/INFO]: [Vault] Checking for Updates ... 
[07:46:59] [Craft Scheduler Thread - 4/INFO]: [Vault] No new version available
[07:46:59] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Version installed is 2.6.1
[07:46:59] [Craft Scheduler Thread - 2/INFO]: [ChatEx] Latest version found online is 2.6.1
[07:46:59] [Craft Scheduler Thread - 2/INFO]: [ChatEx] No update found.
[07:46:59] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[08:37:12] [Server thread/INFO]: Whitelist is now turned off
[08:37:17] [User Authenticator #1/INFO]: UUID of player WonderBobYT is af090d0b-0943-4c8d-8f12-d528d86be2ba
[08:37:18] [Server thread/INFO]: WonderBobYT joined the game
[10:05:48] [Server thread/INFO]: Mobmaker55 joined the game
[10:05:49] [Server thread/INFO]: Mobmaker55[/192.168.1.21:63875] logged in with entity id 18441 at ([world]-165.21627929281956, 150.0, -210.51926408553356)
[10:05:57] [Server thread/WARN]: [ChestShop] Could not add money to account of 3144e0e0-8963-4eac-a7a0-32d688175db4/Mobmaker55.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: null
    at com.Acrobot.ChestShop.Listeners.Economy.Plugins.VaultListener.onCurrencyAdd(VaultListener.java:192) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor201.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69) ~[patched_1.16.2.jar:git-Paper-149]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:607) ~[patched_1.16.2.jar:git-Paper-149]
    at com.Acrobot.ChestShop.ChestShop.callEvent(ChestShop.java:518) ~[?:?]
    at com.Acrobot.ChestShop.Listeners.Economy.EconomyAdapter.processTransfer(EconomyAdapter.java:60) ~[?:?]
    at com.Acrobot.ChestShop.Listeners.Economy.Plugins.VaultListener.onCurrencyTransfer(VaultListener.java:232) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor196.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69) ~[patched_1.16.2.jar:git-Paper-149]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:607) ~[patched_1.16.2.jar:git-Paper-149]
    at com.Acrobot.ChestShop.ChestShop.callEvent(ChestShop.java:518) ~[?:?]
    at com.Acrobot.ChestShop.Listeners.PostTransaction.EconomicModule.onBuyTransaction(EconomicModule.java:24) ~[?:?]
    at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) ~[patched_1.16.2.jar:git-Paper-149]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:607) ~[patched_1.16.2.jar:git-Paper-149]
    at com.Acrobot.ChestShop.Listeners.Player.PlayerInteract.onInteract(PlayerInteract.java:153) ~[?:?]
    at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) ~[patched_1.16.2.jar:git-Paper-149]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:607) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.craftbukkit.v1_16_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:502) ~[patched_1.16.2.jar:git-Paper-149]
    at org.bukkit.craftbukkit.v1_16_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:469) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.PlayerInteractManager.a(PlayerInteractManager.java:154) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.PlayerConnection.a(PlayerConnection.java:1384) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.PacketPlayInBlockDig.a(SourceFile:40) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.PacketPlayInBlockDig.a(SourceFile:10) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:23) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.TickTask.run(SourceFile:18) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.MinecraftServer.ba(MinecraftServer.java:1135) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.MinecraftServer.executeNext(MinecraftServer.java:1128) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.MinecraftServer.sleepForTick(MinecraftServer.java:1089) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.MinecraftServer.w(MinecraftServer.java:1003) ~[patched_1.16.2.jar:git-Paper-149]
    at net.minecraft.server.v1_16_R2.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.2.jar:git-Paper-149]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_265]

What other plugins are you running?

BasicEcon 1.0 ChatEx 2.6.1 ChestShop 3.11 (build 213) dynmap version 3.1-beta3a-409 HolographicDisplays 2.4.4 LuckPerms 5.1.93 OpenInv 4.1.4 PlaceholderAPI 2.10.9 PlugMan 2.1.7 ProtocolLib 4.5.1 Shopkeepers 2.11.0 SilkSpawners 6.4.0 TabList 5.4.5 UberEnchant 8.9.1 Vault 1.7.3-b131 VaultChatFormatter 1.0-SNAPSHOT WorldEdit 7.2.0-beta-04+98f71a3 WorldGuard 7.0.4-beta1;bc551da

What is happening?

1) Make admin shop sign (admin shop was changed to just "Shop") 2020-08-31_12 14 09 2) Have a user try to sell something 2020-08-31_12 15 04 3) Nothing but an error image

What did you expect to happen?

What I expected was for the diamond to be removed from Mobmaker55's inventory, and for Mobmaker55 to recieve $100 ingame.

Additional context

I am using my own economy plugin, so if I need to add / edit something, please let me know. I didn't know exactly what the onCurrencyAdd function was for, so I didn't know if I needed to change something in my plugin or not. If this is on my end, please just tell me what I need to implement. Thanks!

Phoenix616 commented 4 years ago

Please always test if issues still exist in the latest development build.

As for your own Economy plugin: That should work just fine as long as you provide a fully implemented Vault Economy adapter. Make sure that you return a response on Economy#depositPlayer as it looks like that's the object that it fails one (if nothing changed in the class between your ChestShop version and the latest code)

Mobmaker55 commented 4 years ago

What should be in my return statement for Economy#depositPlayer? I just have it as return null; because it's a EconomyResponse type, and all the tutorials / my friends said "just return null man."

Phoenix616 commented 4 years ago

It should return an EconomyResponse object which contains whether or not the transaction was successful. Returning null will break any plugin properly handling failed transactions (like ChestShop tries to do which causes the error)

Mobmaker55 commented 4 years ago

This is going to sounds stupid, as I'm still not a great dev, but how does one respond with an EconomyResponse object that isn't null? Everything seems to error out in my IDE...

Phoenix616 commented 4 years ago

You create a new instance with new EconomyResponse(the stuff it wants in the constructor) :)

Mobmaker55 commented 4 years ago

Thank you so much! Sorry about that being completely my mistake :)

Also, very awesome plugin, I've used this for as long as I can remember!