Stránka 1 z 2

Money

Napsal: 14 dub 2013, 12:18
od sharky100
93.91.250.112:27037

Ahojte ľudia na serveri mám taký problem že sa niektorím ľudom reštartuju peniaze a aj mne a neviem prečo neviete čo mam robiť?
Na Peniaze mam plugin iConomy.
Config iConomy
Spoiler: zobrazit

Kód: Vybrat vše

iConomy 6.0.8b
# @author     Nijikokun <nijikokun@gmail.com>
# @license    GPLv2
# @copyright  Copyright AniGaiku LLC (C) 2010-2011
##
# Setup Notes
#   - Seconds
#         Basic Table:
#           1 minute = 60 seconds
#           1 hour = 1 minute * 60 = 3600 seconds
#           1 day = 1 hour * 24 = 86400 seconds
#           1 week = 1 day * 7 = 604800 seconds
#   - Database
#           Do not use remote databases from free sites, please use either a
#           remote database from a personal hosted VPS or DEDI or a local
#           database. This will prevent any 'timeout' or 'invalid settings'
#           or 'cannot connect to database' issues. Thank you :)!
##

System:
  Permissions:
    Use:
      # Should a user have the 'iConomy.holdings' to use /money
      # By default this is false, so that people stop complaining that
      # iConomy doesn't work. Yes, people actually report that.
      # If you are one of those people, leave this false.
      Holdings: false

  Default:
    Currency:
      # Major is the first segment [Major].Minor

      # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
      Major: [ 'Dollar', 'Dollars' ]

      # Minor (Major.[Minor]) 0.23 Coins  (With Seperate 0 Dollars, 23 Coins)
      Minor: [ 'Coin', 'Coins' ]

    Account:
      # Default account balance when created
      Holdings: 30.0

  # Controls how money is formatted through methods
  Formatting:
    # Minor allows you to use the Minor amounts for amounts <1
    # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
    Minor: false

    # Seperate allows your money to be shown in an alternative way,
    # instead of 1.32 it will show as 1 Dollar 23 Coins
    # !!! NOTICE: This only works if Minor is set to true !!!
    Seperate: false                               # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)

    # Single shows your money in another alternative way.
    # Instead of 1.23 Dollars you will see: 1 Dollar.
    # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
    # !!! Notice: This overrides seperate !!!
    Single: false

  # Logs all monetary transactions passed through iConomy
  Logging:
    Enabled: false

  # Purges Default Balances at Loading
  # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  Purging:
    Enabled: true

  # Controls amount of money gained at a set interval.
  Interest:
    Enabled: false

    # Only give interest to players who are currently online?
    Online: true

    Announce:
      # Send a message when the player gains interest?
      Enabled: false

    Interval:
      #  Interval is done in seconds, here is a easy reference table for commonly set intervals:
      #   1 minute = 60 seconds
      #   1 hour = 1 minute * 60 = 3600 seconds
      #   1 day = 1 hour * 24 = 86400 seconds
      #   1 week = 1 day * 7 = 604800 seconds
      Seconds: 60

    Amount:
      # The balance to be met where we stop giving interest.
      # 0.0 for no limit
      Cutoff: 0.0

      # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
      Percent: 0.0

      # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
      # If the two numbers are different, it will be a random amount in-between the two.
      Maximum: 1
      Minimum: 2

  Database:
    # Databases Supported:
    # Flatfile, FF, mini, minidb
    #  - These all equate to miniDB
    ##
    # item, items, inventory, inventoryDB
    #  - These all equate to InventoryDB, which uses inventory for storage
    ##
    # xp, exp, orb, xpdb, expdb, orbdb
    #  - These all equate to ExperienceDB, which relies on Experience for balance.
    ##
    # mysql, mysqldb
    #  - These will attempt to connect to MySQL
    ##
    # sqlite, sqlite2, sqlite3, sqlitedb
    #  - These will attempt to create & connect to SQLite
    ##
    # postgre, postgreSQL, postgreDB
    #  - These will attempt to connect to PostgreSQL
    Type: 'minidb'
   
    # These are for InventoryDB only.
    #
    # InventoryDB is essentially Physical Money.
    #   It isn't logged in a database, its based on the users inventory
    #   and the two items selected below.
    #
    # MajorItem is the item or block ID of the major currency
    # MinorItem is the item or block ID of the minor currency
    # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
    MajorItem: 266
    MinorItem: 265

    # This controls the database name, by default it is iConomy
    Table: 'iConomy'

    # URL is for SQL Databases Only
    ##
    # Path to iConomy folder is easy, it's the COMPLETE path.
    # (Mine) G:\MineCraft\plugins\iConomy\
    # Won't be the same as yours, but it usually looks like that.
    ##
    # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
    # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
    ##
    # Binary Databases use ip:port style connections.
    # ip
    #  - is the connection identifier (internet protocol)
    #  - for ipv6 usually encased in brackets [::1]
    # port
    #  - the port that the database is listening on
    #  - defaults: 3306 for mysql, postgre is either 5740 or 5432
    ##
    # [MySQL Default] mysql://localhost:3306/iConomy
    # [Postgre Default] postgresql://localhost:5740/iConomy
    URL: 'mysql://localhost:3306/iConomy'

    # Login details for binary databases
    Username: 'root'
    Password: ''

    ##############################################################
    # !!! Conversion is not your database settings !!!
    ##############################################################
    # Conversion allows you to convert your old 5.x to the new 6.x
    # All is currently unused.
    ##############################################################
    # URL is for MySQL only, H2DB doesn't use it.
    ##############################################################
    Conversion:
      # Set to True, After converting, change this back to false!
      Enabled: false

      # Database Type, H2DB or MySQL
      Type: 'H2DB'

      # Database Table
      Table: 'iConomy'

      # Database URL without table at the end.
      URL: 'mysql://localhost:3306'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: 'root'
      Password: ''

      # Unused ATM.
      All: true

Nemože to bit aj kvoli tomu že na serveri mám aj plugin MoneyDrop.
Config pluginu MoneyDrop:
Spoiler: zobrazit

Kód: Vybrat vše

Settings:
  Mobspawner-Drops-Allowed: true
  Egg-Drops-Allowed: true
  Mobs-Only-Drop-On-Kill: false
  Independent-Drops: false
  Dropped-Material-ID: 371
  Dropped-Material-Data: 0
  Max-Stack-Amount: 100.0
  Precision: 1.0
  Max-Drops-Per-Second: 0
  Pickup-Chat-Notification-Enabled: true
  Chat-Notification-Delay: false
  Pickup-Chat-Notification-Message: Picked up <money>$
  Players:
    Mob-Attack: '0'
    Player-Attack: '0'
    Block-Explosion: '0'
    Block-Contact: '0'
    Drowning: '0'
    Falling: '0'
    Fire: '0'
    Suffocation: '0'
    Suicide: '0'
    Other: '0'
