Iconomy

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Iconomy

#1 Příspěvekod liki12 » 22 říj 2012, 21:09

Chci si dát iconomy na mysql ale nejde mi to co mam blbě?

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: 'mysql'

      # Database Table
      Table: 'iConomy'

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

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

      # Unused ATM.
      All: true
93.91.250.110:37076

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: Iconomy

#2 Příspěvekod nejento » 22 říj 2012, 21:17

Spoiler: zobrazit

Kód: Vybrat vše

    ##############################################################
    # !!! 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: 'mysql'

      # Database Table
      Table: 'iConomy'

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

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

      # Unused ATM.
      All: true


Kód: Vybrat vše

    ##############################################################
    # !!! 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.
    ##############################################################

Tak proto.

Nastavil jsi konverzi, ne klasickou MySQL. To je hned nad tím :)
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/

Uživatelský avatar
Sejsel
Příspěvky: 4131
Registrován: 19 čer 2011, 09:43
Reputation: 0
Bydliště: /home/sejsel/
Kontaktovat uživatele:

Re: Iconomy

#3 Příspěvekod Sejsel » 22 říj 2012, 21:29

Skoč na bukkit.fakaheda.eu. MySQL jsem tam vysvětloval na iConomy a dost jsem tam myslím zdůraznil, aby se vyplňovalo to nahoře, ne konvertování Flatfile -> MySQL.
01101110011101010110001001110111

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: Iconomy

#4 Příspěvekod liki12 » 22 říj 2012, 21:41

Takhle?Ale stejně to nejde tak jak to mam vyplnit. :(

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: 'mysql'
   
    # 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/gs_37076_1''

    # Login details for binary databases
    Username: 'gs_37076_1'
    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
93.91.250.110:37076

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: Iconomy

#5 Příspěvekod nejento » 22 říj 2012, 21:54

Takhle, jenom doplň si hesla :):
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: 'mysql'
   
    # 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/gs_37076_1'

    # Login details for binary databases
    Username: 'gs_37076_1'
    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
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: Iconomy

#6 Příspěvekod liki12 » 22 říj 2012, 22:00

nejde
93.91.250.110:37076

Uživatelský avatar
Sejsel
Příspěvky: 4131
Registrován: 19 čer 2011, 09:43
Reputation: 0
Bydliště: /home/sejsel/
Kontaktovat uživatele:

Re: Iconomy

#7 Příspěvekod Sejsel » 22 říj 2012, 22:05

server.log při zapnutí serveru, prosím.
01101110011101010110001001110111

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: Iconomy

#8 Příspěvekod liki12 » 22 říj 2012, 22:08

Spoiler: zobrazit

Kód: Vybrat vše

2012-10-22 22:07:12 [INFO] Starting minecraft server version 1.3.1
2012-10-22 22:07:12 [INFO] Loading properties
2012-10-22 22:07:12 [INFO] Default game type: SURVIVAL
2012-10-22 22:07:12 [INFO] Generating keypair
2012-10-22 22:07:13 [INFO] Starting Minecraft server on 93.91.250.110:37076
2012-10-22 22:07:13 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2012-10-22 22:07:13 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2012-10-22 22:07:13 [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.
2012-10-22 22:07:13 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2012-10-22 22:07:13 [INFO] This server is running CraftBukkit version git-Bukkit-1.3.1-R1.0-b2320jnks (MC: 1.3.1) (Implementing API version 1.3.1-R1.0)
2012-10-22 22:07:13 [WARNING] ----- Bukkit Auto Updater -----
2012-10-22 22:07:13 [WARNING] Your version of CraftBukkit is out of date. Version 1.3.2-R2.0 (build #2396) was released on Wed Oct 17 11:36:23 CEST 2012.
2012-10-22 22:07:13 [WARNING] Details: /downloads/craftbukkit/view/01460_1.3.2-R2.0/
2012-10-22 22:07:13 [WARNING] Download: /downloads/craftbukkit/get/01460_1.3.2-R2.0/craftbukkit.jar
2012-10-22 22:07:13 [WARNING] ----- ------------------- -----
2012-10-22 22:07:13 [SEVERE] Could not load 'plugins/NoLaggTNT.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: BKCommonLib
   at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:195)
   at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:222)
   at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:198)
   at net.minecraft.server.ServerConfigurationManagerAbstract.<init>(ServerConfigurationManagerAbstract.java:50)
   at net.minecraft.server.ServerConfigurationManager.<init>(SourceFile:11)
   at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:105)
   at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
   at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
