Technická podpora k herním serverům Minecraft a Tekkit
-
Sorlios
- Příspěvky: 38
- Registrován: 25 úno 2014, 09:04
- Reputation: 0
#1 Příspěvekod Sorlios » 25 úno 2014, 09:07
Server: 93.91.250.131:27661PLS HEEELP CO MAM ZLE ?
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/145202_mysql_db'
# Login details for binary databases
Username: '145202_mysql_db'
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/145202_mysql_db'
# Username / Password
# H2DB does not use this. MySQL Only.
Username: '145202_mysql_db'
Password: '*******'
# Unused ATM.
All: true
-
vojtamaniak
- Příspěvky: 3512
- Věk: 26
- Registrován: 18 úno 2012, 21:02
- Reputation: 11
#2 Příspěvekod vojtamaniak » 25 úno 2014, 09:27
Hodil by se server.log (nebo latest.log) při startu.
-
Sorlios
- Příspěvky: 38
- Registrován: 25 úno 2014, 09:04
- Reputation: 0
#3 Příspěvekod Sorlios » 25 úno 2014, 09:37
Kód: Vybrat vše
[08:37:01] [Server thread/INFO]: Starting minecraft server version 1.7.2
[08:37:01] [Server thread/WARN]: To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar"
[08:37:01] [Server thread/INFO]: Loading properties
[08:37:01] [Server thread/INFO]: Default game type: SURVIVAL
[08:37:01] [Server thread/INFO]: Generating keypair
[08:37:01] [Server thread/INFO]: Starting Minecraft server on 93.91.250.131:27661
[08:37:02] [Server thread/INFO]: This server is running CraftBukkit version git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks (MC: 1.7.2) (Implementing API version 1.7.2-R0.4-SNAPSHOT)
[08:37:02] [Server thread/ERROR]: Could not load 'plugins/CreativeGates.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: mcore
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:216) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at org.bukkit.craftbukkit.v1_7_R1.CraftServer.loadPlugins(CraftServer.java:350) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at org.bukkit.craftbukkit.v1_7_R1.CraftServer.<init>(CraftServer.java:312) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at net.minecraft.server.v1_7_R1.PlayerList.<init>(PlayerList.java:63) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at net.minecraft.server.v1_7_R1.DedicatedPlayerList.<init>(SourceFile:14) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at net.minecraft.server.v1_7_R1.DedicatedServer.init(DedicatedServer.java:126) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at net.minecraft.server.v1_7_R1.MinecraftServer.run(MinecraftServer.java:424) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
at net.minecraft.server.v1_7_R1.ThreadServerApplication.run(SourceFile:617) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
[08:37:02] [Server thread/INFO]: [PermissionsEx] sql backend registered!
[08:37:02] [Server thread/INFO]: [PermissionsEx] file backend registered!
[08:37:02] [Server thread/INFO]: [LagMeter] Loading LagMeter v1.16.0
[08:37:02] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.10.8-RC-sMD5NET-b664
[08:37:02] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v5.5.8
[08:37:02] [Server thread/INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.3
[08:37:02] [Server thread/INFO]: [ColorGuide] Loading ColorGuide v1.3.3
[08:37:02] [Server thread/INFO]: [Vault] Loading Vault v1.2.31-b411
[08:37:02] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.20.4
[08:37:02] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[08:37:02] [Server thread/INFO]: Permissions file successfully reloaded
[08:37:02] [Server thread/INFO]: [PlayerHeads] Loading PlayerHeads v3.8-jenkins-PlayerHeads-1-48-ged24b6b
[08:37:02] [Server thread/INFO]: [MineReset] Loading MineReset v2.0.3
[08:37:02] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v5.8
[08:37:02] [Server thread/INFO]: [dynmap] Loading dynmap v1.9.2-940
[08:37:02] [Server thread/INFO]: [dynmap] Mod Support API available
[08:37:02] [Server thread/INFO]: [HeroicDeathPlus] Loading HeroicDeathPlus v2.5
[08:37:02] [Server thread/INFO]: [AutoMessage] Loading AutoMessage v2.4.0
[08:37:02] [Thread-7/INFO]: ----- Bukkit Auto Updater -----
[08:37:02] [Server thread/INFO]: [Spectate] Loading Spectate v2.0
[08:37:02] [Thread-7/INFO]: It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
[08:37:02] [Thread-7/INFO]: If you would like to be kept informed about new Development Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'dev'.
[08:37:02] [Thread-7/INFO]: With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.
[08:37:02] [Server thread/INFO]: [ChatClear] Loading ChatClear v2.3.1
[08:37:02] [Thread-7/INFO]: If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
[08:37:02] [Thread-7/INFO]: ----- ------------------- -----
[08:37:02] [Server thread/INFO]: [iConomy] Loading iConomy v7.0
[08:37:02] [Server thread/INFO]: [BKCommonLib] Loading BKCommonLib v1.57
[08:37:03] [Server thread/INFO]: [ClearLag] Loading ClearLag v2.6.2
[08:37:03] [Server thread/INFO]: [AutoSaveWorld] Loading AutoSaveWorld v4.13
[08:37:03] [Server thread/INFO]: [SimpleReserve] Loading SimpleReserve v0.5.0_1
[08:37:03] [Server thread/INFO]: [AntiTNT] Loading AntiTNT v1.1
[08:37:03] [Server thread/INFO]: [Essentials] Loading Essentials v2.12.2
[08:37:03] [Server thread/INFO]: [Residence] Loading Residence v2.6.6.6
[08:37:03] [Server thread/INFO]: [Jobs] Loading Jobs v2.11.3
[08:37:03] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.11-SNAPSHOT (build 1053)
[08:37:03] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.12.2
[08:37:03] [Server thread/INFO]: [Ultrabans] Loading Ultrabans v3.1.0
[08:37:03] [Server thread/INFO]: [LWC] Loading LWC v4.4.0 (b881) (July 11, 2013)
[08:37:03] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.7.5
[08:37:03] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.12.2
[08:37:03] [Server thread/INFO]: [PlotMe] Loading PlotMe v0.13b
[08:37:03] [Server thread/INFO]: [DynmapPlotMe] Loading DynmapPlotMe v0.2
[08:37:03] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.4-b527
[08:37:03] [Server thread/INFO]: [Paintball] Loading Paintball v1.2.5
[08:37:03] [Server thread/INFO]: [AuthMe] Loading AuthMe v3.3.3
[08:37:03] [Server thread/INFO]: [Vault] Enabling Vault v1.2.31-b411
[08:37:03] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy found: Waiting
[08:37:03] [Server thread/WARN]: 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.
[08:37:03] [Server thread/WARN]: if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
[08:37:03] [Server thread/WARN]: it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
[08:37:03] [Server thread/INFO]: [Vault] [Vault][Economy] iConomy 6 found: Waiting
[08:37:03] [Server thread/INFO]: [Vault] [Vault][Permission] PermissionsEx found: Waiting
[08:37:03] [Server thread/INFO]: [Vault] [Vault][Permission] SuperPermissions loaded as backup permission system.
[08:37:03] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx found: Waiting
[08:37:03] [Server thread/INFO]: [Vault] [Vault] Enabled Version 1.2.31-b411
[08:37:03] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.57
[08:37:03] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on CraftBukkit (git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks) : v1_7_R1 (Minecraft 1.7.2)
[08:37:03] [Server thread/INFO]: [BKCommonLib] [Network] Now using a PlayerConnection hook to provide Packet Listener and Monitor support
[08:37:03] [Server thread/INFO]: [BKCommonLib] Not enough wrappers. Needs more wrappers. Moooreee...
[08:37:03] [Server thread/INFO]: BKCommonLib version 1.57 enabled! (0.163s)
[08:37:03] [Server thread/INFO]: [AutoSaveWorld] Enabling AutoSaveWorld v4.13
[08:37:03] [Server thread/INFO]: [LWC] Enabling LWC v4.4.0 (b881) (July 11, 2013)
[08:37:03] [Server thread/INFO]: [LWC] Connecting to SQLite
[08:37:03] [Server thread/WARN]: java.lang.UnsatisfiedLinkError: /hlserver/27661/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: /hlserver/27661/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: file too short
[08:37:03] [Server thread/INFO]: [PlotMe] Enabling PlotMe v0.13b
[08:37:03] [Server thread/INFO]: §9[PlotMe] §r 5 plots loaded
[08:37:03] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[08:37:03] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[08:37:03] [Server thread/WARN]: 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.
[08:37:03] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[08:37:03] [Server thread/INFO]: Preparing level "world"
[08:37:03] [Server thread/INFO]: Preparing start region for level 0 (Seed: 2253879535026903503)
[08:37:04] [Server thread/INFO]: Preparing start region for level 1 (Seed: -7024511856163776095)
-
vojtamaniak
- Příspěvky: 3512
- Věk: 26
- Registrován: 18 úno 2012, 21:02
- Reputation: 11
#4 Příspěvekod vojtamaniak » 25 úno 2014, 09:47
Celý by nebyl? Až po úplné načtení když se začnou připojovat hráči...
Jedna věc: CreativeGates potřebuje pro funkci plugin mcore.
-
Sorlios
- Příspěvky: 38
- Registrován: 25 úno 2014, 09:04
- Reputation: 0
#5 Příspěvekod Sorlios » 25 úno 2014, 10:32
Kód: Vybrat vše
[09:25:54] [Server thread/INFO]: Starting minecraft server version 1.7.2
[09:25:54] [Server thread/WARN]: To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar"
[09:25:54] [Server thread/INFO]: Loading properties
[09:25:54] [Server thread/INFO]: Default game type: SURVIVAL
[09:25:54] [Server thread/INFO]: Generating keypair
[09:25:55] [Server thread/INFO]: Starting Minecraft server on 93.91.250.131:27661
[09:25:55] [Server thread/INFO]: This server is running CraftBukkit version git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks (MC: 1.7.2) (Implementing API version 1.7.2-R0.4-SNAPSHOT)
[09:25:55] [Thread-6/INFO]: ----- Bukkit Auto Updater -----
[09:25:55] [Thread-6/INFO]: It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
[09:25:55] [Thread-6/INFO]: If you would like to be kept informed about new Development Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'dev'.
[09:25:55] [Thread-6/INFO]: With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.
[09:25:55] [Thread-6/INFO]: If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
[09:25:55] [Thread-6/INFO]: ----- ------------------- -----
[09:25:55] [Server thread/INFO]: [PermissionsEx] sql backend registered!
[09:25:55] [Server thread/INFO]: [PermissionsEx] file backend registered!
[09:25:55] [Server thread/INFO]: [LagMeter] Loading LagMeter v1.16.0
[09:25:55] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.10.8-RC-sMD5NET-b664
[09:25:55] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v5.5.8
[09:25:55] [Server thread/INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.3
[09:25:55] [Server thread/INFO]: [ColorGuide] Loading ColorGuide v1.3.3
[09:25:55] [Server thread/INFO]: [mcore] Loading mcore v7.0.2
[09:25:55] [Server thread/INFO]: [Vault] Loading Vault v1.2.31-b411
[09:25:55] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.20.4
[09:25:55] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[09:25:55] [Server thread/INFO]: Permissions file successfully reloaded
[09:25:55] [Server thread/INFO]: [PlayerHeads] Loading PlayerHeads v3.8-jenkins-PlayerHeads-1-48-ged24b6b
[09:25:55] [Server thread/INFO]: [MineReset] Loading MineReset v2.0.3
[09:25:55] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v5.8
[09:25:55] [Server thread/INFO]: [dynmap] Loading dynmap v1.9.2-940
[09:25:56] [Server thread/INFO]: [dynmap] Mod Support API available
[09:25:56] [Server thread/INFO]: [HeroicDeathPlus] Loading HeroicDeathPlus v2.5
[09:25:56] [Server thread/INFO]: [AutoMessage] Loading AutoMessage v2.4.0
[09:25:56] [Server thread/INFO]: [Spectate] Loading Spectate v2.0
[09:25:56] [Server thread/INFO]: [ChatClear] Loading ChatClear v2.3.1
[09:25:56] [Server thread/INFO]: [iConomy] Loading iConomy v7.0
[09:25:56] [Server thread/INFO]: [BKCommonLib] Loading BKCommonLib v1.57
[09:25:56] [Server thread/INFO]: [ClearLag] Loading ClearLag v2.6.2
[09:25:56] [Server thread/INFO]: [AutoSaveWorld] Loading AutoSaveWorld v4.13
[09:25:56] [Server thread/INFO]: [SimpleReserve] Loading SimpleReserve v0.5.0_1
[09:25:56] [Server thread/INFO]: [AntiTNT] Loading AntiTNT v1.1
[09:25:56] [Server thread/INFO]: [Essentials] Loading Essentials v2.12.2
[09:25:56] [Server thread/INFO]: [Residence] Loading Residence v2.6.6.6
[09:25:56] [Server thread/INFO]: [Jobs] Loading Jobs v2.11.3
[09:25:56] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.11-SNAPSHOT (build 1053)
[09:25:56] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.12.2
[09:25:56] [Server thread/INFO]: [CreativeGates] Loading CreativeGates v2.4.0
[09:25:56] [Server thread/INFO]: [Ultrabans] Loading Ultrabans v3.1.0
[09:25:56] [Server thread/INFO]: [LWC] Loading LWC v4.4.0 (b881) (July 11, 2013)
[09:25:56] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.7.5
[09:25:56] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.12.2
[09:25:56] [Server thread/INFO]: [dynmap-residence] Loading dynmap-residence v0.50-21
[09:25:56] [Server thread/INFO]: [PlotMe] Loading PlotMe v0.13b
[09:25:56] [Server thread/INFO]: [DynmapPlotMe] Loading DynmapPlotMe v0.2
[09:25:56] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.4-b527
[09:25:56] [Server thread/INFO]: [Paintball] Loading Paintball v1.2.5
[09:25:56] [Server thread/INFO]: [AuthMe] Loading AuthMe v3.3.3
[09:25:56] [Server thread/INFO]: [mcore] Enabling mcore v7.0.2
[09:25:56] [Server thread/INFO]: [mcore 7.0.2] === ENABLE START ===
[09:25:56] [Server thread/INFO]: [mcore 7.0.2] §eSetup of SenderIdMixinDefault took §d5§ems.
[09:25:56] [Server thread/INFO]: [mcore 7.0.2] === ENABLE §aCOMPLETE §e(Took §d55ms§e) ===
[09:25:56] [Server thread/INFO]: [Vault] Enabling Vault v1.2.31-b411
[09:25:56] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy found: Waiting
[09:25:56] [Server thread/WARN]: 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.
[09:25:56] [Server thread/WARN]: if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
[09:25:56] [Server thread/WARN]: it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
[09:25:56] [Server thread/INFO]: [Vault] [Vault][Economy] iConomy 6 found: Waiting
[09:25:56] [Server thread/INFO]: [Vault] [Vault][Permission] PermissionsEx found: Waiting
[09:25:56] [Server thread/INFO]: [Vault] [Vault][Permission] SuperPermissions loaded as backup permission system.
[09:25:56] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx found: Waiting
[09:25:56] [Server thread/INFO]: [Vault] [Vault] Enabled Version 1.2.31-b411
[09:25:56] [Server thread/INFO]: [mcore 7.0.2] §aActivated §eintegration with §dVault
[09:25:56] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.57
[09:25:56] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on CraftBukkit (git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks) : v1_7_R1 (Minecraft 1.7.2)
[09:25:56] [Server thread/INFO]: [BKCommonLib] [Network] Now using a PlayerConnection hook to provide Packet Listener and Monitor support
[09:25:56] [Server thread/INFO]: [BKCommonLib] I...I forgot an exclamation mark...*rages internally*
[09:25:56] [Server thread/INFO]: BKCommonLib version 1.57 enabled! (0.188s)
[09:25:56] [Server thread/INFO]: [AutoSaveWorld] Enabling AutoSaveWorld v4.13
[09:25:56] [Server thread/INFO]: [LWC] Enabling LWC v4.4.0 (b881) (July 11, 2013)
[09:25:56] [Server thread/INFO]: [LWC] Connecting to SQLite
[09:25:56] [Server thread/WARN]: java.lang.UnsatisfiedLinkError: /hlserver/27661/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: /hlserver/27661/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: file too short
[09:25:57] [Server thread/INFO]: [PlotMe] Enabling PlotMe v0.13b
[09:25:57] [Server thread/INFO]: §9[PlotMe] §r 5 plots loaded
[09:25:57] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:25:57] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:25:57] [Server thread/WARN]: 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.
[09:25:57] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:25:57] [Server thread/INFO]: Preparing level "world"
[09:25:57] [Server thread/INFO]: Preparing start region for level 0 (Seed: 2253879535026903503)
[09:25:57] [Server thread/INFO]: Preparing start region for level 1 (Seed: -7024511856163776095)
[09:25:58] [Server thread/INFO]: Preparing start region for level 2 (Seed: -7024511856163776095)
[09:25:58] [Server thread/INFO]: [LagMeter] Enabling LagMeter v1.16.0
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mNot using logs folder.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mEnabled! Polling every 40 server ticks. Logging to /hlserver/27661/plugins/LagMeter/lag.log.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mChunks loaded:[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world": 625.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world_nether": 625.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world_the_end": 625.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mTotal chunks loaded: 1875[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mEntities:[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world": 209.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world_nether": 0.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mWorld "world_the_end": 10.[m
[09:25:58] [Server thread/INFO]: [0;33;22m[LagMeter] [0;32;1mTotal entities: 219[m
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.10.8-RC-sMD5NET-b664
[09:25:58] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.7.2 / CB2922-DEV
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[09:25:58] [Server thread/INFO]: [NoCheatPlus] Version 3.10.8-RC-sMD5NET-b664 is enabled.
[09:25:59] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v5.5.8
[09:25:59] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[09:25:59] [Server thread/INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.3
[09:25:59] [Server thread/INFO]: Starting FakaHedaMinequery server on 93.91.250.131:28661
[09:25:59] [Server thread/INFO]: [ColorGuide] Enabling ColorGuide v1.3.3
[09:25:59] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.20.4
[09:25:59] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[09:25:59] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[09:25:59] [Server thread/INFO]: [Vault][Chat] PermissionsEx_Chat hooked.
[09:25:59] [Server thread/INFO]: [PlayerHeads] Enabling PlayerHeads v3.8-jenkins-PlayerHeads-1-48-ged24b6b
[09:26:00] [Server thread/INFO]: [MineReset] Enabling MineReset v2.0.3
[09:26:00] [Server thread/INFO]: MineReset is starting up
[09:26:00] [Server thread/INFO]: WorldEdit found, using it for region selection
[09:26:00] [Server thread/INFO]: Language file used: english.yml
[09:26:00] [Server thread/INFO]: Loaded generator: RandomGenerator
[09:26:00] [Server thread/INFO]: MineReset started
[09:26:00] [Server thread/INFO]: 0 mine(s) and 0 signs found
[09:26:00] [Server thread/INFO]: Unable to connect to the update server!
[09:26:00] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v5.8
[09:26:00] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[09:26:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[09:26:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[09:26:00] [Server thread/INFO]: [WorldGuard] 0 regions loaded for 'world'
[09:26:00] [Server thread/INFO]: [WorldGuard] 0 regions loaded for 'world_nether'
[09:26:00] [Server thread/INFO]: [WorldGuard] 0 regions loaded for 'world_the_end'
[09:26:00] [Server thread/INFO]: [dynmap] Enabling dynmap v1.9.2-940
[09:26:00] [Server thread/INFO]: [dynmap] Added 38 custom biome mappings
[09:26:00] [Server thread/INFO]: [dynmap] Using PermissionsEx 1.20.4 for access control
[09:26:00] [Server thread/INFO]: [dynmap] Mod Support processing completed
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 22 shaders.
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 12 lightings.
[09:26:01] [Server thread/INFO]: [dynmap] Web server started on address 93.91.250.131:29661
[09:26:01] [Server thread/INFO]: [dynmap] version 1.9.2-940 is enabled - core version 1.9.2-1888
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 3 pending tile renders for world 'world'
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'.
[09:26:01] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'.
[09:26:01] [Server thread/INFO]: [dynmap] Enabled
[09:26:01] [Server thread/INFO]: [HeroicDeathPlus] Enabling HeroicDeathPlus v2.5
[09:26:01] [Server thread/INFO]: [HeroicDeathPlus] 2.5 enabled.
[09:26:01] [Server thread/INFO]: [AutoMessage] Enabling AutoMessage v2.4.0
[09:26:01] [Server thread/INFO]: [Spectate] Enabling Spectate v2.0
[09:26:01] [Server thread/INFO]: [ChatClear] Enabling ChatClear v2.3.1
[09:26:01] [Server thread/INFO]: [ChatClear] Plugin activated!
[09:26:01] [Server thread/INFO]: [ChatClear] Plugin by MDRunaway
[09:26:01] [Server thread/INFO]: [iConomy] Enabling iConomy v7.0
[09:26:01] [Server thread/INFO]: [iConomy - April Fools] Enabled (366 ms)
[09:26:01] [Server thread/INFO]: [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
[09:26:01] [Server thread/INFO]: [Vault][Economy] iConomy 7 hooked.
[09:26:01] [Thread-34/INFO]: [iConomy - April Fools] Purged accounts with default balance.
[09:26:01] [Server thread/INFO]: [ClearLag] Enabling ClearLag v2.6.2
[09:26:01] [Server thread/INFO]: [ClearLag] No config updates found...
[09:26:01] [Thread-36/INFO]: [ClearLag] Searching for updates..
[09:26:01] [Server thread/INFO]: [ClearLag] Clearlag has been enabled!
[09:26:01] [Server thread/INFO]: [SimpleReserve] Enabling SimpleReserve v0.5.0_1
[09:26:01] [Server thread/INFO]: [SimpleReserve] SimpleReserve version 0.5.0_1 enabled!
[09:26:01] [Server thread/INFO]: [AntiTNT] Enabling AntiTNT v1.1
[09:26:02] [Server thread/INFO]: AntiTNT has been enabled!
[09:26:02] [Server thread/INFO]: [Essentials] Enabling Essentials v2.12.2
[09:26:02] [Thread-36/INFO]: [ClearLag] No updates found!
[09:26:02] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[09:26:02] [Server thread/INFO]: Essentials: Using PermissionsEx based permissions.
[09:26:02] [Server thread/INFO]: [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.31-b411)
[09:26:02] [Server thread/INFO]: [Residence] Enabling Residence v2.6.6.6
[09:26:02] [Server thread/INFO]: [Residence] - Enabling multiworld plugin: Multiverse-Core
[09:26:02] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
[09:26:02] [Server thread/INFO]: [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
[09:26:02] [Server thread/INFO]: [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
[09:26:02] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 2253879535026903503
[09:26:02] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: -7024511856163776095
[09:26:02] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: -7024511856163776095
[09:26:02] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'plotworld' - Env: NORMAL - Type: NORMAL & seed: 909715428758569828 & generator: PlotMe
[09:26:02] [Server thread/INFO]: Preparing start region for level 3 (Seed: 909715428758569828)
[09:26:02] [Server thread/INFO]: [WorldGuard] (plotworld) TNT ignition is PERMITTED.
[09:26:02] [Server thread/INFO]: [WorldGuard] (plotworld) Lighters are PERMITTED.
[09:26:02] [Server thread/INFO]: [WorldGuard] (plotworld) Lava fire is blocked.
[09:26:02] [Server thread/INFO]: [WorldGuard] (plotworld) Fire spread is UNRESTRICTED.
[09:26:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plotworld'
[09:26:02] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'plotworld'.
[09:26:02] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[09:26:02] [Server thread/INFO]: [Residence] Found Vault using permissions plugin:PermissionsEx
[09:26:03] [Server thread/INFO]: [Residence] Scanning for economy systems...
[09:26:03] [Server thread/INFO]: [Residence] Found Vault using economy system: iConomy 7
[09:26:03] [Server thread/INFO]: [Residence] Found WorldEdit
[09:26:03] [Server thread/INFO]: [Residence] Enabled! Version 2.6.6.6 by bekvon
[09:26:03] [Server thread/INFO]: [Jobs] Enabling Jobs v2.11.3
[09:26:03] [Jobs-DatabaseSaveTask/INFO]: [Jobs] Started database save task
[09:26:03] [Jobs-BufferedPaymentThread/INFO]: [Jobs] Started buffered payment thread
[09:26:03] [Server thread/INFO]: [Jobs] Plugin has been enabled succesfully.
[09:26:03] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.11-SNAPSHOT (build 1053)
[09:26:03] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.12.2
[09:26:03] [Server thread/INFO]: [CreativeGates] Enabling CreativeGates v2.4.0
[09:26:03] [Server thread/INFO]: [0;36;22m[[0;36;1mCreativeGates 2.4.0[0;36;22m] [0;33;1m=== ENABLE START ===[m
[09:26:03] [Server thread/INFO]: [0;36;22m[[0;36;1mCreativeGates 2.4.0[0;36;22m] [0;33;1m=== ENABLE [0;32;1mCOMPLETE [0;33;1m(Took [0;35;1m13ms[0;33;1m) ===[m
[09:26:03] [Server thread/INFO]: [Ultrabans] Enabling Ultrabans v3.1.0
[09:26:03] [Server thread/INFO]: [Ultrabans] No Updates found on dev.bukkit.org.
[09:26:03] [Server thread/INFO]: [Ultrabans] Loaded. 0 secs.
[09:26:04] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.7.5
[09:26:04] [Server thread/INFO]: [ChestShop] LWC version 4.4.0 (b881) (July 11, 2013) loaded.
[09:26:04] [Server thread/INFO]: [ChestShop] Residence version 2.6.6.6 loaded.
[09:26:04] [Server thread/INFO]: [ChestShop] Vault loaded! Found an economy plugin!
[09:26:04] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.12.2
[09:26:04] [Server thread/INFO]: [dynmap-residence] Enabling dynmap-residence v0.50-21
[09:26:04] [Server thread/INFO]: [dynmap-residence] initializing
[09:26:04] [Server thread/INFO]: [dynmap-residence] version 0.50-21 is activated
[09:26:04] [Server thread/INFO]: [DynmapPlotMe] Enabling DynmapPlotMe v0.2
[09:26:04] [Server thread/INFO]: [DynmapPlotMe] initializing
[09:26:04] [Server thread/INFO]: [Paintball] Enabling Paintball v1.2.5
[09:26:04] [Server thread/INFO]: [Paintball] Loading the default language: enUS.txt
[09:26:04] [Server thread/INFO]: [Paintball] Scanned lines: 379 | Skipped lines: 0
[09:26:04] [Server thread/INFO]: [Paintball] Using the default language now: enUS.txt
[09:26:04] [Server thread/INFO]: [Paintball] Loading the specified melody now: win.txt
[09:26:04] [Server thread/INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 20
[09:26:04] [Server thread/INFO]: [Paintball] Loading the specified melody now: defeat.txt
[09:26:04] [Server thread/INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 43
[09:26:04] [Server thread/INFO]: [Paintball] Loading the specified melody now: draw.txt
[09:26:04] [Server thread/INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 29
[09:26:04] [Server thread/INFO]: [Paintball] Loading ranks..
[09:26:04] [Server thread/INFO]: [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
[09:26:04] [Server thread/INFO]: [Paintball] Plugin 'TagAPI' not found. Additional tag features disabled.
[09:26:04] [Server thread/INFO]: [Paintball] Plugin 'Votifier' not found. Additional vote features disabled.
[09:26:04] [Server thread/INFO]: [Paintball] By blablubbabc enabled.
[09:26:04] [Server thread/INFO]: [AuthMe] Enabling AuthMe v3.3.3
[09:26:04] [Server thread/INFO]: [AuthMe] Loading Configuration File...
[09:26:04] [Server thread/WARN]: [AuthMe] Merge new Config Options if needed..
[09:26:04] [Server thread/WARN]: [AuthMe] Please check your config.yml file!
[09:26:04] [Server thread/INFO]: [AuthMe] Set Language: en
[09:26:04] [Server thread/INFO]: [AuthMe] Vault plugin detected, hook with PermissionsEx system
[09:26:04] [Server thread/INFO]: [AuthMe] Hook with Multiverse-Core for SpawnLocations
[09:26:04] [Server thread/INFO]: [AuthMe] Hook with Essentials plugin
[09:26:04] [Server thread/INFO]: [AuthMe] Hook with EssentialsSpawn plugin
[09:26:04] [Thread-37/INFO]: [AuthMe] MySQL driver loaded
[09:26:04] [Thread-37/INFO]: [AuthMe] Connection pool ready
[09:26:04] [Server thread/INFO]: [AuthMe] This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com
[09:26:04] [Server thread/INFO]: [AuthMe] Authme 3.3.3 enabled
[09:26:04] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:26:04] [Server thread/INFO]: Done (7.568s)! For help, type "help" or "?"
[09:26:04] [Server thread/INFO]: Starting GS4 status listener
[09:26:04] [Server thread/INFO]: Starting remote control listener
[09:26:04] [Query Listener #1/INFO]: Query running on 93.91.250.131:27661
[09:26:04] [Server thread/WARN]: No rcon password set in '/hlserver/27661/server.properties', rcon disabled!
[09:26:04] [Server thread/INFO]: [Jobs] [Jobs] Successfully linked with Vault.
[09:26:04] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[09:26:05] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[09:26:05] [pool-3-thread-9/INFO]: [LWC] [LWC] The updater ran into a minor issue: http://update.griefcraft.com/lwc/branch/stable/LATEST
[09:26:05] [pool-3-thread-9/INFO]: [LWC] [LWC] This can probably be ignored.
[09:26:05] [pool-3-thread-9/WARN]: Exception in thread "pool-3-thread-9"
[09:26:05] [pool-3-thread-9/WARN]: org.apache.commons.lang.UnhandledException: Plugin LWC v4.4.0 (b881) (July 11, 2013) generated an exception while executing task 14
at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:56)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:724)
Caused by: java.lang.NullPointerException
at com.griefcraft.util.Updater$1.run(Updater.java:81)
at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftTask.run(CraftTask.java:53)
at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:53)
... 3 more
[09:26:05] [Server thread/INFO]: [Paintball] --------- Checking version ----------
[09:26:05] [Server thread/INFO]: [Paintball] You are running the latest version (or a dev- or compat-build). :)
[09:26:05] [Server thread/INFO]: [Paintball] --------- ---------------- ----------
[09:26:05] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[09:26:05] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[09:26:05] [pool-3-thread-16/INFO]: [Vault] Checking for Updates:
[09:26:05] [pool-3-thread-16/INFO]: [Vault] No new version available
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;1m **************************************************[m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;1m ----------------- PAINTBALL INFO -----------------[m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;31;1m License stuff:[m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m - Usage on own risk. I give no warranties for anything.[m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m - Do not modify. Use it as it is![m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m - Do not redistribute/upload/use parts of it/copy/give away.[m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m - Do not use for commercial purposes![m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m -> No benefits for paying players/donors![m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m -> This also applies to any kind of add-on you are using[m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;22m related to this plugin![m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;32;22m If you like this plugin: Give feedback and donate at[m
[09:26:06] [pool-3-thread-3/INFO]: [0;32;22m ->http://dev.bukkit.org/server-mods/paintball_pure_war/ [m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;32;1m Thank you and good shooting![m
[09:26:06] [pool-3-thread-3/INFO]: [0;32;1m - blablubbabc :)[m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;1m ---------------- Detected Problems ---------------[m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;32;1m No problems found. :)[m
[09:26:06] [pool-3-thread-3/INFO]: [m
[09:26:06] [pool-3-thread-3/INFO]: [0;33;1m **************************************************[m
[09:26:06] [pool-3-thread-3/INFO]: [m
-
vojtamaniak
- Příspěvky: 3512
- Věk: 26
- Registrován: 18 úno 2012, 21:02
- Reputation: 11
#6 Příspěvekod vojtamaniak » 25 úno 2014, 10:41
Napojil se ti správně, kde je problém?

-
Sorlios
- Příspěvky: 38
- Registrován: 25 úno 2014, 09:04
- Reputation: 0
#7 Příspěvekod Sorlios » 25 úno 2014, 11:05
aha fakt nepozrel som sa do DB

DIK
Zpět na „Minecraft, Tekkit“
Kdo je online
Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 32 hostů