Mobs:
  CREEPER:
    Dropped-Minimum: 7.0
    Dropped-Maximum: 15.0
    Dropped-Frequency: 100.0
  CREEPER-ELECTROCUTED:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 100.0
    Dropped-Frequency: 100.0
  SKELETON-NORMAL:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 20.0
    Dropped-Frequency: 100.0
  SKELETON-WITHER:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 150.0
    Dropped-Frequency: 100.0
  SPIDER:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 30.0
    Dropped-Frequency: 100.0
  GIANT:
    Dropped-Minimum: 2500.0
    Dropped-Maximum: 5000.0
    Dropped-Frequency: 100.0
  ZOMBIE:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 20.0
    Dropped-Frequency: 100.0
  ZOMBIE-VILLAGER:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ZOMBIE-CHILD:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ZOMBIE-VILLAGER-CHILD:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 25.0
    Dropped-Frequency: 100.0
  SLIME:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 25.0
    Dropped-Frequency: 100.0
  GHAST:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 150.0
    Dropped-Frequency: 100.0
  PIG_ZOMBIE:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ENDERMAN:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 100.0
    Dropped-Frequency: 100.0
  CAVE_SPIDER:
    Dropped-Minimum: 30.0
    Dropped-Maximum: 60.0
    Dropped-Frequency: 100.0
  SILVERFISH:
    Dropped-Minimum: 6.0
    Dropped-Maximum: 12.0
    Dropped-Frequency: 100.0
  BLAZE:
    Dropped-Minimum: 30.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  MAGMA_CUBE:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ENDER_DRAGON:
    Dropped-Minimum: 50000.0
    Dropped-Maximum: 100000.0
    Dropped-Frequency: 100.0
  WITHER:
    Dropped-Minimum: 10000.0
    Dropped-Maximum: 15000.0
    Dropped-Frequency: 100.0
  BAT:
    Dropped-Minimum: 5.0
    Dropped-Maximum: 10.0
    Dropped-Frequency: 100.0
  WITCH:
    Dropped-Minimum: 100.0
    Dropped-Maximum: 250.0
    Dropped-Frequency: 100.0
  PIG:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SHEEP:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  COW:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  CHICKEN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SQUID:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  WOLF:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  MUSHROOM_COW:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SNOWMAN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  OCELOT:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  IRON_GOLEM:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-GENERIC:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-FARMER:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-LIBRARIAN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-PRIEST:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-BLACKSMITH:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-BUTCHER:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
V každom svete mám taký istý tak co mám robiť pls help.

Re: Money

Napsal: 14 dub 2013, 13:06
od Vojko
Skús updatovať iConomy, ako vidím máš staršiu verziu.

Re: Money

Napsal: 14 dub 2013, 18:19
od sharky100
Appdatoval som a nič stále sa restartuju tak čo mám robiť?

Re: Money

Napsal: 14 dub 2013, 18:21
od Vojko
Vymaž config a reštartuj server.
Vygeneruje sa ti nový.
Pozor, v zložke plugins/iConomy sa nachádza aj súbor kde sú uložené všetky $ čo hráči majú, takže ten nevymaž.

Re: Money

Napsal: 14 dub 2013, 18:28
od sharky100
Zpravil som to a teraz uz nejde ani /money napise: An internal error occurred while attempting to perform this command.
A ked napisem /money give **** (ciasta) napise toto iste co mam spravit?

Re: Money

Napsal: 14 dub 2013, 18:29
od Vojko
Hoď sem server.log

Re: Money

Napsal: 14 dub 2013, 18:35
od sharky100
Tu je server log a neskusis mi poslat tvoj config s iConomy?
Server.log
Spoiler: zobrazit

Kód: Vybrat vše

2013-04-14 00:59:35 [INFO] Starting minecraft server version 1.5
2013-04-14 00:59:35 [INFO] Loading properties
2013-04-14 00:59:35 [INFO] Default game type: SURVIVAL
2013-04-14 00:59:35 [INFO] Generating keypair
2013-04-14 00:59:35 [INFO] Starting Minecraft server on 93.91.250.112:27037
2013-04-14 00:59:35 [INFO] This server is running CraftBukkit version git-Bukkit-1.4.7-R1.0-39-gd7fe50c-b2671jnks (MC: 1.5) (Implementing API version 1.5-R0.1-SNAPSHOT)
2013-04-14 00:59:36 [INFO] ----- Bukkit Auto Updater -----
2013-04-14 00:59:36 [INFO] It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
2013-04-14 00:59:36 [INFO] If you would like to be kept informed about new Development Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'dev'.
2013-04-14 00:59:36 [INFO] With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.
2013-04-14 00:59:36 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
2013-04-14 00:59:36 [INFO] ----- ------------------- -----
2013-04-14 00:59:36 [SEVERE] Could not load 'plugins/SkyBlockCo-Op.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: WorldGuard
   at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:195)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.loadPlugins(CraftServer.java:239)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.<init>(CraftServer.java:217)
   at net.minecraft.server.v1_5_R1.PlayerList.<init>(PlayerList.java:56)
   at net.minecraft.server.v1_5_R1.DedicatedPlayerList.<init>(SourceFile:11)
   at net.minecraft.server.v1_5_R1.DedicatedServer.init(DedicatedServer.java:105)
   at net.minecraft.server.v1_5_R1.MinecraftServer.run(MinecraftServer.java:381)
   at net.minecraft.server.v1_5_R1.ThreadServerApplication.run(SourceFile:573)
2013-04-14 00:59:36 [INFO] [PermissionsEx] sql backend registered!
2013-04-14 00:59:36 [INFO] [PermissionsEx] file backend registered!
2013-04-14 00:59:36 [INFO] [PermissionsEx] PermissionEx plugin initialized.
2013-04-14 00:59:36 [SEVERE] Cannot load plugins/VypnoutChat/config.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning an anchor
 in "<string>", line 3, column 14:
      Opravneni: &4Nemáte oprávnění vypnout/zapat ...
                 ^
expected alphabetic or numeric character, but found á(225)
 in "<string>", line 3, column 19:
      Opravneni: &4Nemáte oprávnění vypnout/zapatnout  ...
                      ^

   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:138)
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:105)
   at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:175)
   at main.VypnoutChat.<init>(VypnoutChat.java:19)
   at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
   at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
   at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
   at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
   at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:178)
   at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:305)
   at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:230)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.loadPlugins(CraftServer.java:239)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.<init>(CraftServer.java:217)
   at net.minecraft.server.v1_5_R1.PlayerList.<init>(PlayerList.java:56)
   at net.minecraft.server.v1_5_R1.DedicatedPlayerList.<init>(SourceFile:11)
   at net.minecraft.server.v1_5_R1.DedicatedServer.init(DedicatedServer.java:105)
   at net.minecraft.server.v1_5_R1.MinecraftServer.run(MinecraftServer.java:381)
   at net.minecraft.server.v1_5_R1.ThreadServerApplication.run(SourceFile:573)
Caused by: while scanning an anchor
 in "<string>", line 3, column 14:
      Opravneni: &4Nemáte oprávnění vypnout/zapat ...
                 ^
expected alphabetic or numeric character, but found á(225)
 in "<string>", line 3, column 19:
      Opravneni: &4Nemáte oprávnění vypnout/zapatnout  ...
                      ^

   at org.yaml.snakeyaml.scanner.ScannerImpl.scanAnchor(ScannerImpl.java:1169)
   at org.yaml.snakeyaml.scanner.ScannerImpl.fetchAnchor(ScannerImpl.java:782)
   at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:315)
   at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:179)
   at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:591)
   at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
   at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:146)
   at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:133)
   at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:237)
   at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
   at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:237)
   at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
   at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:123)
   at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106)
   at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:121)
   at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:480)
   at org.yaml.snakeyaml.Yaml.load(Yaml.java:399)
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:53)
   ... 18 more
2013-04-14 00:59:36 [INFO] [FoundBoxx] Loading FoundBoxx v1.7.8
2013-04-14 00:59:36 [INFO] [VerejnaZprava] Loading VerejnaZprava v1.1
2013-04-14 00:59:36 [INFO] [SimpleAFK] Loading SimpleAFK v0.9.1
2013-04-14 00:59:36 [INFO] [HerobrineAI] Loading HerobrineAI v2.5.1
2013-04-14 00:59:36 [INFO] [JoinMessage] Loading JoinMessage v2.0
2013-04-14 00:59:36 [INFO] [SpamGuard] Loading SpamGuard v1.1
2013-04-14 00:59:36 [INFO] [Vault] Loading Vault v1.2.24-b304
2013-04-14 00:59:36 [INFO] [Backpack] Loading Backpack vb129
2013-04-14 00:59:36 [SEVERE] Cannot load plugins/Backpack/config.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning a simple key
 in "<string>", line 15, column 1:
    Contains list of items you dont  ...
    ^
