nastavení servru a pomoc

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

Re: nastavení servru a pomoc

#21 Příspěvekod liki12 » 23 črc 2013, 12:15

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://xray.fakaheda.eu:3306/gs_37076_1'

    # Login details for binary databases
    Username: 'gs_37076_1'
    Password: 'nedám'

    ##############################################################
    # !!! 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: true

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

      # Database Table
      Table: 'iConomy'

      # Database URL without table at the end.
      URL: 'xray.fakaheda.eu'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: 'gs_37076_1'
      Password: 'nedám'

      # 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: nastavení servru a pomoc

#22 Příspěvekod nejento » 23 črc 2013, 15:44

Vždyť to je jasný jako facka :D

Kód: Vybrat vše

    Type: 'minidb'

přepiš na

Kód: Vybrat vše

    Type: 'mysql'


Takhle se ti vytvoří čistá tabulka MySQL a lidi nebudou mít své peníze. Pokud je chceš překonvertovat na MySQL, tak:
Conversion nastav na true:

Kód: Vybrat vše

    Conversion:
      # Set to True, After converting, change this back to false!
      Enabled: true


ALE POZOR!
Jakmile jednou restartuješ server se zapnutou konverzí IHNED to přepiš zpátky na false! Protože jinak by se jim ty peníze přepsaly zase na jejich původní částky ze souboru, protože by se to znovu překonvertovalo a přepsalo. Tudíž jedno restart se zapnutým a hned nato nastavit na false!
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: nastavení servru a pomoc

#23 Příspěvekod liki12 » 23 črc 2013, 16:52

Dobrý už to mám děkuji já si toho vůbec nevšiml :/ :D

-- 23 črc 2013, 16:56 --

A ještě jak se napojí worldguard?? A to je poslední.Děkuji
dbserver: localhost
dbname: gs_37076_1
dbuser: gs_37076_1
dbpass: tajné
-----------------------------------------
PhpMyAdmin se nachází na adrese http://xray.fakaheda.eu/phpmyadmin


Spoiler: zobrazit

Kód: Vybrat vše

#
# WorldGuard's main configuration file
#
# This is the global configuration file. Anything placed into here will
# be applied to all worlds. However, each world has its own configuration
# file to allow you to replace most settings in here for that world only.
#
# About editing this file:
# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
#   you use an editor like Notepad++ (recommended for Windows users), you
#   must configure it to "replace tabs with spaces." In Notepad++, this can
#   be changed in Settings > Preferences > Language Menu.
# - Don't get rid of the indents. They are indented so some entries are
#   in categories (like "enforce-single-session" is in the "protection"
#   category.
# - If you want to check the format of this file before putting it
#   into WorldGuard, paste it into http://yaml-online-parser.appspot.com/
#   and see if it gives "ERROR:".
# - Lines starting with # are comments and so they are ignored.
#

regions:
    use-scheduler: true
    use-creature-spawn-event: true
    sql:
        use: false
        dsn: jdbc:mysql://localhost/worldguard
        username: worldguard
        password: worldguard
    enable: true
    invincibility-removes-mobs: false
    high-frequency-flags: false
    wand: 334
    max-claim-volume: 30000
    claim-only-inside-existing-regions: false
    max-region-count-per-player:
        default: 7
auto-invincible: false
use-player-move-event: true
use-player-teleports: true
security:
    deop-everyone-on-join: false
    block-in-game-op-command: false
host-keys: {}
summary-on-start: true
op-permissions: true
protection:
    item-durability: true
    remove-infinite-stacks: false
    disable-xp-orb-drops: false
    disable-obsidian-generators: false
gameplay:
    block-potions: []
    block-potions-overly-reliably: false
simulation:
    sponge:
        enable: true
        radius: 3
        redstone: false
default:
    pumpkin-scuba: false
    disable-health-regain: false
physics:
    no-physics-gravel: false
    no-physics-sand: false
    vine-like-rope-ladders: false
    allow-portal-anywhere: false
    disable-water-damage-blocks: []
