IConomy + Jobs Mysql Problem

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
TFZMistery
Příspěvky: 20
Registrován: 04 kvě 2012, 12:08
Reputation: 0

IConomy + Jobs Mysql Problem

#1 Příspěvekod TFZMistery » 26 zář 2013, 20:22

93.91.250.118:27661

Dobrý den, Mám problém na serveru když propojím IConomy z mysql tak mi přestane fungovat plugin Jobs (Nepřipisuje peníze) a já nevím proč.
Přidávám cenzurované configy :D

JOBS:

Kód: Vybrat vše

#   The general configuration for the jobs plugin mostly includes how often the plugin
# saves user data (when the user is in the game), the storage method, whether
# to broadcast a message to the server when a user goes up a skill level.
#   It also allows admins to set the maximum number of jobs a player can have at
# any one time.

# Default language.  Use your languages two digit ISO 639-1 code, and optionally followed by the ISO-3166-1 country code.
# Example: en, en_US
locale-language: en
# storage method, can be MySQL, sqlite, h2
storage-method: mysql
# Requires Mysql.
mysql-username: 132047_mysql_db
mysql-password: '*CENSORED*'
mysql-url: jdbc:mysql://localhost:3306/132047_mysql_db
mysql-table-prefix: '*CENSORED*'
# How often in minutes you want it to save.  This must be a non-zero number
save-period: 10
# Should player data be saved on disconnect?
# Player data is always periodically auto-saved and autosaved during a clean shutdown.
# Only enable this if you have a multi-server setup, or have a really good reason for enabling this.
# Turning this on will decrease database performance.
save-on-disconnect: false
# Do all players get a message when somone goes up a skill level?
broadcast-on-skill-up: false
# Do all players get a message when somone goes up a level?
broadcast-on-level-up: false
# Maximum number of jobs a player can join.
# Use 0 for no maximum
max-jobs: 3
# Hide jobs from player if they lack the permission to join the job
hide-jobs-without-permission: false
# option to allow payment to be made when killing mobs from a spawner
enable-pay-near-spawner: true
# option to allow payment to be made in creative mode
enable-pay-creative: false
# Adds the Jobs xp recieved to the player's Minecraft XP bar
add-xp-player: false
# Modifys chat to add chat titles.  If you're using a chat manager, you may add the tag {jobs} to your chat format and disable this.
modify-chat: false
# Changes how often, in seconds, players are paid out.  Default is 5 seconds.
# Setting this too low may cause tick lag.  Increase this to improve economy performance (at the cost of delays in payment)
economy-batch-delay: 5


IConomy:

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: 300.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/132047_mysql_db'

    # Login details for binary databases
    Username: '132047_mysql_db'
    Password: '*CENSORED*'

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

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

      # Unused ATM.
      All: true


S pozdravem TFZMistery
Naposledy upravil(a) TFZMistery dne 26 zář 2013, 22:05, celkem upraveno 1 x.

MaoS
Příspěvky: 43
Registrován: 24 zář 2013, 16:14
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#2 Příspěvekod MaoS » 26 zář 2013, 20:49

Jakú máš verziu?
Kdo ti pomohol odmeň ho karmou!
Obrázek

TFZMistery
Příspěvky: 20
Registrován: 04 kvě 2012, 12:08
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#3 Příspěvekod TFZMistery » 26 zář 2013, 20:59

MaoS píše:Jakú máš verziu?



1.6.2

Uživatelský avatar
zdenda204
Příspěvky: 3617
Věk: 36
Registrován: 23 kvě 2012, 21:38
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#4 Příspěvekod zdenda204 » 26 zář 2013, 21:14

Configy dávej mezi tagy [code][/code]
Cenzuruj jen hesla. Jména, tabulky a databáze nech prosimtě ve skutečném tvaru.
Přijímám zakázky na skripty/pluginy v PHP/Javě za malý poplatky! A kup mi sušenku :) Obrázek Obrázek
⇨Projekt Market⇦