could not found expected ':'
 in "<string>", line 17, column 1:
    File: share.yml
    ^

   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:138)
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:105)
   at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:175)
   at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:117)
   at org.bukkit.plugin.java.JavaPlugin.getConfig(JavaPlugin.java:111)
   at com.almuramc.backpack.bukkit.util.CachedConfiguration.setup(CachedConfiguration.java:168)
   at com.almuramc.backpack.bukkit.util.CachedConfiguration.<init>(CachedConfiguration.java:55)
   at com.almuramc.backpack.bukkit.BackpackPlugin.onLoad(BackpackPlugin.java:76)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.loadPlugins(CraftServer.java:244)
   at org.bukkit.craftbukkit.v1_5_R1.CraftServer.<init>(CraftServer.java:217)
   at net.minecraft.server.v1_5_R1.PlayerList.<init>(PlayerList.java:56)
   at net.minecraft.server.v1_5_R1.DedicatedPlayerList.<init>(SourceFile:11)
   at net.minecraft.server.v1_5_R1.DedicatedServer.init(DedicatedServer.java:105)
   at net.minecraft.server.v1_5_R1.MinecraftServer.run(MinecraftServer.java:381)
   at net.minecraft.server.v1_5_R1.ThreadServerApplication.run(SourceFile:573)
Caused by: while scanning a simple key
 in "<string>", line 15, column 1:
    Contains list of items you dont  ...
    ^
could not found expected ':'
 in "<string>", line 17, column 1:
    File: share.yml
    ^

   at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:398)
   at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:229)
   at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:178)
   at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:563)
   at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
   at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:146)
   at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230)
   at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
   at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:123)
   at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106)
   at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:121)
   at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:480)
   at org.yaml.snakeyaml.Yaml.load(Yaml.java:399)
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:53)
   ... 15 more
