Can't get jobs to load in my game #20


  • New
  • Other
Open
  • _ForgeUser22419269 created this issue Nov 23, 2015

    I can't get jobs so load in my game i keep getting an error saying "in 'string', line 9, column 3  expected '<document start>', but found BlockMappingStart ERROR No jobs were loaded! ERROR Check your config for formatting issues"

    This is my config file

    # Jobs configuration.
    #
    # Stores information about each job.
    #
    # NOTE: When having multiple jobs, both jobs will give the income payout to the player
    # even if they give the pay for one action (make the configurations with this in mind)
    # and each job will get the respective experience.
    #
    # e.g If player has 2 jobs where job1 gives 10 income and experience for killing a player
    # and job2 gives 5 income and experience for killing a player. When the user kills a player
    # they will get 15 income and job1 will gain 10 experience and job2 will gain 5 experience.
      # must be one word
        # full name of the job (displayed when browsing a job, used when joining and leaving)
        # also can be used as a prefix for the user's name if the option is enabled.
        # Shown as a prefix only when the user has 1 job.
        #
        # NOTE: Must be 1 word
        # Shortened version of the name of the job. Used as a prefix when the user has more
        # than 1 job
        # The colour of the name, for a full list of supported colours, go to the message config.
        # Option to let you choose what kind of prefix this job adds to your name.
        # options are: full, title, job, shortfull, shorttitle, shortjob and none

        # [OPTIONAL] - the maximum level of this class

        # [OPTIONAL] - the maximum level of this class with specific permission
        # use jobs.[jobsname].vipmaxlevel

        # [OPTIONAL] - the maximum number of users on the server that can have this job at
        # any one time (includes offline players).

        # Equation used for calculating how much experience is needed to go to the next level.
        # Available parameters:
        #   numjobs - the number of jobs the player has
        #   joblevel - the level the player has attained in the job.
        # NOTE: Please take care of the brackets when modifying this equation.
        leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
        # Equation used for calculating how much income is given per action for the job level.
        # Available parameters:
        #   baseincome - the income for the action at level 1 (as set in the configuration).
        #   joblevel - the level the player has attained in the job.
        # NOTE: Please take care of the brackets when modifying this equation.

        # Available parameters:
        #   baseexperience - the experience for the action at level 1 (as set in the configuration).
        #   joblevel - the level the player has attained in the job.
        # NOTE: Please take care of the brackets when modifying this equation.

        ########################################################################
        # Section used to configure what items the job gets paid for, how much
        # they get paid and how much experience they gain.
        #
        # For break and place, the block name or id is used.
        # You can select a sub-type by using a '-' between the id and the bit
        # value for the sub-type. e.g LOG-0 = usual log, LOG-2 = birch log
        # 17-2 = birch log.
        #
        # If no sub-type is give, the payout will be for all sub-types.
        #
        # To get a list of all available block types, check the
        # bukkit JavaDocs for a complete list of block types
        # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
        #
        # For kill tags (Kill and custom-kill), the name is the name of the
        # mob.
        # Available mobs:
        #   Bat
        #   Blaze
        #   Cave_spider
        #   Chicken
        #   Cow
        #   Creeper
        #   Ender_dragon
        #   Enderman
        #   Endermite
        #   Ghast
        #   Giant
        #   Guardian
        #   Horse
        #   Iron_golem
        #   Magma_cube
        #   Mushroom_cow
        #   Ocelot
        #   Pig
        #   Player
        #   Rabbit
        #   Sheep
        #   Silverfish
        #   Skeleton
        #   Slime
        #   Snowman
        #   Spider
        #   Squid
        #   Villager
        #   Witch
        #   Wither
        #   Wolf
        #   Zombie
        #
        # NOTE: mob names are case sensitive.
        #
        # For custom-kill, it is the name of the job (also case sensitive).
        #
        # NOTE: If a job has both the pay for killing a player and for killing a
        # specific class, they will get both payments.
        ########################################################################
        # payment for breaking a block
        # permissions granted for joining class
        permissions:
          # example node

            # true to give, false to revoke
            value: true
            # minimum level needed to grant permission.  Use 0 for all levels

            # Permission granted when reaching level 10

        # Permissions granted when perticular conditions are meet
        conditions:
          # Condition mane, irelevent, you can write anything in here
          first:
            # j marks that player should have particular jobs level and higher
            - p:essentials.notnoob
            # p marks permission, player will get if given true value, if used false, permission will be taken

        # Commands executed when player reached level
        commands:
          # command name, just to have better idea what this do
          fly:
            # Command its self, this will be executed from console, so all commands should work
            # Possible variables are: [player] [jobname] [oldlevel] [newlevel]
            command: manuaddp [player] essentials.fly
            # When to execute this command first time
            levelFrom: 100
            # Until when to do this command
            # This can be set to same level as levelFrom, so this command will be executed only once
            levelUntil: 100
        # Getting more money when equiped with specific weapon/tool ar wearing armor
        items:
          # Just name, dont have any impact
          firstOne:
            # Tool/Weapon id. Works for block Break, Fish, Animal tame, Breed, Monster/Player kill.

            # Items name, should be with color codes
            name: '&8Miner Pickaxe'
            # Item lore, again should come with color codes

            # Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html

            # Money boost: 1.1 is equals 10% more income when 0.9 is equals 10% less from base income
            # Exp boost
          helmet:
            # Armor id. This one works with all jobs

    This is my console

    23.11 17:39:08 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_60]
    23.11 17:39:08 [Server] INFO at ru.tehkode.libs.net.gravitydevelopment.updater.Updater$UpdateRunnable.run(Updater.java:713) [PermissionsEx-1.23.3.jar:?]
    23.11 17:39:08 [Server] INFO at ru.tehkode.libs.net.gravitydevelopment.updater.Updater.access$100(Updater.java:36) [PermissionsEx-1.23.3.jar:?]
    23.11 17:39:08 [Server] INFO at ru.tehkode.libs.net.gravitydevelopment.updater.Updater.runUpdater(Updater.java:718) [PermissionsEx-1.23.3.jar:?]
    23.11 17:39:08 [Server] INFO at ru.tehkode.libs.net.gravitydevelopment.updater.Updater.read(Updater.java:643) [PermissionsEx-1.23.3.jar:?]
    23.11 17:39:08 [Server] INFO at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_60]
    23.11 17:39:08 [Server] INFO at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1440) ~[?:1.8.0_60]
    23.11 17:39:08 [Server] INFO at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1839) ~[?:1.8.0_60]
    23.11 17:39:08 [Server] INFO java.io.IOException: Server returned HTTP response code: 504 for URL: https://api.curseforge.com/servermods/files?projectIds=31279
    23.11 17:39:08 [Server] ERROR null
    23.11 17:39:08 [Server] ERROR If you have not recently modified your configuration and this is the first time you are seeing this message, the site may be experiencing temporary downtime.
    23.11 17:39:08 [Server] ERROR The updater could not contact dev.bukkit.org for updating.
    23.11 17:39:06 [Server] INFO §cpandaistprophet §4was denied access to command.
    23.11 17:38:58 [Server] INFO De-opped pandaistprophet
    23.11 17:38:24 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_60]
    23.11 17:38:24 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:537) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:629) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:335) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:680) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:349) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:53) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at me.GuavaTree.GC.MainClass$1.run(MainClass.java:199) ~[?:?]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftInventory.addItem(CraftInventory.java:278) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftInventory.firstPartial(CraftInventory.java:251) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftItemStack.asCraftCopy(CraftItemStack.java:82) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftItemStack.<init>(CraftItemStack.java:103) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftItemStack.<init>(CraftItemStack.java:114) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.inventory.CraftItemStack.<init>(CraftItemStack.java:107) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.bukkit.inventory.ItemStack.setType(ItemStack.java:173) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:24 [Server] INFO java.lang.IllegalArgumentException: Material cannot be null
    23.11 17:38:24 [Server] WARN Task #16 for AirdropsPlus v0.1 generated an exception
    23.11 17:38:24 [Server] INFO Previous Airdrop has timed out.
    23.11 17:38:21 [Server] WARN Can't keep up! Did the system time change, or is the server overloaded? Running 2151ms behind, skipping 43 tick(s)
    23.11 17:38:21 [Server] INFO No updates available.
    23.11 17:38:19 [Multicraft] pandaistprophet ran command Message of the Day
    23.11 17:38:19 [Connect] User pandaistprophet, IP 184.155.149.28
    23.11 17:38:19 [Disconnect] User com.mojang.authlib.GameProfile@5a5b7603[id=<null>,name=pandaistprophet,properties={},legacy=false] (/184.155.149.28:64217) has disconnected, reason: Internal Exception: java.lang.NullPointerException
    23.11 17:38:18 [Server] INFO All files loaded. Ready to play...
    23.11 17:38:18 [Server] INFO No new version available
    23.11 17:38:18 [Server] WARN ... 13 more
    23.11 17:38:18 [Server] WARN at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.Yaml.load(Yaml.java:369)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:450)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:229)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:229)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:224)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:143)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:558)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:225)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:280)
    23.11 17:38:18 [Server] WARN at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:465)
    23.11 17:38:18 [Server] INFO ^
    23.11 17:38:18 [Server] INFO material: COBBLESTONE
    23.11 17:38:18 [Server] INFO in 'string', line 93, column 15:
    23.11 17:38:18 [Server] INFO could not find expected ':'
    23.11 17:38:18 [Server] INFO ^
    23.11 17:38:18 [Server] INFO item16
    23.11 17:38:18 [Server] INFO in 'string', line 92, column 4:
    23.11 17:38:18 [Server] WARN Caused by: while scanning a simple key
    23.11 17:38:18 [Server] WARN at java.lang.Thread.run(Thread.java:745)
    23.11 17:38:18 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:537)
    23.11 17:38:18 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:629)
    23.11 17:38:18 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:335)
    23.11 17:38:18 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:680)
    23.11 17:38:18 [Server] WARN at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:349)
    23.11 17:38:18 [Server] WARN at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:53)
    23.11 17:38:18 [Server] WARN at com.wasteofplastic.askyblock.ASkyBlock$1$1.run(ASkyBlock.java:401)
    23.11 17:38:18 [Server] WARN at com.wasteofplastic.askyblock.panels.ControlPanel.<init>(ControlPanel.java:63)
    23.11 17:38:18 [Server] WARN at com.wasteofplastic.askyblock.panels.ControlPanel.loadShop(ControlPanel.java:96)
    23.11 17:38:18 [Server] WARN at com.wasteofplastic.askyblock.util.Util.loadYamlFile(Util.java:41)
    23.11 17:38:18 [Server] WARN at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:169)
    23.11 17:38:18 [Server] WARN at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:226)
    23.11 17:38:18 [Server] WARN at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:57)
    23.11 17:38:18 [Server] INFO ^
    23.11 17:38:18 [Server] INFO material: COBBLESTONE
    23.11 17:38:18 [Server] INFO in 'string', line 93, column 15:
    23.11 17:38:18 [Server] INFO could not find expected ':'
    23.11 17:38:18 [Server] INFO ^
    23.11 17:38:18 [Server] INFO item16
    23.11 17:38:18 [Server] INFO in 'string', line 92, column 4:
    23.11 17:38:18 [Server] WARN org.bukkit.configuration.InvalidConfigurationException: while scanning a simple key
    23.11 17:38:18 [Server] INFO Checking for Updates ...
    23.11 17:38:18 [Server] INFO Loading warps...
    23.11 17:38:18 [Server] INFO Loading islands.yml
    23.11 17:38:18 [Server] INFO Loading island grid...
    23.11 17:38:18 [Server] INFO ... 3 more
    23.11 17:38:18 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:53)
    23.11 17:38:18 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:53)
    23.11 17:38:18 [Server] INFO at com.gamingmesh.jobs.stuff.OfflinePlayerList$1.run(OfflinePlayerList.java:25)
    23.11 17:38:18 [Server] INFO Caused by: java.lang.NullPointerException
    23.11 17:38:18 [Server] INFO at java.lang.Thread.run(Thread.java:745)
    23.11 17:38:18 [Server] INFO at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    23.11 17:38:18 [Server] INFO at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    23.11 17:38:18 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:56)
    23.11 17:38:18 [Server] WARN org.apache.commons.lang.UnhandledException: Plugin Jobs v2.51.3 generated an exception while executing task 17
    23.11 17:38:18 [Server] WARN Exception in thread "pool-3-thread-2"
    23.11 17:38:18 [Server] INFO Successfully linked with Vault.
    23.11 17:38:18 [Server] INFO Checking for new updates...
    23.11 17:38:18 [Server] Startup Done (19.862s)! For help, type "help" or "?"
    23.11 17:38:18 [Server] INFO Server permissions file permissions.yml is empty, ignoring it
    23.11 17:38:18 [Server] INFO Minigames Regions successfully enabled!
    23.11 17:38:18 [Server] INFO Enabling Minigames-Regions v1.7.0
    23.11 17:38:17 [Server] INFO Minigames successfully enabled.
    23.11 17:38:17 [Server] INFO Using lang en_AU
    23.11 17:38:17 [Server] INFO Enabling Minigames v1.7.0
    23.11 17:38:17 [Server] INFO GriefPrevention: Boot finished.
    23.11 17:38:17 [Server] INFO GriefPrevention: Ready to buy/sell claim blocks!
    23.11 17:38:17 [Server] INFO GriefPrevention: Hooked into economy: Craftconomy3.
    23.11 17:38:17 [Server] INFO GriefPrevention: Looking for a Vault-compatible economy plugin...
    23.11 17:38:17 [Server] INFO GriefPrevention: Vault loaded successfully!
    23.11 17:38:17 [Server] INFO GriefPrevention: Attempting to load Vault...
    23.11 17:38:17 [Server] INFO GriefPrevention: GriefPrevention requires Vault for economy integration.
    23.11 17:38:17 [Server] INFO GriefPrevention: Finished loading data (File Mode).
    23.11 17:38:17 [Server] INFO GriefPrevention: Customizable messages loaded.
    23.11 17:38:16 [Server] INFO GriefPrevention: 1 total claims loaded.
    23.11 17:38:16 [Server] INFO GriefPrevention: Finished loading configuration.
    23.11 17:38:16 [Server] INFO GriefPrevention: Grief Prevention boot start.
    23.11 17:38:15 [Server] INFO Enabling GriefPrevention v13.0
    23.11 17:38:15 [Server] INFO 0 - Portals(s) loaded
    23.11 17:38:15 [Server] INFO - Version 2.4-b548 Enabled - By Rigby and fernferret
    23.11 17:38:15 [Server] INFO Enabling Multiverse-Portals v2.4-b548
    23.11 17:38:15 [Server] INFO - Version 2.4-b523 Enabled - By Rigby and fernferret
    23.11 17:38:15 [Server] INFO Enabling Multiverse-SignPortals v2.4-b523
    23.11 17:38:15 [Server] INFO 8 - World(s) loaded.
    23.11 17:38:15 [Server] INFO Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: 6939893438563937217
    23.11 17:38:15 [Server] INFO Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: 6939893438563937217
    23.11 17:38:15 [Server] INFO Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 6939893438563937217
    23.11 17:38:15 [Server] ERROR New safe spawn NOT found!!!
    23.11 17:38:15 [Server] WARN Original Location: X: 0 Y: 0 Z: 0 P: 0 Y: 0
    23.11 17:38:15 [Server] WARN Spawn location from world.dat file was unsafe. Adjusting...
    23.11 17:38:15 [Server] INFO Loading World & Settings - 'ASkyBlock_nether' - Env: NETHER - Type: FLAT & seed: 8811499266797052777
    23.11 17:38:15 [Server] ERROR New safe spawn NOT found!!!
    23.11 17:38:15 [Server] WARN Original Location: X: 0 Y: 0 Z: 0 P: 0 Y: 0
    23.11 17:38:15 [Server] WARN Spawn location from world.dat file was unsafe. Adjusting...
    23.11 17:38:15 [Server] INFO Loading World & Settings - 'ASkyBlock' - Env: NORMAL - Type: FLAT & seed: 1414266916121480029
    23.11 17:38:15 [Server] INFO Preparing spawn area for MineOholicHub_the_end, 40%
    23.11 17:38:14 [Server] INFO Preparing start region for level 7 (Seed: -3740504159814106296)
    23.11 17:38:14 [Server] INFO Loading World & Settings - 'MineOholicHub_the_end' - Env: THE_END - Type: NORMAL & seed: -3740504159814106296
    23.11 17:38:13 [Server] INFO Preparing spawn area for MineOholicHub_nether, 69%
    23.11 17:38:12 [Server] INFO Preparing start region for level 6 (Seed: -3740504159814106296)
    23.11 17:38:12 [Server] INFO Loading World & Settings - 'MineOholicHub_nether' - Env: NETHER - Type: NORMAL & seed: -3740504159814106296
    23.11 17:38:12 [Server] INFO Preparing spawn area for MineOholicHub, 93%
    23.11 17:38:11 [Server] INFO Preparing spawn area for MineOholicHub, 40%
    23.11 17:38:10 [Server] INFO Preparing start region for level 5 (Seed: -3740504159814106296)
    23.11 17:38:10 [Server] INFO Loading World & Settings - 'MineOholicHub' - Env: NORMAL - Type: NORMAL & seed: -3740504159814106296
    23.11 17:38:10 [Server] INFO - Version 10.0 - hooked into Essentials Economy for Multiverse-Core v2.4-b527
    23.11 17:38:10 [Server] INFO - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
    23.11 17:38:10 [Server] INFO Enabling Multiverse-Core v2.4-b527
    23.11 17:38:10 [Server] INFO Connection to MySQL database failed.
    23.11 17:38:10 [Server] INFO [[OnSign]] Could not establish a MySQL connection, SQLException: Packet for query is too large (3158578 > 1048576). You can change this value on the server by setting the max_allowed_packet' variable.
    23.11 17:38:10 [Server] INFO Enabling OnSign v2.0.2
    23.11 17:38:10 [Server] INFO AdvancedAchievements configurations, language file and database successfully loaded!
    23.11 17:38:09 [Server] INFO Enabling AdvancedAchievements v2.1.1
    23.11 17:38:09 [Server] INFO Enabling OnTime v4.1.3
    23.11 17:38:09 [Server] INFO InfiniteKits version 1.0 is enabled!
    23.11 17:38:09 [Server] INFO Enabling InfiniteKits v1.0
    23.11 17:38:09 [Server] INFO Plugin has been enabled succesfully.
    23.11 17:38:09 [Server] INFO mcMMO was not found - Disabling capabilities.
    23.11 17:38:09 [Server] INFO Started database save task.
    23.11 17:38:09 [Server] INFO Started buffered payment thread.
    23.11 17:38:09 [Server] ERROR ==============================================
    23.11 17:38:09 [Server] INFO ^
    23.11 17:38:09 [Server] INFO Miner:
    23.11 17:38:09 [Server] INFO in 'string', line 9, column 3:
    23.11 17:38:09 [Server] ERROR Error: expected '<document start>', but found BlockMappingStart
    23.11 17:38:09 [Server] ERROR No jobs were loaded!
    23.11 17:38:09 [Server] ERROR Check your config for formatting issues!
    23.11 17:38:09 [Server] ERROR Unable to load jobConfig.yml!
    23.11 17:38:09 [Server] ERROR ==================== Jobs ====================
    23.11 17:38:08 [Server] INFO Enabling Jobs v2.51.3
    23.11 17:38:08 [Server] INFO AirDropsPlus has been enabled!
    23.11 17:38:08 [Server] INFO WARNING WARNING WARNING. CHEST DROP CHANCES DO NOT ADD UP. RESETTING TO 20% ON ALL CHESTS.
    23.11 17:38:08 [Server] INFO Enabling AirdropsPlus v0.1
    23.11 17:38:08 [Server] INFO Enabling afkTerminator v3.0.2
    23.11 17:38:08 [Server] INFO Plugin enabled.
    23.11 17:38:08 [Server] INFO Enabling InfoBook v1.8
    23.11 17:38:08 [Server] INFO Essentials: Using PermissionsEx based permissions.
    23.11 17:38:08 [Server] INFO [Vault][Chat] PermissionsEx_Chat hooked.
    23.11 17:38:08 [Server] INFO [Vault][Permission] PermissionsEx hooked.
    23.11 17:38:08 [Server] INFO WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
    23.11 17:38:08 [Server] INFO Permissions file successfully reloaded
    23.11 17:38:08 [Server] INFO Initializing file backend
    23.11 17:38:08 [Server] INFO Enabling PermissionsEx v1.23.3
    23.11 17:38:08 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_60]
    23.11 17:38:08 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:504) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:235) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:325) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:370) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:406) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:314) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:342) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:404) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at me.incomprehendable.dev.pwp.transparentlisteners.PerWorldPluginLoader.enablePlugin(PerWorldPluginLoader.java:141) [PerWorldPlugins.jar:?]
    23.11 17:38:08 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) ~[craftbukkit-BT45_1.8.8_10.21.jar:git-Bukkit-18fbb24]
    23.11 17:38:08 [Server] INFO at com.earth2me.essentials.chat.EssentialsChat.onEnable(EssentialsChat.java:26) ~[?:?]
    23.11 17:38:08 [Server] INFO java.lang.NoSuchMethodError: com.earth2me.essentials.I18n._(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
    23.11 17:38:08 [Server] ERROR Error occurred while enabling EssentialsChat v2.13.1 (Is it up to date?)
    23.11 17:38:08 [Server] INFO Enabling EssentialsChat v2.13.1
    23.11 17:38:08 [Server] INFO KitAdder plugin has been enabled!
    23.11 17:38:08 [Server] INFO Enabling KitAdder v2.3
    23.11 17:38:08 [Server] INFO Votifier enabled.
    23.11 17:38:08 [Server] INFO Enabling Votifier v1.9
    23.11 17:38:08 [Server] ERROR Plugin Spawner v2.3-5494d1d has failed to register events for class me.ryvix.spawner.SpawnerEvents because org/bukkit/event/entity/SpawnerSpawnEvent does not exist.
    23.11 17:38:07 [Server] INFO Enabling Spawner v2.3-5494d1d
    23.11 17:38:07 [Server] INFO [Vault][Economy] Craftconomy3 hooked.
    23.11 17:38:07 [Server] INFO Ready!
    23.11 17:38:07 [Server] INFO World Group Manager loaded!
    23.11 17:38:07 [Server] INFO Account Manager Loaded!
    23.11 17:38:07 [Server] INFO Starting Metrics.
    23.11 17:38:07 [Server] INFO Loading the Account Manager
    23.11 17:38:07 [Server] INFO Default settings loaded!
    23.11 17:38:07 [Server] INFO Loading default settings.
    23.11 17:38:07 [Server] INFO Currency Manager Loaded!
    23.11 17:38:07 [Server] INFO Loading the Currency manager.
    23.11 17:38:07 [Server] INFO Database Manager Loaded!
    23.11 17:38:06 [Server] WARN SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
    23.11 17:38:06 [Server] WARN SLF4J: Defaulting to no-operation (NOP) logger implementation
    23.11 17:38:06 [Server] WARN SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    23.11 17:38:06 [Server] INFO Loading the Database Manager
    23.11 17:38:06 [Server] INFO Loading commands
    23.11 17:38:06 [Server] INFO Loading listeners.
    23.11 17:38:05 [Server] INFO Loading the Configuration
    23.11 17:38:05 [Server] INFO Starting up!
    23.11 17:38:05 [Server] INFO Enabling Craftconomy3 v3.3-e72ac42-trv178
    23.11 17:38:05 [Server] INFO Enabled, attempting to inject CommandHandler...
    23.11 17:38:05 [Server] INFO Enabling PerWorldPlugins v1.3.0
    23.11 17:38:05 [Server] INFO Enabling LogBlock v1.94
    23.11 17:38:05 [Server] INFO Payment method found (Vault - Economy: Craftconomy3 version: 1.5.6-b49)
    23.11 17:38:05 [Server] INFO Permissions listed in as player-commands will be given to all users.
    23.11 17:38:05 [Server] INFO Essentials: Using config file enhanced permissions.
    23.11 17:38:05 [Server] INFO [Vault][Economy] Essentials Economy hooked.
    23.11 17:38:05 [Server] INFO Using locale en_US
    23.11 17:38:04 [Server] INFO Using locale en_US
    23.11 17:38:04 [Server] INFO 1.8.8-R0.1-SNAPSHOT
    23.11 17:38:04 [Server] INFO git-Bukkit-18fbb24 (MC: 1.8.8)
    23.11 17:38:04 [Server] INFO Bukkit version format changed. Version not checked.
    23.11 17:38:04 [Server] WARN §4Version mismatch! Please update EssentialsChat to the same version.
    23.11 17:38:04 [Server] INFO Enabling Essentials vTeamCity
    23.11 17:38:04 [Server] INFO Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
    23.11 17:38:04 [Server] INFO WEPIF: Using the Bukkit Permissions API.
    23.11 17:38:04 [Server] INFO Enabling WorldEdit v6.1;no_git_id
    23.11 17:38:04 [Server] INFO Preparing start region for level 4 (Seed: 8811499266797052777)
    23.11 17:38:04 [Server] INFO Preparing start region for level 3 (Seed: 1414266916121480029)
    23.11 17:38:04 [Server] INFO Preparing start region for level 2 (Seed: 6939893438563937217)
    23.11 17:38:03 [Server] INFO Preparing spawn area: 92%
    23.11 17:38:02 [Server] INFO Preparing spawn area: 42%
    23.11 17:38:01 [Server] INFO Preparing start region for level 1 (Seed: 6939893438563937217)
    23.11 17:38:01 [Server] INFO UUID of player pandaistprophet is 27e103e0-6707-4ab0-a1c4-1ead38383ba7
    23.11 17:38:00 [Server] INFO Preparing spawn area: 38%
    23.11 17:37:59 [Server] INFO Preparing spawn area: 0%
    23.11 17:37:59 [Server] INFO Preparing start region for level 4 (Seed: 8811499266797052777)
    23.11 17:37:59 [Server] INFO Creating ASkyBlock's Nether...
    23.11 17:37:58 [Server] INFO Preparing start region for level 3 (Seed: 1414266916121480029)
    23.11 17:37:58 [Server] INFO Preparing start region for level 0 (Seed: 6939893438563937217)
    23.11 17:37:58 [Server] INFO Preparing level "world"
    23.11 17:37:57 [Server] INFO Loading offline messages...
    23.11 17:37:57 [Server] INFO Loading schematic §lBlack §bDiamonds (harder.schematic) for all players, order 3
    23.11 17:37:57 [Server] INFO Loading schematic Island Duo (double.schematic) for all players, order 2
    23.11 17:37:57 [Server] INFO Loading schematic NetherBlock Island (nether.schematic) for all players, order 0
    23.11 17:37:57 [Server] INFO Loading schematic The Original (island.schematic) for all players, order 1
    23.11 17:37:57 [Server] INFO Enabling ASkyBlock v2.9.7.4
    23.11 17:37:57 [Server] INFO Enabled Version 1.5.6-b49
    23.11 17:37:57 [Server] INFO [Chat] PermissionsEx found: Waiting
    23.11 17:37:57 [Server] INFO [Permission] SuperPermissions loaded as backup permission system.
    23.11 17:37:57 [Server] INFO [Permission] PermissionsEx found: Waiting
    23.11 17:37:57 [Server] INFO [Economy] Essentials Economy found: Waiting
    23.11 17:37:57 [Server] INFO [Economy] CraftConomy3 found: Waiting
    23.11 17:37:57 [Server] INFO Enabling Vault v1.5.6-b49
    23.11 17:37:57 [Server] INFO Loading Minigames-Regions v1.7.0
    23.11 17:37:57 [Server] INFO Loading Minigames v1.7.0
    23.11 17:37:57 [Server] INFO Loading GriefPrevention v13.0
    23.11 17:37:57 [Server] INFO Loading Multiverse-Portals v2.4-b548
    23.11 17:37:57 [Server] INFO Loading Multiverse-SignPortals v2.4-b523
    23.11 17:37:57 [Server] INFO Loading Multiverse-Core v2.4-b527
    23.11 17:37:57 [Server] INFO Loading OnSign v2.0.2
    23.11 17:37:57 [Server] INFO Loading AdvancedAchievements v2.1.1
    23.11 17:37:57 [Server] INFO Loading OnTime v4.1.3
    23.11 17:37:57 [Server] INFO Loading InfiniteKits v1.0
    23.11 17:37:57 [Server] INFO Loading ASkyBlock v2.9.7.4
    23.11 17:37:57 [Server] INFO Loading Jobs v2.51.3
    23.11 17:37:57 [Server] INFO Loading AirdropsPlus v0.1
    23.11 17:37:57 [Server] INFO Loading afkTerminator v3.0.2
    23.11 17:37:57 [Server] INFO Loading Vault v1.5.6-b49
    23.11 17:37:57 [Server] INFO Loading InfoBook v1.8
    23.11 17:37:57 [Server] INFO Loading PermissionsEx v1.23.3
    23.11 17:37:57 [Server] INFO Loading EssentialsChat v2.13.1
    23.11 17:37:57 [Server] INFO Loading KitAdder v2.3
    23.11 17:37:57 [Server] INFO Loading Votifier v1.9
    23.11 17:37:57 [Server] INFO Loading Spawner v2.3-5494d1d
    23.11 17:37:57 [Server] INFO Loading Craftconomy3 v3.3-e72ac42-trv178
    23.11 17:37:57 [Server] INFO Registering event interceptor...

  • _ForgeUser22419269 added the tags New Other Nov 23, 2015
  • _ForgeUser22419269 added an attachment Console_error.PNG Nov 23, 2015

    Console_error.PNG

    <p>Picture of error in console</p>

  • Zrips removed their assignment Nov 27, 2015
  • Zrips posted a comment Nov 27, 2015

    Try to rename jobConfig.yml and reload server. Check if this solves issue, if yes, then check spacing. Your configuration file seams to bee incorrect. You can always check it in here http://yaml-online-parser.appspot.com/ by pasting all file content.


To post a comment, please login or register a new account.