2012-10-22 22:07:13 [INFO] Starting FakaHedaMinequery server on 93.91.250.110:38076
2012-10-22 22:07:13 [INFO] [PermissionsEx] sql backend registered!
2012-10-22 22:07:13 [INFO] [PermissionsEx] file backend registered!
2012-10-22 22:07:13 [INFO] [PermissionsEx] PermissionEx plugin initialized.
2012-10-22 22:07:13 [SEVERE] Could not load 'plugins/NoLaggExamine.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: BKCommonLib
   at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:195)
   at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:222)
   at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:198)
   at net.minecraft.server.ServerConfigurationManagerAbstract.<init>(ServerConfigurationManagerAbstract.java:50)
   at net.minecraft.server.ServerConfigurationManager.<init>(SourceFile:11)
   at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:105)
   at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
   at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
2012-10-22 22:07:14 [INFO] [LagMeter] Loading LagMeter v1.8
2012-10-22 22:07:14 [INFO] [Orebfuscator] Loading Orebfuscator v1.6.2
2012-10-22 22:07:14 [INFO] [InventoryExplorer] Loading InventoryExplorer v1
2012-10-22 22:07:14 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.1
2012-10-22 22:07:14 [INFO] [WorldEdit] Loading WorldEdit v5.3
2012-10-22 22:07:14 [INFO] [SpamGuard] Loading SpamGuard v1.0 BETA-1
2012-10-22 22:07:14 [INFO] [ColoredSigns] Loading ColoredSigns v1.2
2012-10-22 22:07:14 [INFO] [SafeExplosions] Loading SafeExplosions v1.2.1
2012-10-22 22:07:14 [INFO] [Vault] Loading Vault v1.2.16-b184
2012-10-22 22:07:14 [INFO] [Multiverse-Core] Loading Multiverse-Core v2.4-b527
2012-10-22 22:07:14 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.2
2012-10-22 22:07:14 [INFO] [PermissionsEx] Initializing file backend
2012-10-22 22:07:14 [INFO] [bLift] Loading bLift v1.2.1
2012-10-22 22:07:14 [INFO] [LogBlock] Loading LogBlock v1.56
2012-10-22 22:07:14 [INFO] [LogBlock] [LogBlock] Connecting to gs_37076_1@jdbc:mysql://localhost:3306/gs_37076_1...
2012-10-22 22:07:14 [INFO] [UltraBan] Loading UltraBan v1.0.1
2012-10-22 22:07:14 [INFO] [Trampolin] Loading Trampolin v0.6
2012-10-22 22:07:14 [INFO] [WorldGuard] Loading WorldGuard v5.5.3
2012-10-22 22:07:14 [INFO] [Jail] Loading Jail v2.1.3
2012-10-22 22:07:14 [INFO] [dynmap] Loading dynmap v0.34.1-983
2012-10-22 22:07:14 [INFO] [AutoMessage] Loading AutoMessage v1.5
2012-10-22 22:07:14 [INFO] [iConomy] Loading iConomy v7.0
2012-10-22 22:07:14 [INFO] [AuthMe] Loading AuthMe v2.6.5
2012-10-22 22:07:14 [INFO] [DisguiseCraft] Loading DisguiseCraft v3.2
2012-10-22 22:07:14 [INFO] [Turnstile] Loading Turnstile v2.5.1
2012-10-22 22:07:14 [INFO] [DailyBonus] Loading DailyBonus v2.6
2012-10-22 22:07:14 [INFO] [Modifyworld] Loading Modifyworld v1.19
2012-10-22 22:07:14 [INFO] [FalseBookCore] Loading FalseBookCore v0.93.1alpha
2012-10-22 22:07:14 [INFO] [MobArena] Loading MobArena v0.94.4.52
2012-10-22 22:07:14 [INFO] [WeatherMan] Loading WeatherMan v0.4.3
2012-10-22 22:07:14 [INFO] [FalseBookCart] Loading FalseBookCart v0.93.1alpha
2012-10-22 22:07:14 [INFO] [Essentials] Loading Essentials v2.9.1
2012-10-22 22:07:14 [INFO] [Citizens] Loading Citizens v1.2.1
2012-10-22 22:07:14 [INFO] [Jobs] Loading Jobs v2.7.3
2012-10-22 22:07:14 [INFO] [EssentialsProtect] Loading EssentialsProtect v2.9.1
2012-10-22 22:07:14 [INFO] MLog clients using java 1.4+ standard logging.
2012-10-22 22:07:14 [INFO] [FalseBookChat] Loading FalseBookChat v0.93.1alpha
2012-10-22 22:07:14 [INFO] [FalseBookBlock] Loading FalseBookBlock v0.93.1alpha
2012-10-22 22:07:14 [INFO] [EssentialsSpawn] Loading EssentialsSpawn v2.9.1
2012-10-22 22:07:14 [INFO] [CreativeGates] Loading CreativeGates v1.3.5
2012-10-22 22:07:14 [INFO] [LWC] Loading LWC v4.3.0 (b736-git-1b1150b1) (August 08, 2012)
2012-10-22 22:07:14 [INFO] [FalseBookIC] Loading FalseBookIC v0.93.1alpha
2012-10-22 22:07:14 [INFO] [ChestShop] Loading ChestShop v3.42
2012-10-22 22:07:14 [INFO] [EssentialsChat] Loading EssentialsChat v2.9.1
2012-10-22 22:07:14 [INFO] [FalseBookExtra] Loading FalseBookExtra v0.93.1alpha
2012-10-22 22:07:14 [INFO] [Residence] Loading Residence v2.5.6
2012-10-22 22:07:14 [INFO] [ResidenceSigns] Loading ResidenceSigns v1.3
2012-10-22 22:07:14 [INFO] [Orebfuscator] Enabling Orebfuscator v1.6.2
2012-10-22 22:07:14 [INFO] [OFC] Version 1.6.2 enabled!
2012-10-22 22:07:14 [INFO] [Vault] Enabling Vault v1.2.16-b184
2012-10-22 22:07:14 [INFO] [Vault][Economy] Essentials Economy found: Waiting
2012-10-22 22:07:14 [SEVERE] iConomy6 - If you are using Flatfile storage be aware that iCo6 has a CRITICAL bug which can wipe ALL iconomy data.
2012-10-22 22:07:14 [SEVERE] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
2012-10-22 22:07:14 [SEVERE] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
2012-10-22 22:07:14 [INFO] [Vault][Economy] iConomy 6 found: Waiting
2012-10-22 22:07:14 [INFO] [Vault][Permission] PermissionsEx found: Waiting
2012-10-22 22:07:14 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
2012-10-22 22:07:14 [INFO] [Vault][Chat] PermissionsEx found: Waiting
2012-10-22 22:07:14 [INFO] [Vault] Enabled Version 1.2.16-b184
2012-10-22 22:07:14 [INFO] [LWC] Enabling LWC v4.3.0 (b736-git-1b1150b1) (August 08, 2012)
2012-10-22 22:07:14 [INFO] [LWC] Loaded 209 locale strings (0 overrides)
2012-10-22 22:07:14 [INFO] [LWC] Permissions API: §4VaultPermissions
2012-10-22 22:07:14 [INFO] [LWC] Currency API: §4VaultCurrency
2012-10-22 22:07:14 [INFO] [LWC] Connecting to SQLite
2012-10-22 22:07:14 [INFO] [LWC] Performing any necessary database updates
2012-10-22 22:07:14 [INFO] [LWC] Using database: Native
2012-10-22 22:07:14 [INFO] [LWC] Precached 10000 protections
2012-10-22 22:07:14 [INFO] [LWC] Enabled plugin support for MobArena
2012-10-22 22:07:14 [INFO] Preparing level "world"
2012-10-22 22:07:15 [INFO] Preparing start region for level 0 (Seed: -3057931372401601879)
2012-10-22 22:07:15 [INFO] Preparing start region for level 1 (Seed: -8839476108376295679)
2012-10-22 22:07:15 [INFO] Preparing start region for level 2 (Seed: -8839476108376295679)
2012-10-22 22:07:15 [INFO] [LagMeter] Enabling LagMeter v1.8
2012-10-22 22:07:15 [INFO] [LagMeter 1.8] Enabled!  Polling every 40 server ticks.  Logging to /hlserver/37076/plugins/LagMeter/lag.log
2012-10-22 22:07:15 [INFO] [InventoryExplorer] Enabling InventoryExplorer v1
2012-10-22 22:07:15 [INFO] [InventoryExplorer] Enabled
2012-10-22 22:07:15 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.1
2012-10-22 22:07:15 [INFO] [WorldEdit] Enabling WorldEdit v5.3
2012-10-22 22:07:15 [INFO] WEPIF: Using the Bukkit Permissions API.
2012-10-22 22:07:15 [INFO] [SpamGuard] Enabling SpamGuard v1.0 BETA-1
2012-10-22 22:07:15 [INFO] [SpamGuard] 11 bans loaded.
2012-10-22 22:07:15 [INFO] SpamGuard version 1.0 BETA-1 is now enabled.
2012-10-22 22:07:16 [INFO] [SpamGuard] An update is available!
2012-10-22 22:07:17 [INFO] Download: http://bit.ly/Rjr5Yg
2012-10-22 22:07:17 [INFO] [ColoredSigns] Enabling ColoredSigns v1.2
2012-10-22 22:07:17 [INFO] [SafeExplosions] Enabling SafeExplosions v1.2.1
2012-10-22 22:07:17 [INFO] [SafeExplosions] Listening to PermissionsEX.
2012-10-22 22:07:17 [INFO] [SafeExplosions v1.2.1] Enabled.
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
2012-10-22 22:07:17 [INFO] [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
2012-10-22 22:07:17 [INFO] [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: -3057931372401601879
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: -8839476108376295679
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: -8839476108376295679
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Loading World & Settings - 'TezebniSvet' - Env: NORMAL - Type: NORMAL & seed: 7889322260411574641
2012-10-22 22:07:17 [INFO] Preparing start region for level 3 (Seed: 7889322260411574641)
2012-10-22 22:07:17 [INFO] [Multiverse-Core] Loading World & Settings - 'Svet-PVP' - Env: NORMAL - Type: NORMAL & seed: -8249492827890234376
2012-10-22 22:07:17 [INFO] Preparing start region for level 4 (Seed: -8249492827890234376)
2012-10-22 22:07:18 [INFO] [Multiverse-Core] 5 - World(s) loaded.
2012-10-22 22:07:18 [INFO] [Multiverse-Core] Loading anchor:  'Svet-PVP'...
2012-10-22 22:07:18 [INFO] [Multiverse-Core] Loading anchor:  'tp'...
2012-10-22 22:07:18 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.2
2012-10-22 22:07:18 [INFO] [PermissionsEx] Superperms support enabled.
2012-10-22 22:07:18 [INFO] [PermissionsEx] v1.19.2 enabled
2012-10-22 22:07:18 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2012-10-22 22:07:18 [INFO] [Vault][Permission] PermissionsEx hooked.
2012-10-22 22:07:18 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
2012-10-22 22:07:18 [INFO] [bLift] Enabling bLift v1.2.1
2012-10-22 22:07:18 [INFO] bLift version 1.2.1 is enabled!
2012-10-22 22:07:18 [INFO] [LogBlock] Enabling LogBlock v1.56
2012-10-22 22:07:18 [INFO] [LogBlock] [LogBlock] Scheduled consumer with bukkit scheduler.
2012-10-22 22:07:18 [INFO] [UltraBan] Enabling UltraBan v1.0.1
2012-10-22 22:07:18 [INFO] [UltraBan] Configuration: config.yml Loaded!
2012-10-22 22:07:18 [INFO] [UltraBan] Initialized db connection
2012-10-22 22:07:18 [INFO] [UltraBan] version 1.0.1 has been initialized!
2012-10-22 22:07:18 [INFO] [Trampolin] Enabling Trampolin v0.6
2012-10-22 22:07:18 [INFO] [WorldGuard] Enabling WorldGuard v5.5.3
2012-10-22 22:07:18 [INFO] [WorldGuard] (world) TNT ignition is PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world) Lighters are PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world) Lava fire is blocked.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world) Fire spread is UNRESTRICTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] Loaded configuration for world 'world'
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_nether) TNT ignition is PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_nether) Lighters are PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_nether) Lava fire is blocked.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] Loaded configuration for world 'world_nether'
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_the_end) Lighters are PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_the_end) Lava fire is blocked.
2012-10-22 22:07:18 [INFO] [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] Loaded configuration for world 'world_the_end'
2012-10-22 22:07:18 [INFO] [WorldGuard] (TezebniSvet) TNT ignition is PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (TezebniSvet) Lighters are PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (TezebniSvet) Lava fire is blocked.
2012-10-22 22:07:18 [INFO] [WorldGuard] (TezebniSvet) Fire spread is UNRESTRICTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] Loaded configuration for world 'TezebniSvet'
2012-10-22 22:07:18 [INFO] [WorldGuard] (Svet-PVP) TNT ignition is PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (Svet-PVP) Lighters are PERMITTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] (Svet-PVP) Lava fire is blocked.
2012-10-22 22:07:18 [INFO] [WorldGuard] (Svet-PVP) Fire spread is UNRESTRICTED.
2012-10-22 22:07:18 [INFO] [WorldGuard] Loaded configuration for world 'Svet-PVP'
2012-10-22 22:07:18 [INFO] [WorldGuard] 0 regions loaded for 'world'
2012-10-22 22:07:18 [INFO] [WorldGuard] 0 regions loaded for 'world_nether'
2012-10-22 22:07:18 [INFO] [WorldGuard] 0 regions loaded for 'world_the_end'
2012-10-22 22:07:18 [INFO] [WorldGuard] 0 regions loaded for 'TezebniSvet'
2012-10-22 22:07:18 [INFO] [WorldGuard] 0 regions loaded for 'Svet-PVP'
2012-10-22 22:07:18 [INFO] [Jail] Enabling Jail v2.1.3
2012-10-22 22:07:18 [INFO] [Jail] Loaded 2 jail zones.
2012-10-22 22:07:18 [INFO] [Jail] Loaded 0 prisoners.
2012-10-22 22:07:18 [INFO] [Jail] Loaded 4 cells.
2012-10-22 22:07:18 [INFO] [Jail] Jail v2.1.3 loaded!
2012-10-22 22:07:18 [INFO] [dynmap] Enabling dynmap v0.34.1-983
2012-10-22 22:07:18 [INFO] [dynmap] Using Bukkit Permissions (superperms) for access control
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 19 shaders.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 82 perspectives.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 12 lightings.
2012-10-22 22:07:19 [INFO] [dynmap] Web server started on address 0.0.0.0:29076
2012-10-22 22:07:19 [INFO] [dynmap] version 0.34.1-983 is enabled - core version 0.34.1-139
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 3 maps of world 'world'.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 2 maps of world 'world_nether'.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 2 maps of world 'world_the_end'.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 3 maps of world 'TezebniSvet'.
2012-10-22 22:07:19 [INFO] [dynmap] Loaded 3 maps of world 'Svet-PVP'.
2012-10-22 22:07:19 [INFO] [dynmap] Enabled
2012-10-22 22:07:19 [INFO] [AutoMessage] Enabling AutoMessage v1.5
2012-10-22 22:07:19 [INFO] [AutoMessage] version [1.5] loaded
2012-10-22 22:07:19 [INFO] [iConomy] Enabling iConomy v7.0
2012-10-22 22:07:19 [SEVERE] Cannot load plugins/iConomy/Config.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning a quoted scalar
 in "<string>", line 186, column 17:
          Password: '
                    ^