2013-04-14 00:59:36 [INFO] [Multiverse-Core] Loading Multiverse-Core v2.4-b527
2013-04-14 00:59:36 [INFO] [AntiCreeper3] Loading AntiCreeper3 v4.7
2013-04-14 00:59:36 [INFO] [TreeAssist] Loading TreeAssist v5.4.1
2013-04-14 00:59:36 [INFO] [ColoredTablist] Loading ColoredTablist v1.9
2013-04-14 00:59:36 [INFO] [LightVote] Loading LightVote v1.73
2013-04-14 00:59:36 [INFO] [AutoMessage] Loading AutoMessage v2.1.3
2013-04-14 00:59:36 [INFO] [Chairs] Loading Chairs v1.20.0
2013-04-14 00:59:36 [INFO] [Spectate] Loading Spectate v1.9.1
2013-04-14 00:59:36 [INFO] [NoBEDROCK] Loading NoBEDROCK v0.1
2013-04-14 00:59:36 [INFO] [AntiAdvertising] Loading AntiAdvertising v1.3.1
2013-04-14 00:59:36 [INFO] [Cestinator] Loading Cestinator v1.5
2013-04-14 00:59:36 [INFO] [Trampoline] Loading Trampoline v1.0
2013-04-14 00:59:36 [INFO] [OpenInv] Loading OpenInv v1.9.9
2013-04-14 00:59:36 [INFO] [SxwPlugin] Loading SxwPlugin v0.1
2013-04-14 00:59:36 [INFO] [Nahrano] Loading Nahrano v1.0
2013-04-14 00:59:36 [INFO] [ProtocolLib] Loading ProtocolLib v2.3.0
2013-04-14 00:59:36 [INFO] [NoTNT] Loading NoTNT v0.1
2013-04-14 00:59:36 [INFO] [MobArena] Loading MobArena v0.94.4.96
2013-04-14 00:59:36 [INFO] [CleanroomGenerator] Loading CleanroomGenerator v1.0.0
2013-04-14 00:59:36 [INFO] [Lift] Loading Lift v35
2013-04-14 00:59:36 [INFO] [TimTheEnchanter] Loading TimTheEnchanter v3.0
2013-04-14 00:59:36 [INFO] [Citizens] Loading Citizens v2.0.8-SNAPSHOT (build 772)
2013-04-14 00:59:36 [INFO] [Jobs] Loading Jobs v2.9.1
2013-04-14 00:59:36 [INFO] [LagMeter] Loading LagMeter v1.9.0
2013-04-14 00:59:36 [INFO] [Emotions] Loading Emotions v1.1
2013-04-14 00:59:36 [INFO] [DigitalClock] Loading DigitalClock v1.4
2013-04-14 00:59:36 [INFO] [EXPBottles] Loading EXPBottles v0.3
2013-04-14 00:59:36 [INFO] [GriefLog] Loading GriefLog v4.9.3
2013-04-14 00:59:36 [INFO] [NoCheatPlus] Loading NoCheatPlus v3.9.0-RC-b488
2013-04-14 00:59:36 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.2
2013-04-14 00:59:36 [INFO] [WorldEdit] Loading WorldEdit v5.5.4
2013-04-14 00:59:36 [INFO] [CreativeGates] Loading CreativeGates v1.3.5
2013-04-14 00:59:36 [INFO] [TagAPI] Loading TagAPI v2.2
2013-04-14 00:59:36 [INFO] [ColoredSigns] Loading ColoredSigns v3.1
2013-04-14 00:59:36 [INFO] [ColoredTexts] Loading ColoredTexts v1.3
2013-04-14 00:59:36 [INFO] [PlayerHeads] Loading PlayerHeads v3.0.0088
2013-04-14 00:59:36 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.5
2013-04-14 00:59:36 [INFO] [PermissionsEx] Initializing file backend
2013-04-14 00:59:36 [INFO] Permissions file successfully reloaded
2013-04-14 00:59:36 [INFO] [HealthBar] Loading HealthBar v1.1
2013-04-14 00:59:36 [INFO] [Paintball] Loading Paintball v1.1.6
2013-04-14 00:59:36 [INFO] [Gmlist] Loading Gmlist v1.5.5
2013-04-14 00:59:36 [INFO] [ClearChat] Loading ClearChat v1.4
2013-04-14 00:59:36 [INFO] [Commandspy] Loading Commandspy v2.9.1
2013-04-14 00:59:36 [INFO] [VypnoutChat] Loading VypnoutChat v1.0
2013-04-14 00:59:36 [INFO] [HeroicDeathPlus] Loading HeroicDeathPlus v2.1
2013-04-14 00:59:36 [INFO] [Planetoids] Loading Planetoids v1.4.2
2013-04-14 00:59:36 [INFO] [EasyVanish] Loading EasyVanish v1.4
2013-04-14 00:59:36 [INFO] [PluginList] Loading PluginList v1.7
2013-04-14 00:59:36 [INFO] [iConomy] Loading iConomy v7.0
2013-04-14 00:59:36 [INFO] [VanishPro] Loading VanishPro v1.3
2013-04-14 00:59:36 [INFO] [FakeLogin] Loading FakeLogin v2.1.2
2013-04-14 00:59:36 [INFO] [AutoDropParty] Loading AutoDropParty v0.2
2013-04-14 00:59:36 [INFO] [Reservations] Loading Reservations v2.4
2013-04-14 00:59:36 [INFO] [ClearLag] Loading ClearLag v2.1.1
2013-04-14 00:59:36 [INFO] [AutoSaveWorld] Loading AutoSaveWorld v4.4
2013-04-14 00:59:36 [INFO] [Freeze] Loading Freeze v1.4.3
2013-04-14 00:59:36 [INFO] [MoneyDrop] Loading MoneyDrop v2.0.0
2013-04-14 00:59:36 [INFO] [Essentials] Loading Essentials v2.10.1
2013-04-14 00:59:36 [INFO] [MagicCarpet] Loading MagicCarpet v2.9
2013-04-14 00:59:36 [INFO] [Trade] Loading Trade v0.5.5b
2013-04-14 00:59:36 [INFO] [ServerSigns] Loading ServerSigns v2.7
2013-04-14 00:59:36 [INFO] [BlockHat] Loading BlockHat v1.11
2013-04-14 00:59:36 [INFO] [CraftBook] Loading CraftBook v1955-0b223a8
2013-04-14 00:59:36 [INFO] [EssentialsChat] Loading EssentialsChat v2.10.1
2013-04-14 00:59:36 [INFO] [Residence] Loading Residence v2.6.6.4
2013-04-14 00:59:36 [INFO] [EssentialsSpawn] Loading EssentialsSpawn v2.10.1
2013-04-14 00:59:36 [INFO] [Ultrabans] Loading Ultrabans v3.1.0
2013-04-14 00:59:36 [INFO] [LWC] Loading LWC v4.3.2 (b858-git-MANUAL) (March 16, 2013)
2013-04-14 00:59:36 [INFO] [ChestShop] Loading ChestShop v3.50-t0054
2013-04-14 00:59:36 [INFO] [AuthMe] Loading AuthMe v2.7.12
2013-04-14 00:59:36 [INFO] [Factions] Loading Factions v1.6.9.4
2013-04-14 00:59:36 [INFO] [CreativeControl] Loading CreativeControl v5.8.6
2013-04-14 00:59:36 [INFO] [Vault] Enabling Vault v1.2.24-b304
2013-04-14 00:59:36 [INFO] [Vault][Economy] Essentials Economy found: Waiting
2013-04-14 00:59:36 [WARNING] iConomy - If you are using Flatfile storage be aware that versions 6, 7 and 8 have a CRITICAL bug which can wipe ALL iconomy data.
2013-04-14 00:59:36 [WARNING] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
2013-04-14 00:59:36 [WARNING] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
2013-04-14 00:59:36 [INFO] [Vault][Economy] iConomy 6 found: Waiting
2013-04-14 00:59:36 [INFO] [Vault][Permission] PermissionsEx found: Waiting
2013-04-14 00:59:36 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
2013-04-14 00:59:36 [INFO] [Vault][Chat] PermissionsEx found: Waiting
2013-04-14 00:59:37 [INFO] [Vault] Enabled Version 1.2.24-b304
2013-04-14 00:59:37 [INFO] [Vault][Economy] Essentials Economy hooked.
2013-04-14 00:59:37 [INFO] [Vault][Economy] iConomy 7 hooked.
2013-04-14 00:59:37 [INFO] [Vault][Permission] PermissionsEx hooked.
2013-04-14 00:59:37 [INFO] [CleanroomGenerator] Enabling CleanroomGenerator v1.0.0
2013-04-14 00:59:37 [INFO] [CleanroomGenerator] CleanroomGenerator v1.0.0 enabled
2013-04-14 00:59:37 [INFO] [Planetoids] Enabling Planetoids v1.4.2
2013-04-14 00:59:37 [INFO] Planetoids version 1.4.2 is enabled!
2013-04-14 00:59:37 [INFO] [LWC] Enabling LWC v4.3.2 (b858-git-MANUAL) (March 16, 2013)
2013-04-14 00:59:37 [INFO] [LWC] Connecting to SQLite
2013-04-14 00:59:37 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2013-04-14 00:59:37 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2013-04-14 00:59:37 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
2013-04-14 00:59:37 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2013-04-14 00:59:37 [INFO] Preparing level "world"
2013-04-14 00:59:37 [INFO] Preparing start region for level 0 (Seed: -3355170084426745057)
2013-04-14 00:59:39 [INFO] Preparing spawn area: 33%
2013-04-14 00:59:40 [INFO] Preparing start region for level 1 (Seed: -3355170084426745057)
2013-04-14 00:59:40 [INFO] Preparing start region for level 2 (Seed: -4835455322086360994)
2013-04-14 00:59:41 [INFO] Preparing spawn area: 33%
2013-04-14 00:59:41 [INFO] [FoundBoxx] Enabling FoundBoxx v1.7.8
2013-04-14 00:59:41 [INFO] [FoundBoxx] Listening to PermissionsEX.
2013-04-14 00:59:41 [INFO] [FoundBoxx v1.7.8] Enabled.
2013-04-14 00:59:41 [INFO] [VerejnaZprava] Enabling VerejnaZprava v1.1
2013-04-14 00:59:41 [INFO] [SimpleAFK] Enabling SimpleAFK v0.9.1
2013-04-14 00:59:41 [INFO] [SimpleAFK] Loading Config files...
2013-04-14 00:59:41 [INFO] [SimpleAFK] Config file 'config.yml' loaded
2013-04-14 00:59:41 [INFO] [SimpleAFK] Config file 'language_en.yml' loaded
2013-04-14 00:59:41 [INFO] [SimpleAFK] ... Config files loaded
2013-04-14 00:59:41 [INFO] [SimpleAFK] SimpleAFK v0.9.1 Enabled
2013-04-14 00:59:41 [INFO] [HerobrineAI] Enabling HerobrineAI v2.5.1
2013-04-14 00:59:41 [INFO] [HerobrineAI] Creating Graveyard world...
2013-04-14 00:59:41 [INFO] Preparing start region for level 3 (Seed: 8228970377176268742)
2013-04-14 00:59:42 [INFO] [HerobrineAI] Plugin loaded! Version: 2.5.1 / Build: 3100
2013-04-14 00:59:42 [INFO] [JoinMessage] Enabling JoinMessage v2.0
2013-04-14 00:59:42 [INFO] [SpamGuard] Enabling SpamGuard v1.1
2013-04-14 00:59:42 [INFO] [SpamGuard] 0 bans loaded.
2013-04-14 00:59:42 [INFO] ------------------------------------------------------
2013-04-14 00:59:42 [INFO] SpamGuard version 1.1 is now enabled.
2013-04-14 00:59:42 [INFO] Please consider donating! http://tiny.cc/sgdonate
2013-04-14 00:59:42 [INFO] Project dev page: http://tiny.cc/spamguard
2013-04-14 00:59:42 [INFO] ------------------------------------------------------
2013-04-14 00:59:43 [INFO] [SpamGuard] SpamGuard is up to date!
2013-04-14 00:59:43 [INFO] [SpamGuard] Server info saved.
2013-04-14 00:59:43 [INFO] [Backpack] Enabling Backpack vb129
2013-04-14 00:59:43 [INFO] [Backpack] Successfully hooked into Vault for economy transactions
2013-04-14 00:59:43 [INFO] [Backpack] Successfully hooked into Vault for permissions
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
2013-04-14 00:59:43 [INFO] [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
2013-04-14 00:59:43 [INFO] [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: -3355170084426745057
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: -3355170084426745057
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: -4835455322086360994
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'world_herobrineai_graveyard' - Env: NORMAL - Type: FLAT & seed: 8228970377176268742
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'svet' - Env: NORMAL - Type: NORMAL & seed: 6998003937293306118
2013-04-14 00:59:43 [INFO] Preparing start region for level 4 (Seed: 6998003937293306118)
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'SkyWorld' - Env: NORMAL - Type: NORMAL & seed: 653300356798739240 & generator: CleanroomGenerator
2013-04-14 00:59:43 [INFO] Preparing start region for level 5 (Seed: 653300356798739240)
2013-04-14 00:59:43 [INFO] [Multiverse-Core] Loading World & Settings - 'SkyBlock' - Env: NORMAL - Type: NORMAL & seed: 1465065975526877511 & generator: CleanroomGenerator:.
2013-04-14 00:59:43 [INFO] Preparing start region for level 6 (Seed: 1465065975526877511)
2013-04-14 00:59:43 [WARNING] [Multiverse-Core] Spawn location from world.dat file was unsafe. Adjusting...
2013-04-14 00:59:43 [WARNING] [Multiverse-Core] Original Location: X: 0 Y: 64 Z: 0 P: 0 Y: 0
2013-04-14 00:59:44 [SEVERE] [Multiverse-Core] New safe spawn NOT found!!!
2013-04-14 00:59:44 [INFO] [Multiverse-Core] 7 - World(s) loaded.
2013-04-14 00:59:44 [INFO] [AntiCreeper3] Enabling AntiCreeper3 v4.7
2013-04-14 00:59:44 [INFO] [AntiCreeper3] brought to you by Filbert66 (<=v.2.5 by Rothens)
2013-04-14 00:59:44 [INFO] [TreeAssist] Enabling TreeAssist v5.4.1
2013-04-14 00:59:44 [INFO] [ColoredTablist] Enabling ColoredTablist v1.9
2013-04-14 00:59:44 [INFO] [ColoredTablist] Config loaded
2013-04-14 00:59:44 [INFO] [LightVote] Enabling LightVote v1.73
2013-04-14 00:59:44 [INFO] [LightVote:1.73] Initialised
2013-04-14 00:59:44 [INFO] [LightVote:1.73] Scanning properties file.
2013-04-14 00:59:44 [INFO] [LightVote:1.73] Properties loaded.  Debug messages: false
2013-04-14 00:59:44 [INFO] [LightVote] Permissions not enabled in config.
2013-04-14 00:59:44 [INFO] [AutoMessage] Enabling AutoMessage v2.1.3
2013-04-14 00:59:44 [INFO] [Chairs] Enabling Chairs v1.20.0
2013-04-14 00:59:44 [INFO] [Chairs] Loaded ignore list. (Count = 0)
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: WOOD_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: SPRUCE_WOOD_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: JUNGLE_WOOD_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: BIRCH_WOOD_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: SANDSTONE_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: COBBLESTONE_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: BRICK_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: SMOOTH_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Chairs] Allowed block: NETHER_BRICK_STAIRS => 0.7
2013-04-14 00:59:44 [INFO] [Spectate] Enabling Spectate v1.9.1
2013-04-14 00:59:44 [INFO] [Spectate] Spectate v1.9.1 enabled!
2013-04-14 00:59:44 [INFO] [NoBEDROCK] Enabling NoBEDROCK v0.1
2013-04-14 00:59:44 [INFO] NoBEDROCK v0.1 has been disabled!
2013-04-14 00:59:44 [INFO] [AntiAdvertising] Enabling AntiAdvertising v1.3.1
2013-04-14 00:59:44 [INFO] [Cestinator] Enabling Cestinator v1.5
2013-04-14 00:59:44 [INFO] [Trampoline] Enabling Trampoline v1.0
2013-04-14 00:59:44 [INFO] [OpenInv] Enabling OpenInv v1.9.9
2013-04-14 00:59:44 [INFO] [OpenInv] Your version of CraftBukkit is not supported.
2013-04-14 00:59:44 [INFO] [OpenInv] Please look for an updated version of OpenInv.
2013-04-14 00:59:44 [INFO] [OpenInv] Disabling OpenInv v1.9.9
2013-04-14 00:59:44 [INFO] [SxwPlugin] Enabling SxwPlugin v0.1
2013-04-14 00:59:44 [INFO] [SxwPlugin] SxwPlugin loaded!
2013-04-14 00:59:44 [INFO] [Nahrano] Enabling Nahrano v1.0
2013-04-14 00:59:44 [INFO] [ProtocolLib] Enabling ProtocolLib v2.3.0
2013-04-14 00:59:44 [INFO] [ProtocolLib] Started structure compiler thread.
2013-04-14 00:59:44 [WARNING] [ProtocolLib] Version (MC: 1.5.0) has not yet been tested! Proceed with caution.
2013-04-14 00:59:44 [INFO] [NoTNT] Enabling NoTNT v0.1
2013-04-14 00:59:44 [INFO] NoTNT v0.1 has been disabled!
2013-04-14 00:59:44 [INFO] [MobArena] Enabling MobArena v0.94.4.96
2013-04-14 00:59:44 [INFO] [MobArena] Loaded arena 'default'.
2013-04-14 00:59:44 [INFO] [MobArena] v0.94.4.96 enabled.
2013-04-14 00:59:44 [INFO] [Lift] Enabling Lift v35
2013-04-14 00:59:44 [INFO] Lift v35 is now enabled!
2013-04-14 00:59:44 [INFO] [TimTheEnchanter] Enabling TimTheEnchanter v3.0
2013-04-14 00:59:44 [INFO] [TimTheEnchanter] There are some who call me... Tim?
2013-04-14 00:59:44 [INFO] [Citizens] Enabling Citizens v2.0.8-SNAPSHOT (build 772)
2013-04-14 00:59:44 [INFO] [Jobs] Enabling Jobs v2.9.1
2013-04-14 00:59:44 [INFO] [Jobs] Started database save task
2013-04-14 00:59:44 [INFO] [Jobs] Started buffered payment thread
2013-04-14 00:59:44 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
2013-04-14 00:59:44 [INFO] [Jobs] Database save task shutdown
2013-04-14 00:59:44 [INFO] [Jobs] Started database save task
2013-04-14 00:59:44 [INFO] [Jobs] Started buffered payment thread
2013-04-14 00:59:44 [INFO] [Jobs] Plugin has been enabled succesfully.
2013-04-14 00:59:44 [INFO] [Jobs] Buffered payment thread shutdown
2013-04-14 00:59:44 [INFO] [Jobs] Login manager started
2013-04-14 00:59:44 [INFO] [LagMeter] Enabling LagMeter v1.9.0
2013-04-14 00:59:44 [INFO] [LagMeter] Not using logs folder.
2013-04-14 00:59:44 [INFO] [LagMeter 1.9.0] Enabled!  Polling every 40 server ticks.  Logging to /hlserver/27037/plugins/LagMeter/lag.log
2013-04-14 00:59:44 [INFO] [Emotions] Enabling Emotions v1.1
2013-04-14 00:59:44 [INFO] [Emotions] Emotions has been enabled!
2013-04-14 00:59:44 [INFO] [DigitalClock] Enabling DigitalClock v1.4
2013-04-14 00:59:44 [INFO] [DigitalClock] Plugin has been enabled!
2013-04-14 00:59:44 [INFO] [DigitalClock] Loaded 1 clock(s).
2013-04-14 00:59:44 [INFO] [EXPBottles] Enabling EXPBottles v0.3
2013-04-14 00:59:44 [INFO] [GriefLog] Enabling GriefLog v4.9.3
2013-04-14 00:59:44 [INFO] [GriefLog] GriefLog 4.9.3 Enabled
2013-04-14 00:59:44 [INFO] [NoCheatPlus] Enabling NoCheatPlus v3.9.0-RC-b488
2013-04-14 00:59:44 [INFO] [NoCheatPlus] McAccess set to: 1.5 / CB2645
2013-04-14 00:59:44 [INFO] [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
2013-04-14 00:59:44 [INFO] [NoCheatPlus] Version 3.9.0-RC-b488 is enabled.
2013-04-14 00:59:44 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.2
2013-04-14 00:59:44 [INFO] Starting FakaHedaMinequery server on 93.91.250.112:28037
2013-04-14 00:59:44 [INFO] [WorldEdit] Enabling WorldEdit v5.5.4
2013-04-14 00:59:44 [INFO] WEPIF: Using the Bukkit Permissions API.
2013-04-14 00:59:44 [INFO] [CreativeGates] Enabling CreativeGates v1.3.5
2013-04-14 00:59:44 [INFO] [CreativeGates v1.3.5] === ENABLE START ===
2013-04-14 00:59:45 [INFO] [CreativeGates v1.3.5] === ENABLE DONE (Took 314ms) ===
2013-04-14 00:59:45 [INFO] [TagAPI] Enabling TagAPI v2.2
2013-04-14 00:59:45 [INFO] [TagAPI] Detected ProtocolLib, using that for handling!
2013-04-14 00:59:45 [INFO] [TagAPI] Using hooks for CraftBukkit via ProtocolLib
2013-04-14 00:59:45 [INFO] [ColoredSigns] Enabling ColoredSigns v3.1
2013-04-14 00:59:45 [WARNING] [ColoredSigns] Erorr While loading Commands. Have you installed the Right Craftbukkit Build?
2013-04-14 00:59:45 [WARNING] [ColoredSigns] Erorr While loading Commands. Please create a Ticket,when your Craftbukkit version is valid.
2013-04-14 00:59:45 [INFO] [ColoredSigns] Listeners Enabled.
2013-04-14 00:59:45 [INFO] [ColoredSigns] version 3.1 by Janomine Succesfully Enabled.
2013-04-14 00:59:45 [INFO] [ColoredTexts] Enabling ColoredTexts v1.3
2013-04-14 00:59:45 [INFO] ColoredTexts Version 1.3 Has been Enabled!
2013-04-14 00:59:45 [INFO] [§bColored§2Texts§r]§e is the most up to date version.
2013-04-14 00:59:45 [INFO] [PlayerHeads] Enabling PlayerHeads v3.0.0088
2013-04-14 00:59:45 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.5
2013-04-14 00:59:45 [INFO] [PermissionsEx] Superperms support enabled.
2013-04-14 00:59:45 [INFO] [PermissionsEx] v1.19.5 enabled
2013-04-14 00:59:45 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2013-04-14 00:59:45 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
2013-04-14 00:59:45 [INFO] [HealthBar] Enabling HealthBar v1.1
2013-04-14 00:59:45 [INFO] Health Display enabled.
2013-04-14 00:59:45 [INFO] [Paintball] Enabling Paintball v1.1.6
2013-04-14 00:59:50 [INFO] [Paintball] Loading the default language: enUS.txt
2013-04-14 00:59:50 [INFO] [Paintball] Scanned lines: 271
2013-04-14 00:59:50 [INFO] [Paintball] Skipped lines: 0
2013-04-14 00:59:50 [INFO] [Paintball] Using the default language now: enUS.txt
2013-04-14 00:59:50 [INFO] [Paintball] Loading the specified melody now: win.txt
2013-04-14 00:59:50 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 20
2013-04-14 00:59:50 [INFO] [Paintball] Loading the specified melody now: defeat.txt
2013-04-14 00:59:50 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 43
2013-04-14 00:59:50 [INFO] [Paintball] Loading the specified melody now: draw.txt
2013-04-14 00:59:50 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 29
2013-04-14 00:59:50 [INFO] [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
2013-04-14 00:59:50 [INFO] [Paintball] Plugin 'TagAPI' found. Using it now.
2013-04-14 00:59:50 [INFO] [Paintball] Calculating turret angles...
2013-04-14 00:59:50 [INFO] [Paintball] Calculating done.
2013-04-14 00:59:50 [INFO] [Paintball] By blablubbabc enabled.
2013-04-14 00:59:50 [INFO] [Gmlist] Enabling Gmlist v1.5.5
2013-04-14 00:59:50 [INFO] [Gmlist 1.5.5] Plugin by J08nY.
2013-04-14 00:59:50 [INFO] [Gmlist 1.5.5] DEBUG : Config OK!
2013-04-14 00:59:50 [INFO] [Gmlist 1.5.5] DEBUG : Found PermissionsEx!
2013-04-14 00:59:50 [INFO] [ClearChat] Enabling ClearChat v1.4
2013-04-14 00:59:50 [INFO] [Commandspy] Enabling Commandspy v2.9.1
2013-04-14 00:59:51 [INFO] [VypnoutChat] Enabling VypnoutChat v1.0
2013-04-14 00:59:51 [INFO] [HeroicDeathPlus] Enabling HeroicDeathPlus v2.1
2013-04-14 00:59:51 [INFO] [HeroicDeathPlus] 2.1 enabled.
2013-04-14 00:59:51 [INFO] [EasyVanish] Enabling EasyVanish v1.4
2013-04-14 00:59:51 [INFO] [PluginList] Enabling PluginList v1.7
2013-04-14 00:59:51 [INFO] PluginList 1.7 Enabled
2013-04-14 00:59:51 [INFO] [iConomy] Enabling iConomy v7.0
2013-04-14 00:59:51 [INFO] [iConomy - April Fools] Enabled (9 ms)
2013-04-14 00:59:51 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2013-04-14 00:59:51 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2013-04-14 00:59:51 [INFO] [VanishPro] Enabling VanishPro v1.3
2013-04-14 00:59:51 [INFO] [VanishPro] Plugin disabled!
2013-04-14 00:59:51 [INFO] [FakeLogin] Enabling FakeLogin v2.1.2
2013-04-14 00:59:51 [INFO] FakeLogin Version 2.1.2 Has Been Enabled!
2013-04-14 00:59:51 [INFO] [AutoDropParty] Enabling AutoDropParty v0.2
2013-04-14 00:59:51 [INFO] [Reservations] Enabling Reservations v2.4
2013-04-14 00:59:51 [INFO] [Reservations] Using Vault!
2013-04-14 00:59:51 [WARNING] [Reservations] Failed on connecting to inceptolabs.hopto.org
2013-04-14 00:59:51 [INFO] [Reservations] Either you do not have an internet connection or the update server is down.
2013-04-14 00:59:51 [INFO] [Reservations] is enabled!
2013-04-14 00:59:51 [INFO] [ClearLag] Enabling ClearLag v2.1.1
2013-04-14 00:59:51 [INFO] [ClearLag] Checking for a new update...
2013-04-14 00:59:51 [INFO] [ClearLag] No update for ClearLag found!
2013-04-14 00:59:51 [INFO] [ClearLag] ClearLag is now enabled.
2013-04-14 00:59:51 [INFO] [AutoSaveWorld] Enabling AutoSaveWorld v4.4
2013-04-14 00:59:52 [INFO] [AutoSaveWorld] AutoSaveThread Started: Interval is 300 seconds, Warn Times are 0
2013-04-14 00:59:52 [INFO] [AutoSaveWorld] AutoBackupThread Started: Interval is 21600 seconds, Warn Times are 0
2013-04-14 00:59:52 [INFO] [AutoSaveWorld] Version 4.4 is enabled: 197bfa3c-7f04-4956-bcb0-539fd19a45c3
2013-04-14 00:59:52 [INFO] [AutoSaveWorld] AutoPurgeThread Started: Interval is 86400 seconds, Warn Times are 0
2013-04-14 00:59:52 [INFO] [Freeze] Enabling Freeze v1.4.3
2013-04-14 00:59:52 [INFO] [Freeze] Enabled.
2013-04-14 00:59:52 [INFO] [Freeze] Searching for update...
2013-04-14 00:59:52 [INFO] [Freeze] No new update detected.
2013-04-14 00:59:52 [INFO] [MoneyDrop] Enabling MoneyDrop v2.0.0
2013-04-14 00:59:52 [INFO] [MoneyDrop] loaded and ready for looting.
2013-04-14 00:59:52 [INFO] [Essentials] Enabling Essentials v2.10.1
2013-04-14 00:59:52 [INFO] Essentials: Using PermissionsEx based permissions.
2013-04-14 00:59:52 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.24-b304)
2013-04-14 00:59:52 [INFO] [MagicCarpet] Enabling MagicCarpet v2.9
2013-04-14 00:59:52 [INFO] [MagicCarpet] Loading carpets...
2013-04-14 00:59:52 [INFO] [MagicCarpet] is now enabled!
2013-04-14 00:59:52 [INFO] [Trade] Enabling Trade v0.5.5b
2013-04-14 00:59:52 [INFO] [ServerSigns] Enabling ServerSigns v2.7
2013-04-14 00:59:52 [INFO] [ServerSigns] Successfully hooked in into Vault
2013-04-14 00:59:52 [INFO] [ServerSigns] Version 2.7 is now enabled.
2013-04-14 00:59:52 [INFO] [BlockHat] Enabling BlockHat v1.11
2013-04-14 00:59:52 [INFO] [CraftBook] Enabling CraftBook v1955-0b223a8
2013-04-14 00:59:52 [INFO] 1 cauldron recipe(s) loaded
2013-04-14 00:59:52 [INFO] [CraftBook] Registered a new shapeless recipe!
2013-04-14 00:59:52 [INFO] [CraftBook] Registered a new shaped recipe!
2013-04-14 00:59:52 [INFO] [CraftBook] Registered a new furnace recipe!
2013-04-14 00:59:52 [INFO] [CraftBook] Registered 3 custom recipes!
2013-04-14 00:59:52 [INFO] [CraftBook] Enumerating chunks for self-triggered components...
2013-04-14 00:59:52 [INFO] [WorldEdit] Using inbuilt NmsBlock for this version.
2013-04-14 00:59:52 [INFO] [CraftBook] 4669 chunk(s) for 7 world(s) processed (160ms elapsed)
2013-04-14 00:59:52 [INFO] [EssentialsChat] Enabling EssentialsChat v2.10.1
2013-04-14 00:59:52 [INFO] [Residence] Enabling Residence v2.6.6.4
2013-04-14 00:59:52 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
2013-04-14 00:59:52 [INFO] [Residence] Scanning for economy systems...
2013-04-14 00:59:52 [INFO] [Residence] Found Vault using economy system: iConomy 7
2013-04-14 00:59:53 [INFO] [Residence] Found WorldEdit
2013-04-14 00:59:53 [INFO] [Residence] Enabled! Version 2.6.6.4 by bekvon
2013-04-14 00:59:53 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.10.1
2013-04-14 00:59:53 [INFO] [Ultrabans] Enabling Ultrabans v3.1.0
2013-04-14 00:59:53 [INFO] [Ultrabans] No Updates found on dev.bukkit.org.
2013-04-14 00:59:53 [INFO] [Ultrabans] Loaded. 0 secs.
2013-04-14 00:59:53 [INFO] [ChestShop] Enabling ChestShop v3.50-t0054
2013-04-14 00:59:53 [INFO] [ChestShop] LWC version 4.3.2 (b858-git-MANUAL) (March 16, 2013) loaded.
2013-04-14 00:59:53 [INFO] [ChestShop] Vault loaded - using iConomy 7
2013-04-14 00:59:53 [INFO] [ChestShop] Residence version 2.6.6.4 loaded.
2013-04-14 00:59:54 [INFO] [AuthMe] Enabling AuthMe v2.7.12
2013-04-14 00:59:54 [INFO] [AuthMe] Loading Configuration File...
2013-04-14 00:59:54 [INFO] [AuthMe] Merge new Config Options if needed..
2013-04-14 00:59:54 [INFO] [AuthMe] Set Language: en
2013-04-14 00:59:54 [INFO] [AuthMe] Hook with Multiverse-Core for SpawnLocations
2013-04-14 00:59:54 [INFO] [AuthMe] Authme 2.7.12 enabled
2013-04-14 00:59:54 [INFO] [Factions] Enabling Factions v1.6.9.4
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] === ENABLE START ===
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] Loading board from disk
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] Found and will integrate chat with EssentialsChat v2.10.1
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] Economy integration through Vault plugin successful.
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] Successfully hooked into LWC! Integration is currently disabled, though ("lwcIntegration").
2013-04-14 00:59:54 [INFO] [Factions v1.6.9.4] === ENABLE DONE (Took 130ms) ===
2013-04-14 00:59:54 [INFO] [CreativeControl] Enabling CreativeControl v5.8.6
2013-04-14 00:59:54 [INFO] [CreativeControl]: Initializing configurations...
2013-04-14 00:59:54 [INFO] [CreativeControl]: Loading Modules...
2013-04-14 00:59:54 [INFO] [CreativeControl]: Connecting to the SQLite Database...
2013-04-14 00:59:54 [INFO] [CreativeControl]: SQLite database connected Successfuly!
2013-04-14 00:59:54 [INFO] [CreativeControl]: Registring Events...
2013-04-14 00:59:54 [INFO] [CreativeControl]: MobArena support enabled!
2013-04-14 00:59:54 [INFO] Accepted EditSessionFactory of type me.FurH.CreativeControl.integration.worldedit.CreativeEditSessionFactory from me.FurH.CreativeControl.integration.worldedit
2013-04-14 00:59:54 [INFO] [CreativeControl]: Vault hooked as permissions plugin
2013-04-14 00:59:54 [INFO] [CreativeControl]: Cached 10,205 protections
2013-04-14 00:59:54 [INFO] [CreativeControl]: Loaded 0 regions
2013-04-14 00:59:54 [INFO] [CreativeControl]: 79,286 blocks protected
2013-04-14 00:59:54 [INFO] [CreativeControl] CreativeControl v5.8.6 Enabled
2013-04-14 00:59:54 [INFO] Server permissions file permissions.yml is empty, ignoring it
2013-04-14 00:59:54 [INFO] Done (17.053s)! For help, type "help" or "?"
2013-04-14 00:59:54 [INFO] Starting GS4 status listener
2013-04-14 00:59:54 [INFO] Starting remote control listener
2013-04-14 00:59:54 [INFO] Query running on 93.91.250.112:27037
2013-04-14 00:59:54 [WARNING] No rcon password set in '/hlserver/27037/server.properties', rcon disabled!
2013-04-14 00:59:54 [INFO] Preparing start region for level 7 (Seed: 53353754192685553)
2013-04-14 00:59:55 [INFO] --------- Checking version ----------
2013-04-14 00:59:55 [INFO] [Paintball] You are running the latest version. :)
2013-04-14 00:59:55 [INFO] --------- ---------------- ----------
2013-04-14 00:59:55 [INFO] [Citizens] Loaded 5 NPCs.
2013-04-14 00:59:55 [INFO] [HerobrineAI] Residence plugin detected!
2013-04-14 00:59:55 [INFO] CraftBook v3.6