ignition:
    block-tnt: false
    block-tnt-block-damage: false
    block-lighter: false
fire:
    disable-lava-fire-spread: true
    disable-all-fire-spread: false
    disable-fire-spread-blocks: []
    lava-spread-blocks: []
mobs:
    block-creeper-explosions: false
    block-creeper-block-damage: false
    block-wither-explosions: false
    block-wither-block-damage: false
    block-wither-skull-explosions: false
    block-wither-skull-block-damage: false
    block-enderdragon-block-damage: false
    block-enderdragon-portal-creation: false
    block-fireball-explosions: false
    block-fireball-block-damage: false
    anti-wolf-dumbness: false
    disable-enderman-griefing: false
    disable-snowman-trails: false
    block-painting-destroy: false
    block-item-frame-destroy: false
    block-plugin-spawning: true
    block-above-ground-slimes: false
    block-other-explosions: false
    block-zombie-door-destruction: false
    block-creature-spawn: []
player-damage:
    disable-fall-damage: false
    disable-lava-damage: false
    disable-fire-damage: false
    disable-lightning-damage: false
    disable-drowning-damage: false
    disable-suffocation-damage: false
    disable-contact-damage: false
    teleport-on-suffocation: false
    disable-void-damage: false
    teleport-on-void-falling: false
    disable-explosion-damage: false
    disable-mob-damage: false
    disable-death-messages: false
chest-protection:
    enable: false
    disable-off-check: false
crops:
    disable-creature-trampling: false
    disable-player-trampling: false
weather:
    prevent-lightning-strike-blocks: []
    disable-lightning-strike-fire: false
    disable-thunderstorm: false
    disable-weather: false
    disable-pig-zombification: false
    disable-powered-creepers: false
    always-raining: false
    always-thundering: false
dynamics:
    disable-mushroom-spread: false
    disable-ice-melting: false
    disable-snow-melting: false
    disable-snow-formation: false
    disable-ice-formation: false
    disable-leaf-decay: false
    disable-grass-growth: false
    disable-mycelium-spread: false
    disable-vine-growth: false
blacklist:
    use-as-whitelist: false
    logging:
        console:
            enable: true
        database:
            enable: false
            dsn: jdbc:mysql://localhost:3306/minecraft
            user: root
            pass: ''
            table: blacklist_events
        file:
            enable: false
            path: worldguard/logs/%Y-%m-%d.log
            open-files: 10


-- 23 črc 2013, 18:44 --

A dá se nějak zrušit příkaz /pl ??
93.91.250.110:37076

Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#24 Příspěvekod Shadowhacker » 23 črc 2013, 19:30

nejento píše:Vždyť to je jasný jako facka :D

Kód: Vybrat vše

    Type: 'minidb'

přepiš na

Kód: Vybrat vše

    Type: 'mysql'

Tohle jsem mu psal i v minulém tématu, mám dojem.. Bohužel, lidi jsou nepoučitelný.
WG

Kód: Vybrat vše

    sql:
        use: true
        dsn: jdbc:mysql://localhost/gs_37076_1
        username: gs_37076_1
        password: tajné
Obrázek

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

Re: nastavení servru a pomoc

#25 Příspěvekod liki12 » 23 črc 2013, 19:40

Ten wg nejde

Spoiler: zobrazit

Kód: Vybrat vše

#
# WorldGuard's main configuration file
#
# This is the global configuration file. Anything placed into here will
# be applied to all worlds. However, each world has its own configuration
# file to allow you to replace most settings in here for that world only.
#
# About editing this file:
# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
#   you use an editor like Notepad++ (recommended for Windows users), you
#   must configure it to "replace tabs with spaces." In Notepad++, this can
#   be changed in Settings > Preferences > Language Menu.
# - Don't get rid of the indents. They are indented so some entries are
#   in categories (like "enforce-single-session" is in the "protection"
#   category.
# - If you want to check the format of this file before putting it
#   into WorldGuard, paste it into http://yaml-online-parser.appspot.com/
#   and see if it gives "ERROR:".
# - Lines starting with # are comments and so they are ignored.
#