TFZMistery
Příspěvky: 20
Registrován: 04 kvě 2012, 12:08
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#5 Příspěvekod TFZMistery » 26 zář 2013, 22:06

zdenda204 píše:Configy dávej mezi tagy [code][/code]
Cenzuruj jen hesla. Jména, tabulky a databáze nech prosimtě ve skutečném tvaru.


Opraveno

Uživatelský avatar
zdenda204
Příspěvky: 3617
Věk: 36
Registrován: 23 kvě 2012, 21:38
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#6 Příspěvekod zdenda204 » 26 zář 2013, 22:21

Tak ještě server.log při startu.
Přijímám zakázky na skripty/pluginy v PHP/Javě za malý poplatky! A kup mi sušenku :) Obrázek Obrázek
⇨Projekt Market⇦

TFZMistery
Příspěvky: 20
Registrován: 04 kvě 2012, 12:08
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#7 Příspěvekod TFZMistery » 26 zář 2013, 23:58

Kód: Vybrat vše

2013-09-26 23:57:42 [INFO] Starting minecraft server version 1.6.2
2013-09-26 23:57:42 [INFO] Loading properties
2013-09-26 23:57:42 [INFO] Default game type: SURVIVAL
2013-09-26 23:57:42 [INFO] Generating keypair
2013-09-26 23:57:43 [INFO] Starting Minecraft server on 93.91.250.118:27661
2013-09-26 23:57:43 [INFO] This server is running CraftBukkit version git-Bukkit-1.6.2-R1.0-b2879jnks (MC: 1.6.2) (Implementing API version 1.6.2-R1.0)
2013-09-26 23:57:43 [INFO] [PermissionsEx] sql backend registered!
2013-09-26 23:57:43 [INFO] [PermissionsEx] file backend registered!
2013-09-26 23:57:43 [INFO] [LagMeter] Loading LagMeter v1.9.0
2013-09-26 23:57:43 [INFO] [AutoMessage] Loading AutoMessage v2.3.5
2013-09-26 23:57:43 [INFO] [WorldEdit] Loading WorldEdit v5.5.8
2013-09-26 23:57:43 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.2
2013-09-26 23:57:43 [INFO] [iConomy] Loading iConomy v7.0
2013-09-26 23:57:43 [INFO] [MotdManager] Loading MotdManager v1.41-b20
2013-09-26 23:57:43 [INFO] [Vault] Loading Vault v1.2.27-b349
2013-09-26 23:57:43 [INFO] [ClearLag] Loading ClearLag v2.5.2
2013-09-26 23:57:43 [INFO] [PermissionsEx] Loading PermissionsEx v1.20.2
2013-09-26 23:57:43 [INFO] [PermissionsEx] Initializing file backend
2013-09-26 23:57:43 [INFO] Permissions file successfully reloaded
2013-09-26 23:57:43 [INFO] [Modifyworld] Loading Modifyworld v1.19.7
2013-09-26 23:57:43 [INFO] [LWC] Loading LWC v4.4.0 (b881) (July 11, 2013)
2013-09-26 23:57:43 [INFO] [MobArena] Loading MobArena v0.95.5
2013-09-26 23:57:43 [INFO] [Essentials] Loading Essentials vPre2.12.1.6
2013-09-26 23:57:43 [INFO] [Residence] Loading Residence v2.6.6.6
2013-09-26 23:57:43 [INFO] [UltrabansLite] Loading UltrabansLite v3.1.4
2013-09-26 23:57:43 [INFO] [Jobs] Loading Jobs v2.11.3
2013-09-26 23:57:43 [INFO] [ChatEx] Loading ChatEx v1.0.0
2013-09-26 23:57:43 [INFO] [EssentialsSpawn] Loading EssentialsSpawn vPre2.12.1.6
2013-09-26 23:57:43 [INFO] [ChestShop] Loading ChestShop v3.64
2013-09-26 23:57:43 [INFO] [ScoreboardStats] Loading ScoreboardStats v0.5.9
2013-09-26 23:57:43 [INFO] [AuthMe] Loading AuthMe v2.9.5
2013-09-26 23:57:43 [INFO] [CreativeControl] Loading CreativeControl v6.4
2013-09-26 23:57:43 [INFO] [Vault] Enabling Vault v1.2.27-b349
2013-09-26 23:57:43 [INFO] [Vault][Economy] Essentials Economy found: Waiting
2013-09-26 23:57:43 [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-09-26 23:57:43 [WARNING] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
2013-09-26 23:57:43 [WARNING] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
2013-09-26 23:57:43 [INFO] [Vault][Economy] iConomy 6 found: Waiting
2013-09-26 23:57:43 [INFO] [Vault][Permission] PermissionsEx found: Waiting
2013-09-26 23:57:43 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
2013-09-26 23:57:43 [INFO] [Vault][Chat] PermissionsEx found: Waiting
2013-09-26 23:57:43 [INFO] [Vault] Enabled Version 1.2.27-b349
2013-09-26 23:57:43 [INFO] [LWC] Enabling LWC v4.4.0 (b881) (July 11, 2013)
2013-09-26 23:57:44 [INFO] [LWC] Connecting to SQLite
2013-09-26 23:57:44 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2013-09-26 23:57:44 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2013-09-26 23:57:44 [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-09-26 23:57:44 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2013-09-26 23:57:44 [INFO] Preparing level "TFZMinecraft"
2013-09-26 23:57:44 [INFO] Preparing start region for level 0 (Seed: 3139151830382261631)
2013-09-26 23:57:45 [INFO] Preparing spawn area: 99%
2013-09-26 23:57:45 [INFO] Preparing start region for level 1 (Seed: 3139151830382261631)
2013-09-26 23:57:45 [INFO] Preparing start region for level 2 (Seed: 3139151830382261631)
2013-09-26 23:57:46 [INFO] [LagMeter] Enabling LagMeter v1.9.0
2013-09-26 23:57:46 [INFO] [LagMeter] Not using logs folder.
2013-09-26 23:57:46 [INFO] [LagMeter 1.9.0] Enabled!  Polling every 40 server ticks.  Logging to /hlserver/27661/plugins/LagMeter/lag.log
2013-09-26 23:57:46 [INFO] [AutoMessage] Enabling AutoMessage v2.3.5
2013-09-26 23:57:46 [INFO] [WorldEdit] Enabling WorldEdit v5.5.8
2013-09-26 23:57:46 [INFO] WEPIF: Using the Bukkit Permissions API.
2013-09-26 23:57:46 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.2
2013-09-26 23:57:46 [INFO] Starting FakaHedaMinequery server on 93.91.250.118:28661
2013-09-26 23:57:46 [INFO] [iConomy] Enabling iConomy v7.0
2013-09-26 23:57:46 [INFO] [iConomy - April Fools] Enabled (124 ms)
2013-09-26 23:57:46 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2013-09-26 23:57:46 [INFO] [Vault][Economy] iConomy 7 hooked.
2013-09-26 23:57:46 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2013-09-26 23:57:46 [INFO] [MotdManager] Enabling MotdManager v1.41-b20
2013-09-26 23:57:46 [INFO] [MotdManager] version 1.41-b20 is enabled!
2013-09-26 23:57:46 [INFO] [ClearLag] Enabling ClearLag v2.5.2
2013-09-26 23:57:46 [INFO] [ClearLag] Searching for updates..
2013-09-26 23:57:46 [INFO] [ClearLag] Clearlag has been enabled!
2013-09-26 23:57:46 [INFO] [PermissionsEx] Enabling PermissionsEx v1.20.2
2013-09-26 23:57:46 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2013-09-26 23:57:46 [INFO] [Vault][Permission] PermissionsEx hooked.
2013-09-26 23:57:46 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
2013-09-26 23:57:46 [INFO] [Modifyworld] Enabling Modifyworld v1.19.7
2013-09-26 23:57:46 [INFO] [Modifyworld] Modifyworld enabled!
2013-09-26 23:57:46 [INFO] [MobArena] Enabling MobArena v0.95.5
2013-09-26 23:57:46 [INFO] [MobArena] Loaded arena 'default'.
2013-09-26 23:57:46 [INFO] [MobArena] v0.95.5 enabled.
2013-09-26 23:57:46 [INFO] [Essentials] Enabling Essentials vPre2.12.1.6
2013-09-26 23:57:47 [INFO] [Vault][Economy] Essentials Economy hooked.
2013-09-26 23:57:47 [INFO] Essentials: Using PermissionsEx based permissions.
2013-09-26 23:57:47 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.27-b349)
2013-09-26 23:57:47 [INFO] [Residence] Enabling Residence v2.6.6.6
2013-09-26 23:57:47 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
2013-09-26 23:57:47 [INFO] [ClearLag] No updates found!
2013-09-26 23:57:47 [INFO] [Residence] Found WorldEdit
2013-09-26 23:57:47 [INFO] [Residence] Enabled! Version 2.6.6.6 by bekvon
2013-09-26 23:57:47 [INFO] [UltrabansLite] Enabling UltrabansLite v3.1.4
2013-09-26 23:57:48 [INFO] [UltrabansLite] Unable to connect to dev.bukkit.org.
2013-09-26 23:57:48 [INFO] [UltrabansLite] Loaded. 0 secs.
2013-09-26 23:57:48 [INFO] [Jobs] Enabling Jobs v2.11.3
2013-09-26 23:57:48 [INFO] [Jobs] Started database save task
2013-09-26 23:57:48 [INFO] [Jobs] Started buffered payment thread
2013-09-26 23:57:48 [INFO] [Jobs] Plugin has been enabled succesfully.
2013-09-26 23:57:48 [INFO] [ChatEx] Enabling ChatEx v1.0.0
2013-09-26 23:57:48 [INFO] [ChatEx] Successfully hooked into: PermissionsEx
2013-09-26 23:57:48 [INFO] [ChatEx] ChatManager enabled!
2013-09-26 23:57:48 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn vPre2.12.1.6
2013-09-26 23:57:48 [INFO] [ChestShop] Enabling ChestShop v3.64
2013-09-26 23:57:48 [INFO] [ChestShop] LWC version 4.4.0 (b881) (July 11, 2013) loaded.
2013-09-26 23:57:48 [INFO] [ChestShop] Residence version 2.6.6.6 loaded.
2013-09-26 23:57:48 [INFO] [ChestShop] Vault loaded! Found an economy plugin!
2013-09-26 23:57:48 [INFO] [ScoreboardStats] Enabling ScoreboardStats v0.5.9
2013-09-26 23:57:48 [INFO] DataSourcePool [ScoreboardStats] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[250]
2013-09-26 23:57:48 [INFO] DatabasePlatform name:ScoreboardStats platform:sqlite
2013-09-26 23:57:48 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
2013-09-26 23:57:48 [INFO] Entities enhanced[0] subclassed[1]
2013-09-26 23:57:48 [INFO] [AuthMe] Enabling AuthMe v2.9.5
2013-09-26 23:57:48 [INFO] [AuthMe] Loading Configuration File...
2013-09-26 23:57:48 [INFO] [AuthMe] Merge new Config Options if needed..
2013-09-26 23:57:48 [INFO] [AuthMe] Set Language: en
2013-09-26 23:57:48 [INFO] [AuthMe] Hook with Essentials plugin
2013-09-26 23:57:48 [INFO] [AuthMe] Hook with EssentialsSpawn plugin
2013-09-26 23:57:48 [INFO] [AuthMe] MySQL driver loaded
2013-09-26 23:57:48 [INFO] [AuthMe] Connection pool ready
2013-09-26 23:57:48 [INFO] [AuthMe] Successfully hook with ChestShop!
2013-09-26 23:57:48 [INFO] [AuthMe] Vault plugin detected, hook with PermissionsEx system
2013-09-26 23:57:48 [INFO] [AuthMe] Authme 2.9.5 enabled
2013-09-26 23:57:48 [INFO] [CreativeControl] Enabling CreativeControl v6.4
2013-09-26 23:57:48 [INFO] [UltraVIP] Initializing configurations...
2013-09-26 23:57:48 [INFO] [UltraVIP] Loading Modules...
2013-09-26 23:57:48 [INFO] [UltraVIP] Connecting to the MySQL database...
2013-09-26 23:57:48 [INFO] [UltraVIP] MySQL database connected Successfuly!
2013-09-26 23:57:48 [INFO] [UltraVIP] Registring Events...
2013-09-26 23:57:48 [INFO] [UltraVIP] MobArena support enabled!
2013-09-26 23:57:48 [INFO] [UltraVIP] Vault hooked as permissions plugin
2013-09-26 23:57:48 [INFO] [UltraVIP] CreativeControl v6.4 loaded in 67 ms!
2013-09-26 23:57:49 [INFO] Server permissions file permissions.yml is empty, ignoring it
2013-09-26 23:57:49 [INFO] Done (5.231s)! For help, type "help" or "?"
2013-09-26 23:57:49 [INFO] Starting GS4 status listener
2013-09-26 23:57:49 [INFO] Starting remote control listener
2013-09-26 23:57:49 [INFO] Query running on 93.91.250.118:27661
2013-09-26 23:57:49 [WARNING] No rcon password set in '/hlserver/27661/server.properties', rcon disabled!
2013-09-26 23:57:49 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
2013-09-26 23:57:49 [INFO] Accepted EditSessionFactory of type me.FurH.CreativeControl.integration.worldedit.CreativeEditSessionFactory from me.FurH.CreativeControl.integration.worldedit
2013-09-26 23:57:49 [INFO] [UltraVIP] Cached 7,260 protections
2013-09-26 23:57:49 [INFO] [UltraVIP] Loaded 0 regions
2013-09-26 23:57:49 [INFO] [UltraVIP] 7,260 blocks protected

Uživatelský avatar
zdenda204
Příspěvky: 3617
Věk: 36
Registrován: 23 kvě 2012, 21:38
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#8 Příspěvekod zdenda204 » 28 zář 2013, 14:24

Ještě config kde jsou práce.
Přijímám zakázky na skripty/pluginy v PHP/Javě za malý poplatky! A kup mi sušenku :) Obrázek Obrázek
⇨Projekt Market⇦