Re: Money

Napsal: 14 dub 2013, 21:21
od nejento
Pro SkyBlockCo-op potřebuješ WorldGuard
Dej sem config VypnoutChat
Dej sem config Backpack

Dej sem server.log při použití toho příkazu.

Re: Money

Napsal: 14 dub 2013, 21:39
od sharky100
Takže ja som celý iConomy zmazal a dal som tam nový /money give už ide aj /money ale peniaze to stale restartuju SkyBlock Co-Op som dal preč a dal som uSkyBlock configi:
Config pluginu BackPack:
Spoiler: zobrazit

Kód: Vybrat vše

# General:
use-economy: Whether or not to enable economy system for backpack purchase & upgrades.
use-spout: Whether or not to enable SpoutPlugin based features.
use-saveonlogin: Whether to force a save of the backpack on login & logout.

Admin:
control-panel: Enable or disable Admin Panel.
hotkey: KEY_V {default keybinding inside of Spoutcraft to display Admin Panel}

Backpack:
no-perm-default-size: 9 {default backpack size if no permissions system found}
hotkey: KEY_B {default keybinding inside of Spoutcraft to open Backpack}

File: blacklist.yml
Contains list of items you dont want users to save in their backpack.Follow file format automatically created.  Use only names of materials, not numbers.