regions:
    use-scheduler: true
    use-creature-spawn-event: true
    sql:
        use: true
        dsn: jdbc:mysql://localhost/gs_37076_1
        username: gs_37076_1
        password: nedám
    enable: true
    invincibility-removes-mobs: false
    high-frequency-flags: false
    wand: 334
    max-claim-volume: 30000
    claim-only-inside-existing-regions: false
    max-region-count-per-player:
        default: 7
auto-invincible: false
use-player-move-event: true
use-player-teleports: true
security:
    deop-everyone-on-join: false
    block-in-game-op-command: false
host-keys: {}
summary-on-start: true
op-permissions: true
protection:
    item-durability: true
    remove-infinite-stacks: false
    disable-xp-orb-drops: false
    disable-obsidian-generators: false
gameplay:
    block-potions: []
    block-potions-overly-reliably: false
simulation:
    sponge:
        enable: true
        radius: 3
        redstone: false
default:
    pumpkin-scuba: false
    disable-health-regain: false
physics:
    no-physics-gravel: false
    no-physics-sand: false
    vine-like-rope-ladders: false
    allow-portal-anywhere: false
    disable-water-damage-blocks: []
ignition:
    block-tnt: false
    block-tnt-block-damage: false
    block-lighter: false
fire:
    disable-lava-fire-spread: true
    disable-all-fire-spread: false
    disable-fire-spread-blocks: []
    lava-spread-blocks: []
mobs:
    block-creeper-explosions: false
    block-creeper-block-damage: false
    block-wither-explosions: false
    block-wither-block-damage: false
    block-wither-skull-explosions: false
    block-wither-skull-block-damage: false
    block-enderdragon-block-damage: false
    block-enderdragon-portal-creation: false
    block-fireball-explosions: false
    block-fireball-block-damage: false
    anti-wolf-dumbness: false
    disable-enderman-griefing: false
    disable-snowman-trails: false
    block-painting-destroy: false
    block-item-frame-destroy: false
    block-plugin-spawning: true
    block-above-ground-slimes: false
    block-other-explosions: false
    block-zombie-door-destruction: false
    block-creature-spawn: []
player-damage:
    disable-fall-damage: false
    disable-lava-damage: false
    disable-fire-damage: false
    disable-lightning-damage: false
    disable-drowning-damage: false
    disable-suffocation-damage: false
    disable-contact-damage: false
    teleport-on-suffocation: false
    disable-void-damage: false
    teleport-on-void-falling: false
    disable-explosion-damage: false
    disable-mob-damage: false
    disable-death-messages: false
chest-protection:
    enable: false
    disable-off-check: false
crops:
    disable-creature-trampling: false
    disable-player-trampling: false
weather:
    prevent-lightning-strike-blocks: []
    disable-lightning-strike-fire: false
    disable-thunderstorm: false
    disable-weather: false
    disable-pig-zombification: false
    disable-powered-creepers: false
    always-raining: false
    always-thundering: false
dynamics:
    disable-mushroom-spread: false
    disable-ice-melting: false
    disable-snow-melting: false
    disable-snow-formation: false
    disable-ice-formation: false
    disable-leaf-decay: false
    disable-grass-growth: false
    disable-mycelium-spread: false
    disable-vine-growth: false
blacklist:
    use-as-whitelist: false
    logging:
        console:
            enable: true
        database:
            enable: false
            dsn: jdbc:mysql://localhost:3306/minecraft
            user: root
            pass: ''
            table: blacklist_events
        file:
            enable: false
            path: worldguard/logs/%Y-%m-%d.log
            open-files: 10
93.91.250.110:37076

Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#26 Příspěvekod Shadowhacker » 23 črc 2013, 21:11

A co ti to píše v logu? Nevim, zda to WG nechce do apostrofů to heslo a tak, ale snad né..
Obrázek

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

