Stránka 1 z 1

Databáze

Napsal: 21 lis 2014, 12:00
od Kesuordep
Server: 93.91.250.128:27213

Dobrý den,

Neví někdo proč se mi nechce udělat tabulka "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://hutch.fakaheda.eu:3306/169832_mysql_db'

    # Login details for binary databases
    Username: '169832_mysql_db'
    Password: 'o.O Heslo'

    ##############################################################
    # !!! 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: 'hutch.fakaheda.eu'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: '169832_mysql_db'
      Password: 'o.O Heslo'

      # Unused ATM.
      All: true


Log po resetu:

Spoiler: zobrazit

Kód: Vybrat vše

FakaHeda] Successfully authorized 93.185.2.242!
> [10:56:05 INFO]: Mushroom Growth Modifier: 100%
> [10:56:05 INFO]: Pumpkin Growth Modifier: 100%
> [10:56:05 INFO]: Sapling Growth Modifier: 100%
> [10:56:05 INFO]: Wheat Growth Modifier: 100%
> [10:56:05 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
> [10:56:05 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
> [10:56:05 INFO]: Alternative Hopper Ticking: false
> [10:56:05 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
> [10:56:05 INFO]: Random Lighting Updates: false
> [10:56:05 INFO]: Structure Info Saving: true
> [10:56:05 INFO]: Sending up to 5 chunks per packet
> [10:56:05 INFO]: Max Entity Collisions: 8
> [10:56:05 INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
> [10:56:05 INFO]: Anti X-Ray: true
> [10:56:05 INFO]: Engine Mode: 1
> [10:56:05 INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
> [10:56:05 INFO]: Replace Blocks: [1, 5]
> [10:56:05 INFO]: Mob Spawn Range: 4
> [10:56:05 INFO]: View Distance: 7
> [10:56:05 INFO]: Chunks to Grow per Tick: 650
> [10:56:05 INFO]: Clear tick list: false
> [10:56:05 INFO]: Experience Merge Radius: 3.0
> [10:56:05 INFO]: Item Despawn Rate: 6000
> [10:56:05 INFO]: Item Merge Radius: 2.5
> [10:56:05 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
> [10:56:05 INFO]: Arrow Despawn Rate: 1200
> [10:56:05 INFO]: -------- World Settings For [world_nether] --------
> [10:56:05 INFO]: Zombie Aggressive Towards Villager: true
> [10:56:05 INFO]: Nerfing mobs spawned from spawners: false
> [10:56:05 INFO]: Cactus Growth Modifier: 100%
> [10:56:05 INFO]: Cane Growth Modifier: 100%
> [10:56:05 INFO]: Melon Growth Modifier: 100%
> [10:56:05 INFO]: Mushroom Growth Modifier: 100%
> [10:56:05 INFO]: Pumpkin Growth Modifier: 100%
> [10:56:05 INFO]: Sapling Growth Modifier: 100%
> [10:56:05 INFO]: Wheat Growth Modifier: 100%
> [10:56:05 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
> [10:56:05 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
> [10:56:05 INFO]: Alternative Hopper Ticking: false
> [10:56:05 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
> [10:56:05 INFO]: Random Lighting Updates: false
> [10:56:05 INFO]: Structure Info Saving: true
> [10:56:05 INFO]: Sending up to 5 chunks per packet
> [10:56:05 INFO]: Max Entity Collisions: 8
> [10:56:05 INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
> [10:56:05 INFO]: Anti X-Ray: true
> [10:56:05 INFO]: Engine Mode: 1
> [10:56:05 INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
> [10:56:05 INFO]: Replace Blocks: [1, 5]
> [10:56:05 INFO]: Mob Spawn Range: 4
> [10:56:05 INFO]: View Distance: 7
> [10:56:05 INFO]: Chunks to Grow per Tick: 650
> [10:56:05 INFO]: Clear tick list: false
> [10:56:05 INFO]: Experience Merge Radius: 3.0
> [10:56:05 INFO]: Item Despawn Rate: 6000
> [10:56:05 INFO]: Item Merge Radius: 2.5
> [10:56:05 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
> [10:56:05 INFO]: Arrow Despawn Rate: 1200
> [10:56:05 INFO]: -------- World Settings For [world_the_end] --------
> [10:56:05 INFO]: Zombie Aggressive Towards Villager: true
> [10:56:05 INFO]: Nerfing mobs spawned from spawners: false
> [10:56:05 INFO]: Cactus Growth Modifier: 100%
> [10:56:05 INFO]: Cane Growth Modifier: 100%
> [10:56:05 INFO]: Melon Growth Modifier: 100%
> [10:56:05 INFO]: Mushroom Growth Modifier: 100%
> [10:56:05 INFO]: Pumpkin Growth Modifier: 100%
> [10:56:05 INFO]: Sapling Growth Modifier: 100%
> [10:56:05 INFO]: Wheat Growth Modifier: 100%
> [10:56:05 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
> [10:56:05 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
> [10:56:05 INFO]: Alternative Hopper Ticking: false
> [10:56:05 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
> [10:56:05 INFO]: Random Lighting Updates: false
> [10:56:05 INFO]: Structure Info Saving: true
> [10:56:05 INFO]: Sending up to 5 chunks per packet
> [10:56:05 INFO]: Max Entity Collisions: 8
> [10:56:05 INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
> [10:56:05 INFO]: Anti X-Ray: true
> [10:56:05 INFO]: Engine Mode: 1
> [10:56:05 INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
> [10:56:05 INFO]: Replace Blocks: [1, 5]
> [10:56:05 INFO]: Mob Spawn Range: 4
> [10:56:05 INFO]: View Distance: 7
> [10:56:05 INFO]: Chunks to Grow per Tick: 650
> [10:56:05 INFO]: Clear tick list: false
> [10:56:05 INFO]: Experience Merge Radius: 3.0
> [10:56:05 INFO]: Item Despawn Rate: 6000
> [10:56:05 INFO]: Item Merge Radius: 2.5
> [10:56:05 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
> [10:56:05 INFO]: Arrow Despawn Rate: 1200
> [10:56:05 INFO]: Preparing start region for level 0 (Seed: -8317387866396111902)
> [10:56:06 INFO]: Preparing start region for level 1 (Seed: -8317387866396111902)
> [10:56:06 INFO]: Preparing start region for level 2 (Seed: -8317387866396111902)
> [10:56:07 INFO]: [AutoMessage] Enabling AutoMessage v2.5.2
> [10:56:07 INFO]: [Spawn-TP] Enabling Spawn-TP v0.5
> [10:56:07 INFO]: [WorldEdit] Enabling WorldEdit v5.6.3
> [10:56:07 INFO]: WEPIF: Using the Bukkit Permissions API.
> [10:56:07 INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.3
> [10:56:07 INFO]: Starting FakaHedaMinequery server on 93.91.250.128:28213
> [10:56:07 INFO]: [iConomy] Enabling iConomy v7.0
> [10:56:07 INFO]: [iConomy - April Fools] Enabled (11 ms)
> [10:56:07 INFO]: [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
> [10:56:07 INFO]: [TeleportSuite] Detected iConomy v7.0; attempting to hook...
> [10:56:07 INFO]: [Vault][Economy] iConomy 7 hooked.
> [10:56:07 INFO]: [iConomy - April Fools] Purged accounts with default balance.
> [10:56:07 INFO]: [ClearDroppedItems] Enabling ClearDroppedItems v1.3
> [10:56:07 INFO]: [ClearDroppedItems] CONSOLE VISUAL OUTPUT ENABLED
> [10:56:07 INFO]: [csm] Enabling CustomServerMessages v5.1
> [10:56:07 INFO]: [CSM] Enabling Custom Server Messages...
> [10:56:07 INFO]: [Ultrabans] Enabling Ultrabans v3.1.0
> [10:56:08 INFO]: [Ultrabans] No Updates found on dev.bukkit.org.
> [10:56:08 INFO]: [Ultrabans] Loaded. 0 secs.
> [10:56:08 INFO]: [PermissionsEx] Enabling PermissionsEx v1.22.6
> [10:56:08 INFO]: [PermissionsEx] Initializing file backend
> [10:56:08 INFO]: [PermissionsEx] Permissions file successfully reloaded
> [10:56:08 INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
> [10:56:08 INFO]: [Vault][Permission] PermissionsEx hooked.
> [10:56:08 INFO]: [Vault][Chat] PermissionsEx_Chat hooked.
> [10:56:08 INFO]: [LogBlock] Enabling LogBlock v1.80
> [10:56:08 INFO]: yCommand] Enabling MyCommand v5.1.3
> [10:56:08 INFO]: =-=-=-=-=-=-=-=-=-=-=-MyCommand-=-=-=-=-=-=-=-=-=-=-=-=
> [10:56:08 INFO]: = Vault : Ok. Hooked MyCommand Vault 1.4.1-b436
> [10:56:08 INFO]: = Spout : Not detectedBarAPI : Not detected
> [10:56:08 INFO]: = Config : Ok
> [10:56:08 INFO]: = Custom commands loaded : 5
> [10:56:08 INFO]: = Version: 5.1.3
> [10:56:08 INFO]: = Author : MRI a.k.a Ivanpro
> [10:56:08 INFO]: = Status : Active
> [10:56:08 INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> [10:56:08 INFO]: [SimpleReserve] Enabling SimpleReserve v0.6.0
> [10:56:08 INFO]: [SimpleReserve] SimpleReserve version 0.6.0 enabled!
> [10:56:08 INFO]: [WorldGuard] Enabling WorldGuard v5.9
> [10:56:08 INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world) Lighters are PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world) Lava fire is blocked.
> [10:56:08 INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
> [10:56:08 INFO]: [WorldGuard] Loaded configuration for world 'world'
> [10:56:08 INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
> [10:56:08 INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
> [10:56:08 INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
> [10:56:08 INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
> [10:56:08 INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
> [10:56:08 INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
> [10:56:08 INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
> [10:56:08 INFO]: [CSM] No update available.
> [10:56:08 INFO]: [WorldGuard] 0 regions loaded for 'world'
> [10:56:08 INFO]: [WorldGuard] 0 regions loaded for 'world_nether'
> [10:56:08 INFO]: [WorldGuard] 0 regions loaded for 'world_the_end'
> [10:56:08 INFO]: [Residence] Enabling Residence v2.6.6.6
> [10:56:08 INFO]: [Residence] Found Vault using permissions plugin:PermissionsEx
> [10:56:08 INFO]: [Residence] Scanning for economy systems...
> [10:56:08 INFO]: [Residence] Found Vault using economy system: iConomy 7
> [10:56:08 INFO]: [Residence] Found WorldEdit
> [10:56:08 INFO]: [Residence] Enabled! Version 2.6.6.6 by bekvon
> [10:56:08 INFO]: [Jobs] Enabling Jobs v2.12.0
> [10:56:11 INFO]: [Jobs] Started database save task
> [10:56:11 INFO]: [Jobs] Started buffered payment thread
> [10:56:11 INFO]: [Jobs] Plugin has been enabled succesfully.
> [10:56:11 INFO]: [ChatEx] Enabling ChatEx v1.1.1
> [10:56:11 INFO]: [ChatEx] Loading updater by TheJeterLP. Project id: 65863
> [10:56:11 INFO]: [ChatEx] Loading updater-config...
> [10:56:11 INFO]: [ChatEx] Done!
> [10:56:11 INFO]: [ChatEx] Updatechecker is enabled.
> [10:56:11 INFO]: [ChatEx] Successfully hooked into: PermissionsEx
> [10:56:11 INFO]: [ChatEx] Listener registered with Priority: LOWEST
> [10:56:11 INFO]: [ChatEx] is now enabled!
> [10:56:11 INFO]: [ChestShop] Enabling ChestShop v3.7.17
> [10:56:11 INFO]: [ChestShop] LWC version 4.4.0 (b881) (July 11, 2013) loaded.
> [10:56:11 INFO]: [ChestShop] Residence version 2.6.6.6 loaded.
> [10:56:11 INFO]: [ChestShop] Vault loaded! Found an economy plugin!
> [10:56:11 INFO]: [AuthMe] Enabling AuthMe v3.4
> [10:56:11 INFO]: [AuthMe] Loading Configuration File...
> [10:56:11 INFO]: [AuthMe] Set Language: cz
> [10:56:11 INFO]: [AuthMe] Vault plugin detected, hook with PermissionsEx system
> [10:56:11 INFO]: [AuthMe] MySQL driver loaded
> [10:56:11 INFO]: [AuthMe] Connection pool ready
> [10:56:11 INFO]: [AuthMe] LICENSE : This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com
> [10:56:11 INFO]: [AuthMe] Authme 3.4 enabled
> [10:56:11 INFO]: Server permissions file permissions.yml is empty, ignoring it
> [10:56:11 INFO]: Done (6.077s)! For help, type "help" or "?"
> [10:56:11 INFO]: Starting GS4 status listener
> [10:56:11 INFO]: Starting remote control listener
> [10:56:11 INFO]: Query running on 93.91.250.128:27213
> [10:56:11 WARN]: No rcon password set in '/hlserver/27213/server.properties', rcon disabled!
> [10:56:11 INFO]: [Jobs] [Jobs] Successfully linked with Vault.
> [10:56:12 INFO]: [Vault] Checking for Updates:

Re: Databáze

Napsal: 21 lis 2014, 13:04
od Smexhy

Kód: Vybrat vše

    Type: 'minidb'
na

Kód: Vybrat vše

    Type: 'mysql'

Re: Databáze

Napsal: 21 lis 2014, 13:37
od Kesuordep
Díky, jede! K+