File: share.yml
Contains list of backpack shareable worlds.
 share:
    world:
      - world_nether
      - world_end

Config pluginu VypnoutChat:
Spoiler: zobrazit

Kód: Vybrat vše

Zpravy:
  Chat: &4Je vypnutý chat, proto nejde psát do chatu!
  Opravneni: &4Nemáte oprávnění vypnout/zapatnout chat!

Config pluginu iConomy:
Spoiler: zobrazit

Kód: Vybrat vše

iConomy 6.0.8b
# @author     Nijikokun <nijikokun@gmail.com>
# @license    GPLv2
# @copyright  Copyright AniGaiku LLC (C) 2010-2011
##
# Setup Notes
#   - Seconds
#         Basic Table:
#           1 minute = 60 seconds
#           1 hour = 1 minute * 60 = 3600 seconds
#           1 day = 1 hour * 24 = 86400 seconds
#           1 week = 1 day * 7 = 604800 seconds
#   - Database
#           Do not use remote databases from free sites, please use either a
#           remote database from a personal hosted VPS or DEDI or a local
#           database. This will prevent any 'timeout' or 'invalid settings'
#           or 'cannot connect to database' issues. Thank you :)!
##

System:
  Permissions:
    Use:
      # Should a user have the 'iConomy.holdings' to use /money
      # By default this is false, so that people stop complaining that
      # iConomy doesn't work. Yes, people actually report that.
      # If you are one of those people, leave this false.
      Holdings: false

  Default:
    Currency:
      # Major is the first segment [Major].Minor

      # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
      Major: [ 'Dollar', 'Dollars' ]

      # Minor (Major.[Minor]) 0.23 Coins  (With Seperate 0 Dollars, 23 Coins)
      Minor: [ 'Coin', 'Coins' ]

    Account:
      # Default account balance when created
      Holdings: 1000.0

  # Controls how money is formatted through methods
  Formatting:
    # Minor allows you to use the Minor amounts for amounts <1
    # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
    Minor: false

    # Seperate allows your money to be shown in an alternative way,
    # instead of 1.32 it will show as 1 Dollar 23 Coins
    # !!! NOTICE: This only works if Minor is set to true !!!
    Seperate: false                               # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)

    # Single shows your money in another alternative way.
    # Instead of 1.23 Dollars you will see: 1 Dollar.
    # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
    # !!! Notice: This overrides seperate !!!
    Single: false

  # Logs all monetary transactions passed through iConomy
  Logging:
    Enabled: false

  # Purges Default Balances at Loading
  # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  Purging:
    Enabled: true

  # Controls amount of money gained at a set interval.
  Interest:
    Enabled: false

    # Only give interest to players who are currently online?
    Online: true

    Announce:
      # Send a message when the player gains interest?
      Enabled: false

    Interval:
      #  Interval is done in seconds, here is a easy reference table for commonly set intervals:
      #   1 minute = 60 seconds
      #   1 hour = 1 minute * 60 = 3600 seconds
      #   1 day = 1 hour * 24 = 86400 seconds
      #   1 week = 1 day * 7 = 604800 seconds
      Seconds: 60

    Amount:
      # The balance to be met where we stop giving interest.
      # 0.0 for no limit
      Cutoff: 0.0

      # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
      Percent: 0.0

      # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
      # If the two numbers are different, it will be a random amount in-between the two.
      Maximum: 1
      Minimum: 2

  Database:
    # Databases Supported:
    # Flatfile, FF, mini, minidb
    #  - These all equate to miniDB
    ##
    # item, items, inventory, inventoryDB
    #  - These all equate to InventoryDB, which uses inventory for storage
    ##
    # xp, exp, orb, xpdb, expdb, orbdb
    #  - These all equate to ExperienceDB, which relies on Experience for balance.
    ##
    # mysql, mysqldb
    #  - These will attempt to connect to MySQL
    ##
    # sqlite, sqlite2, sqlite3, sqlitedb
    #  - These will attempt to create & connect to SQLite
    ##
    # postgre, postgreSQL, postgreDB
    #  - These will attempt to connect to PostgreSQL
    Type: 'minidb'
   
    # These are for InventoryDB only.
    #
    # InventoryDB is essentially Physical Money.
    #   It isn't logged in a database, its based on the users inventory
    #   and the two items selected below.
    #
    # MajorItem is the item or block ID of the major currency
    # MinorItem is the item or block ID of the minor currency
    # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
    MajorItem: 266
    MinorItem: 265

    # This controls the database name, by default it is iConomy
    Table: 'iConomy'

    # URL is for SQL Databases Only
    ##
    # Path to iConomy folder is easy, it's the COMPLETE path.
    # (Mine) G:\MineCraft\plugins\iConomy\
    # Won't be the same as yours, but it usually looks like that.
    ##
    # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
    # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
    ##
    # Binary Databases use ip:port style connections.
    # ip
    #  - is the connection identifier (internet protocol)
    #  - for ipv6 usually encased in brackets [::1]
    # port
    #  - the port that the database is listening on
    #  - defaults: 3306 for mysql, postgre is either 5740 or 5432
    ##
    # [MySQL Default] mysql://localhost:3306/iConomy
    # [Postgre Default] postgresql://localhost:5740/iConomy
    URL: 'mysql://localhost:3306/iConomy'

    # Login details for binary databases
    Username: 'root'
    Password: ''

    ##############################################################
    # !!! Conversion is not your database settings !!!
    ##############################################################
    # Conversion allows you to convert your old 5.x to the new 6.x
    # All is currently unused.
    ##############################################################
    # URL is for MySQL only, H2DB doesn't use it.
    ##############################################################
    Conversion:
      # Set to True, After converting, change this back to false!
      Enabled: false

      # Database Type, H2DB or MySQL
      Type: 'H2DB'

      # Database Table
      Table: 'iConomy'

      # Database URL without table at the end.
      URL: 'mysql://localhost:3306'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: 'root'
      Password: ''

      # Unused ATM.
      All: true