Re: nastavení servru a pomoc

#27 Příspěvekod nejento » 23 črc 2013, 22:19

Hlavně si říkám, jestli to je tak důležité mít napojený i WorldGuard MySQL, protože se tam budou ukládat pouze nastavené regionů. To může být v pořádku v souboru, pokud to nepoužíváš jako ďas.
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
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#28 Příspěvekod Shadowhacker » 24 črc 2013, 01:12

Nejento - já zastávám názor, že pokud mám MySQL, tak je fajn si napojit, co můžeš. Pak je v tom lepší přehled (nejen pro pluginy jakoby), ale i pro mě, jelikož se na DB připojuji přes Navicat. A pak to taky komunikuje rychleji ,když to nemusí otvírat nějaký soubor a tak, ne?
Obrázek

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

Re: nastavení servru a pomoc

#29 Příspěvekod liki12 » 24 črc 2013, 11:02

Spoiler: zobrazit

Kód: Vybrat vše

> 11:01:27 [INFO] Starting minecraft server version 1.6.2
> 11:01:27 [INFO] Loading properties
> 11:01:27 [INFO] Default game type: SURVIVAL
> 11:01:27 [INFO] Generating keypair
> 11:01:28 [INFO] Starting Minecraft server on 93.91.250.110:37076
> 11:01:28 [INFO] This server is running CraftBukkit version git-Bukkit-1.5.2-R1.0-27-gdc25312-b2815jnks (MC: 1.6.2) (Implementing API version 1.6.2-R0.1-SNAPSHOT)
> 11:01:28 [INFO] ----- Bukkit Auto Updater -----
> 11:01:28 [INFO] It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
> 11:01:28 [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'.
> 11:01:28 [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.
> 11:01:28 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
> 11:01:28 [INFO] ----- ------------------- -----
> 11:01:28 [INFO] [PermissionsEx] sql backend registered!
> 11:01:28 [INFO] [PermissionsEx] file backend registered!
> 11:01:28 [INFO] [PermissionsEx] PermissionEx plugin initialized.
> 11:01:29 [INFO] [LagMeter] Loading LagMeter v1.9.0
> 11:01:29 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.2
> 11:01:29 [INFO] [WorldEdit] Loading WorldEdit v5.5.7
> 11:01:29 [INFO] [iConomy] Loading iConomy v7.0
> 11:01:29 [INFO] [Vault] Loading Vault v1.2.25-b333
> 11:01:29 [INFO] [HealthBar] Loading HealthBar v1.6.1.1
> 11:01:29 [INFO] odifyworld] Loading Modifyworld v1.19.6
> 11:01:29 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.6
> 11:01:29 [INFO] [PermissionsEx] Initializing file backend
> 11:01:29 [INFO] Permissions file successfully reloaded
> 11:01:29 [INFO] [WorldGuard] Loading WorldGuard v5.8
> 11:01:29 [INFO] [Essentials] Loading Essentials v2.11.1
> 11:01:29 [INFO] [Jobs] Loading Jobs v2.11.3
> 11:01:29 [INFO] [EssentialsProtect] Loading EssentialsProtect v2.11.1
> 11:01:29 [INFO] [AuthMe] Loading AuthMe v2.7.11
> 11:01:29 [INFO] [EssentialsSpawn] Loading EssentialsSpawn v2.11.1
> 11:01:29 [INFO] [Ultrabans] Loading Ultrabans v3.1.0
> 11:01:29 [INFO] [EssentialsChat] Loading EssentialsChat v2.11.1
> 11:01:29 [INFO] [ScoreboardStats] Loading ScoreboardStats v0.5.9
> 11:01:29 [INFO] [EssentialsAntiBuild] Loading EssentialsAntiBuild v2.11.1
> 11:01:29 [INFO] [Residence] Loading Residence v2.6.6.5
> 11:01:29 [INFO] [Vault] Enabling Vault v1.2.25-b333
> 11:01:29 [INFO] [Vault][Economy] Essentials Economy found: Waiting
> 11:01:29 [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.
> 11:01:29 [WARNING] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
> 11:01:29 [WARNING] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
> 11:01:29 [INFO] [Vault][Economy] iConomy 6 found: Waiting
> 11:01:29 [INFO] [Vault][Permission] PermissionsEx found: Waiting
> 11:01:29 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
> 11:01:29 [INFO] [Vault][Chat] PermissionsEx found: Waiting
> 11:01:29 [INFO] [Vault] Enabled Version 1.2.25-b333
> 11:01:29 [INFO] [Vault][Economy] Essentials Economy hooked.
> 11:01:29 [INFO] [Vault][Economy] iConomy 7 hooked.
> 11:01:29 [INFO] [Vault][Permission] PermissionsEx hooked.
> 11:01:29 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
> 11:01:29 [WARNING] The server will make no attempt to authenticate usernames. Beware.
> 11:01:29 [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.
> 11:01:29 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
> 11:01:29 [INFO] Preparing level "world"
> 11:01:29 [INFO] Preparing start region for level 0 (Seed: 3017709851677738984)
> 11:01:30 [INFO] Preparing start region for level 1 (Seed: 3017709851677738984)
> 11:01:31 [INFO] Preparing spawn area: 51%
> 11:01:31 [INFO] Preparing start region for level 2 (Seed: 3017709851677738984)
> 11:01:31 [INFO] [LagMeter] Enabling LagMeter v1.9.0
> 11:01:31 [INFO] [LagMeter] Not using logs folder.
> 11:01:31 [INFO] [LagMeter 1.9.0] Enabled! Polling every 40 server ticks. Logging to /hlserver/37076/plugins/LagMeter/lag.log
> 11:01:31 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.2
> 11:01:31 [INFO] Starting FakaHedaMinequery server on 93.91.250.110:38076
> 11:01:31 [INFO] [WorldEdit] Enabling WorldEdit v5.5.7
> 11:01:31 [INFO] WEPIF: Using the Bukkit Permissions API.
> 11:01:31 [INFO] [iConomy] Enabling iConomy v7.0
> 11:01:32 [INFO] [iConomy - April Fools] Enabled (248 ms)
> 11:01:32 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
> 11:01:32 [INFO] [iConomy - April Fools] Purged accounts with default balance.
> 11:01:32 [INFO] [HealthBar] Enabling HealthBar v1.6.1.1
> 11:01:32 [INFO] odifyworld] Enabling Modifyworld v1.19.6
> 11:01:32 [INFO] odifyworld] Modifyworld enabled!
> 11:01:32 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.6
> 11:01:32 [INFO] [PermissionsEx] Superperms support enabled.
> 11:01:32 [INFO] [PermissionsEx] v1.19.6 enabled
> 11:01:32 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
> 11:01:32 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
> 11:01:32 [INFO] [WorldGuard] Enabling WorldGuard v5.8
> 11:01:32 [INFO] [WorldGuard] (world) TNT ignition is PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world) Lighters are PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world) Lava fire is blocked.
> 11:01:32 [INFO] [WorldGuard] (world) Fire spread is UNRESTRICTED.
> 11:01:32 [INFO] [WorldGuard] Loaded configuration for world 'world'
> 11:01:32 [INFO] [WorldGuard] (world_nether) TNT ignition is PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world_nether) Lighters are PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world_nether) Lava fire is blocked.
> 11:01:32 [INFO] [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
> 11:01:32 [INFO] [WorldGuard] Loaded configuration for world 'world_nether'
> 11:01:32 [INFO] [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world_the_end) Lighters are PERMITTED.
> 11:01:32 [INFO] [WorldGuard] (world_the_end) Lava fire is blocked.
> 11:01:32 [INFO] [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
> 11:01:32 [INFO] [WorldGuard] Loaded configuration for world 'world_the_end'
> 11:01:32 [INFO] [WorldGuard] 0 regions loaded for 'world'
> 11:01:32 [INFO] [WorldGuard] 0 regions loaded for 'world_nether'
> 11:01:32 [INFO] [WorldGuard] 0 regions loaded for 'world_the_end'
> 11:01:32 [INFO] [Essentials] Enabling Essentials v2.11.1
> 11:01:33 [INFO] Essentials: Using PermissionsEx based permissions.
> 11:01:33 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.25-b333)
> 11:01:33 [INFO] [Jobs] Enabling Jobs v2.11.3
> 11:01:33 [INFO] [Jobs] Started database save task
> 11:01:33 [INFO] [Jobs] Started buffered payment thread
> 11:01:33 [INFO] [Jobs] Plugin has been enabled succesfully.
> 11:01:33 [INFO] [EssentialsProtect] Enabling EssentialsProtect v2.11.1
> 11:01:33 [INFO] [AuthMe] Enabling AuthMe v2.7.11
> 11:01:33 [INFO] [AuthMe] Loading Configuration File...
> 11:01:33 [INFO] [AuthMe] Merge new Config Options if needed..
> 11:01:33 [INFO] [AuthMe] Set Language: en
> 11:01:33 [INFO] [AuthMe] MySQL driver loaded
> 11:01:33 [INFO] [AuthMe] Connection pool ready
> 11:01:33 [INFO] [AuthMe] Authme 2.7.11 enabled
> 11:01:33 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.11.1
> 11:01:33 [INFO] [Ultrabans] Enabling Ultrabans v3.1.0
> 11:01:34 [INFO] [Ultrabans] No Updates found on dev.bukkit.org.
> 11:01:34 [INFO] [Ultrabans] Loaded. 0 secs.
> 11:01:34 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
> 11:01:34 [INFO] [ScoreboardStats] Enabling ScoreboardStats v0.5.9
> 11:01:34 [INFO] DataSourcePool [ScoreboardStats] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[250]
> 11:01:34 [INFO] DatabasePlatform name:ScoreboardStats platform:sqlite
> 11:01:34 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
> 11:01:34 [INFO] Entities enhanced[0] subclassed[1]
> 11:01:34 [INFO] [EssentialsAntiBuild] Enabling EssentialsAntiBuild v2.11.1
> 11:01:34 [INFO] [Residence] Enabling Residence v2.6.6.5
> 11:01:35 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
> 11:01:35 [INFO] [Residence] Scanning for economy systems...
> 11:01:35 [INFO] [Residence] Found Vault using economy system: iConomy 7
> 11:01:35 [INFO] [Residence] Found WorldEdit
> 11:01:35 [INFO] [Residence] Enabled! Version 2.6.6.5 by bekvon
> 11:01:35 [INFO] Server permissions file permissions.yml is empty, ignoring it
> 11:01:35 [INFO] Done (6.353s)! For help, type "help" or "?"
> 11:01:35 [INFO] Starting GS4 status listener
> 11:01:35 [INFO] Starting remote control listener
> 11:01:35 [INFO] Query running on 93.91.250.110:37076
> 11:01:35 [WARNING] No rcon password set in '/hlserver/37076/server.properties', rcon disabled!
> 11:01:35 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
> 11:01:48 [SEVERE] Reached end of stream for /80.251.245.151
> 11:01:54 [SEVERE] Reached end of stream for /90.182.20.25
> 11:01:57 [SEVERE] Reached end of stream for /80.251.245.151
> 11:02:06 [SEVERE] Reached end of stream for /80.251.245.151


-- 24 črc 2013, 22:12 --

Tak co?? :(
93.91.250.110:37076

becKMine
Příspěvky: 41
Registrován: 24 črc 2013, 17:44
Reputation: 0

Re: nastavení servru a pomoc

#30 Příspěvekod becKMine » 25 črc 2013, 14:04

Ta fotka s tím heal barem,si myslím že je ze StyleCraftu
:o


Zpět na „Minecraft, Tekkit“

Kdo je online

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