TFZMistery
Příspěvky: 20
Registrován: 04 kvě 2012, 12:08
Reputation: 0

Re: IConomy + Jobs Mysql Problem

#9 Příspěvekod TFZMistery » 28 zář 2013, 14:27

Kód: Vybrat vše

# Jobs configuration.
#
# Stores information about each job.
#
# For example configurations, visit http://dev.bukkit.org/server-mods/jobs/.

Jobs:
  Drevorubec:
    fullname: Drevorubec
    shortname: W
    description: Vydelava si kacenim stromu.
    ChatColour: GREEN
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      LOG:
        income: 5.0
        experience: 5.0
    Place:
      SAPLING:
        income: 1.0
        experience: 1.0
      WOOD:
        income: 2.0
        experience: 2.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Woodcutter:
        income: 10.0
        experience: 10.0
    permissions:
      aaaaaatest.node:
        value: true
        level: 0
      aaaaaatest.node2:
        value: true
        level: 10
  Hornik:
    fullname: Hornik
    shortname: M
    description: Vydelava tezenim.
    ChatColour: DARK_GRAY
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      STONE:
        income: 2.0
        experience: 2.0
      COAL_ORE:
        income: 3.0
        experience: 3.0
      GLOWING_REDSTONE_ORE:
        income: 3.0
        experience: 3.0
      IRON_ORE:
        income: 4.0
        experience: 4.0
      GOLD_ORE:
        income: 5.0
        experience: 5.0
      LAPIS_ORE:
        income: 5.0
        experience: 5.0
      DIAMOND_ORE:
        income: 6.0
        experience: 6.0
      OBSIDIAN:
        income: 7.5
        experience: 7.5
      MOSSY_COBBLESTONE:
        income: 6.0
        experience: 6.0
    Place:
      RAILS:
        income: 2.0
        experience: 2.0
      IRON_ORE:
        income: -5.0
        experience: -5.0
      GOLD_ORE:
        income: -6.0
        experience: -6.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Miner:
        income: 10.0
        experience: 10.0
  Stavitel:
    fullname: Stavitel
    shortname: B
    description: Vydelava za to ze stavi budovy.
    ChatColour: WHITE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Place:
      COBBLESTONE:
        income: 1.0
        experience: 1.0
      WOOD:
        income: 1.5
        experience: 1.5
      FENCE:
        income: 1.5
        experience: 1.5
      WOOL:
        income: 1.5
        experience: 1.5
      STONE:
        income: 2.25
        experience: 2.25
      GLOWSTONE:
        income: 3.0
        experience: 3.0
      SANDSTONE:
        income: 2.0
        experience: 2.0
      GLASS:
        income: 3.0
        experience: 3.0
      BRICK:
        income: 4.0
        experience: 4.0
      LAPIS_BLOCK:
        income: 5.0
        experience: 5.0
      DOUBLE_STEP:
        income: 2.0
        experience: 2.0
      STEP:
        income: 2.0
        experience: 2.0
      BOOKSHELF:
        income: 3.0
        experience: 3.0
      WOOD_STAIRS:
        income: 2.0
        experience: 2.0
      COBBLESTONE_STAIRS:
        income: 2.0
        experience: 2.0
      MOSSY_COBBLESTONE:
        income: 5.0
        experience: 5.0
      DIAMOND_BLOCK:
        income: 5.0
        experience: 5.0
      GOLD_BLOCK:
        income: 5.0
        experience: 5.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Builder:
        income: 10.0
        experience: 10.0
  Kopac:
    fullname: Kopac
    shortname: D
    description: Vydelava tim ze nici dirt/gravel/clay/sand.
    ChatColour: GOLD
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      DIRT:
        income: 2.0
        experience: 2.0
      GRASS:
        income: 2.0
        experience: 2.0
      GRAVEL:
        income: 2.0
        experience: 2.0
      SAND:
        income: 2.0
        experience: 2.0
      CLAY:
        income: 2.0
        experience: 2.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Digger:
        income: 10.0
        experience: 10.0
  Farmer:
    fullname: Farmar
    shortname: Farmar
    description: Vydelava zahradnicenim :D.
    ChatColour: BLUE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      CROPS-7:
        income: 4.0
        experience: 4.0
      SUGAR_CANE_BLOCK:
        income: 4.0
        experience: 4.0
    Place:
      CROPS-0:
        income: 3.0
        experience: 3.0
      SUGAR_CANE_BLOCK:
        income: 1.0
        experience: 1.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Farmer:
        income: 10.0
        experience: 10.0
  Lovec:
    fullname: Lovec
    shortname: H
    description: Vydelava si zabijenim monster.
    ChatColour: RED
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Kill:
      Chicken:
        income: 2.5
        experience: 2.5
      Cow:
        income: 2.5
        experience: 2.5
      Pig:
        income: 2.5
        experience: 2.5
      Sheep:
        income: 2.5
        experience: 2.5
      Wolf:
        income: 5.0
        experience: 5.0
      Creeper:
        income: 10.0
        experience: 10.0
      Skeleton:
        income: 10.0
        experience: 10.0
      Spider:
        income: 10.0
        experience: 10.0
      Zombie:
        income: 10.0
        experience: 10.0
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Woodcutter:
        income: 10.0
        experience: 10.0
      Miner:
        income: 10.0
        experience: 10.0
      Digger:
        income: 10.0
        experience: 10.0
      Farmer:
        income: 10.0
        experience: 10.0
      Builder:
        income: 10.0
        experience: 10.0
      Hunter:
        income: 20.0
        experience: 20.0


Zpět na „Minecraft, Tekkit“

Kdo je online

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