Config pluginu MoneyDrop:
Spoiler: zobrazit

Kód: Vybrat vše

Settings:
  Mobspawner-Drops-Allowed: false
  Egg-Drops-Allowed: true
  Mobs-Only-Drop-On-Kill: false
  Independent-Drops: false
  Dropped-Material-ID: 371
  Dropped-Material-Data: 0
  Max-Stack-Amount: 9.9999999999999E13
  Precision: 1.0
  Max-Drops-Per-Second: 0
  Pickup-Chat-Notification-Enabled: true
  Chat-Notification-Delay: false
  Pickup-Chat-Notification-Message: Picked up <money>$
  Players:
    Mob-Attack: '0'
    Player-Attack: '0'
    Block-Explosion: '0'
    Block-Contact: '0'
    Drowning: '0'
    Falling: '0'
    Fire: '0'
    Suffocation: '0'
    Suicide: '0'
    Other: '0'
Mobs:
  CREEPER:
    Dropped-Minimum: 7.0
    Dropped-Maximum: 15.0
    Dropped-Frequency: 100.0
  CREEPER-ELECTROCUTED:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 100.0
    Dropped-Frequency: 100.0
  SKELETON-NORMAL:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 20.0
    Dropped-Frequency: 100.0
  SKELETON-WITHER:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 150.0
    Dropped-Frequency: 100.0
  SPIDER:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 30.0
    Dropped-Frequency: 100.0
  GIANT:
    Dropped-Minimum: 2500.0
    Dropped-Maximum: 5000.0
    Dropped-Frequency: 100.0
  ZOMBIE:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 20.0
    Dropped-Frequency: 100.0
  ZOMBIE-VILLAGER:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ZOMBIE-CHILD:
    Dropped-Minimum: 10.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ZOMBIE-VILLAGER-CHILD:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 25.0
    Dropped-Frequency: 100.0
  SLIME:
    Dropped-Minimum: 15.0
    Dropped-Maximum: 25.0
    Dropped-Frequency: 100.0
  GHAST:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 150.0
    Dropped-Frequency: 100.0
  PIG_ZOMBIE:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ENDERMAN:
    Dropped-Minimum: 50.0
    Dropped-Maximum: 100.0
    Dropped-Frequency: 100.0
  CAVE_SPIDER:
    Dropped-Minimum: 30.0
    Dropped-Maximum: 60.0
    Dropped-Frequency: 100.0
  SILVERFISH:
    Dropped-Minimum: 6.0
    Dropped-Maximum: 12.0
    Dropped-Frequency: 100.0
  BLAZE:
    Dropped-Minimum: 30.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  MAGMA_CUBE:
    Dropped-Minimum: 25.0
    Dropped-Maximum: 50.0
    Dropped-Frequency: 100.0
  ENDER_DRAGON:
    Dropped-Minimum: 50000.0
    Dropped-Maximum: 100000.0
    Dropped-Frequency: 100.0
  WITHER:
    Dropped-Minimum: 10000.0
    Dropped-Maximum: 15000.0
    Dropped-Frequency: 100.0
  BAT:
    Dropped-Minimum: 5.0
    Dropped-Maximum: 10.0
    Dropped-Frequency: 100.0
  WITCH:
    Dropped-Minimum: 100.0
    Dropped-Maximum: 250.0
    Dropped-Frequency: 100.0
  PIG:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SHEEP:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  COW:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  CHICKEN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SQUID:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  WOLF:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  MUSHROOM_COW:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  SNOWMAN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  OCELOT:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  IRON_GOLEM:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-GENERIC:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-FARMER:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-LIBRARIAN:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-PRIEST:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-BLACKSMITH:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
  VILLAGER-BUTCHER:
    Dropped-Minimum: 0.0
    Dropped-Maximum: 0.0
    Dropped-Frequency: 0.0
Dal som ti tam preistotu už tie 4 aby boli pokope prosím pomoc lebo hráči sa na to veľmi stažuju.

Re: Money

Napsal: 15 dub 2013, 14:25
od sharky100
Tak viete co stím mám robiť Prosím Pomoc :(.