found unexpected end of stream
 in "<string>", line 190, column 1:
   
    ^

   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 com.iCo6.Constants.load(Constants.java:138)
   at com.iCo6.iConomy.onEnable(iConomy.java:116)
   at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
   at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:365)
   at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381)
   at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:265)
   at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:247)
   at net.minecraft.server.MinecraftServer.i(MinecraftServer.java:296)
   at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:275)
   at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:225)
   at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:140)
   at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
   at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
Caused by: while scanning a quoted scalar
 in "<string>", line 186, column 17:
          Password: '
                    ^
found unexpected end of stream
 in "<string>", line 190, column 1:
   
    ^

   at org.yaml.snakeyaml.scanner.ScannerImpl.scanFlowScalarSpaces(ScannerImpl.java:1532)
   at org.yaml.snakeyaml.scanner.ScannerImpl.scanFlowScalar(ScannerImpl.java:1464)
   at org.yaml.snakeyaml.scanner.ScannerImpl.fetchFlowScalar(ScannerImpl.java:834)
   at org.yaml.snakeyaml.scanner.ScannerImpl.fetchSingle(ScannerImpl.java:819)
   at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:337)
   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.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)
   ... 16 more
2012-10-22 22:07:19 [INFO] [iConomy - April Fools] Enabled (10 ms)
2012-10-22 22:07:19 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2012-10-22 22:07:19 [INFO] [Vault][Economy] iConomy 6 hooked.
2012-10-22 22:07:19 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2012-10-22 22:07:19 [INFO] [AuthMe] Enabling AuthMe v2.6.5
2012-10-22 22:07:19 [INFO] [AuthMe] Loading Configuration File...
2012-10-22 22:07:19 [INFO] [AuthMe] Set Language: en
2012-10-22 22:07:19 [INFO] [AuthMe] Authme 2.6.5 enabled
2012-10-22 22:07:19 [INFO] [DisguiseCraft] Enabling DisguiseCraft v3.2
2012-10-22 22:07:19 [INFO] DisguiseCraft version 3.2 is enabled!
2012-10-22 22:07:19 [INFO] [Turnstile] Enabling Turnstile v2.5.1
2012-10-22 22:07:19 [INFO] Turnstile 2.5.1 is enabled!
2012-10-22 22:07:19 [INFO] [DailyBonus] Enabling DailyBonus v2.6
2012-10-22 22:07:19 [INFO] [Modifyworld] Enabling Modifyworld v1.19
2012-10-22 22:07:19 [WARNING] [Modifyworld] "Modifyworld v1.19" has registered a listener for org.bukkit.event.player.PlayerInventoryEvent on method "public void ru.tehkode.modifyworld.handlers.PlayerListener.onInventoryOpen(org.bukkit.event.player.PlayerInventoryEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [t3hk0d3].
2012-10-22 22:07:19 [INFO] [Modifyworld] Modifyworld enabled!
2012-10-22 22:07:19 [INFO] [FalseBookCore] Enabling FalseBookCore v0.93.1alpha
2012-10-22 22:07:19 [INFO] [ FalseBook Core ] using Vault for Permissions!
2012-10-22 22:07:19 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo enabled!
2012-10-22 22:07:19 [INFO] [MobArena] Enabling MobArena v0.94.4.52
2012-10-22 22:07:20 [INFO] [MobArena] v0.94.4.52 enabled.
2012-10-22 22:07:20 [INFO] [WeatherMan] Enabling WeatherMan v0.4.3
2012-10-22 22:07:20 [INFO] WeatherMan v0.4.3 is outdated! Recommended version is v0.4.5
2012-10-22 22:07:20 [INFO] http://dev.bukkit.org/server-mods/weatherman/
2012-10-22 22:07:20 [INFO] [FalseBookCart] Enabling FalseBookCart v0.93.1alpha
2012-10-22 22:07:20 [INFO] 57 locked storagecarts loaded.
2012-10-22 22:07:20 [INFO] [ FalseBook Cart ] FalseBookCart v0.93.1alpha by GeMo enabled
2012-10-22 22:07:20 [INFO] [Essentials] Enabling Essentials v2.9.1
2012-10-22 22:07:20 [INFO] [Vault][Economy] Essentials Economy hooked.
2012-10-22 22:07:20 [INFO] Essentials: Using PermissionsEx based permissions.
2012-10-22 22:07:20 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 6 version: 1.2.16-b184)
2012-10-22 22:07:20 [INFO] [Citizens] Enabling Citizens v1.2.1
2012-10-22 22:07:20 [INFO] [Citizens] No NPC types loaded.
2012-10-22 22:07:21 [INFO] [Citizens] version [1.2.1] loaded.
2012-10-22 22:07:21 [INFO] [Jobs] Enabling Jobs v2.7.3
2012-10-22 22:07:21 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
2012-10-22 22:07:21 [INFO] [Jobs] Plugin has been enabled succesfully.
2012-10-22 22:07:21 [INFO] [EssentialsProtect] Enabling EssentialsProtect v2.9.1
2012-10-22 22:07:21 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
2012-10-22 22:07:21 [INFO] [FalseBookChat] Enabling FalseBookChat v0.93.1alpha
2012-10-22 22:07:21 [INFO] [ FalseBook Chat ] FalseBookChat v0.93.1alpha by GeMo enabled
2012-10-22 22:07:21 [INFO] [FalseBookBlock] Enabling FalseBookBlock v0.93.1alpha
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] 0 Doors successfully loaded.
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] 0 Areas loaded.
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] 0 Bridges successfully loaded.
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] No Cauldrons loaded!
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] No Books loaded!
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] 0 protected gateblocks successfully loaded.
2012-10-22 22:07:21 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo enabled
2012-10-22 22:07:21 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.9.1
2012-10-22 22:07:21 [INFO] [CreativeGates] Enabling CreativeGates v1.3.5
2012-10-22 22:07:21 [INFO] [CreativeGates v1.3.5] === ENABLE START ===
2012-10-22 22:07:21 [INFO] [CreativeGates v1.3.5] === ENABLE DONE (Took 37ms) ===
2012-10-22 22:07:21 [INFO] [FalseBookIC] Enabling FalseBookIC v0.93.1alpha
2012-10-22 22:07:21 [INFO] [ FalseBook IC ] Error while reading file: plugins/FalseBook/FalseBookIC.properties
2012-10-22 22:07:21 [INFO] [ FalseBook IC ] FalseBookIC v0.93.1alpha by GeMo enabled
2012-10-22 22:07:21 [INFO] [ChestShop] Enabling ChestShop v3.42
2012-10-22 22:07:21 [INFO] [ChestShop] LWC version 4.3.0 (b736-git-1b1150b1) (August 08, 2012) loaded.
2012-10-22 22:07:21 [INFO] [ChestShop] Vault loaded - using iConomy 6
2012-10-22 22:07:21 [INFO] [EssentialsChat] Enabling EssentialsChat v2.9.1
2012-10-22 22:07:21 [INFO] [FalseBookExtra] Enabling FalseBookExtra v0.93.1alpha
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] 48 protected blocks in 'world' loaded.
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] 383 protected blocks in 'world_nether' loaded.
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_the_end' loaded.
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] 15 protected blocks in 'TezebniSvet' loaded.
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Svet-PVP' loaded.
2012-10-22 22:07:22 [INFO] [ FalseBook Extra ] FalseBookExtra v0.93.1alpha by GeMo enabled
2012-10-22 22:07:22 [INFO] [Residence] Enabling Residence v2.5.6
2012-10-22 22:07:22 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
2012-10-22 22:07:22 [INFO] [Residence] Scanning for economy systems...
2012-10-22 22:07:22 [INFO] [Residence] Found Vault using economy system: iConomy 6
2012-10-22 22:07:22 [INFO] [Residence] Enabled! Version 2.5.6 by bekvon
2012-10-22 22:07:22 [INFO] [ResidenceSigns] Enabling ResidenceSigns v1.3
2012-10-22 22:07:22 [INFO] [ResidenceSigns] Config.yml Up To Date.
2012-10-22 22:07:22 [INFO] [ResidenceSigns] Successfully Enabled.
2012-10-22 22:07:22 [INFO] Server permissions file permissions.yml is empty, ignoring it
2012-10-22 22:07:22 [INFO] Done (7.275s)! For help, type "help" or "?"
2012-10-22 22:07:22 [INFO] Starting GS4 status listener
2012-10-22 22:07:22 [INFO] Starting remote control listener
2012-10-22 22:07:22 [INFO] Query running on 93.91.250.110:37076
2012-10-22 22:07:22 [INFO] RCON running on 93.91.250.110:36076
2012-10-22 22:07:22 [INFO] [Citizens] Loaded 197 NPCs.
2012-10-22 22:07:23 [INFO] [ FalseBook IC ] Loaded selftriggered ICs: 0 done
2012-10-22 22:07:23 [INFO] [ FalseBook IC ] Failed selftriggered ICs: 0 failed
93.91.250.110:37076

Uživatelský avatar
Sejsel
Příspěvky: 4131
Registrován: 19 čer 2011, 09:43
Reputation: 0
Bydliště: /home/sejsel/
Kontaktovat uživatele:

Re: Iconomy

#9 Příspěvekod Sejsel » 22 říj 2012, 22:10

Hoď po nejentovi kamenem, nenašel chybu.

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: 'mysql'
   
    # 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/gs_37076_1'

    # Login details for binary databases
    Username: 'gs_37076_1'
    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
01101110011101010110001001110111

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: Iconomy

#10 Příspěvekod nejento » 22 říj 2012, 22:20

Házet může, ale stejně jsem našel jinou :D
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/


Zpět na „Minecraft, Tekkit“

Kdo je online

Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 44 hostů