Residence

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Uživatelský avatar
EveryMan
Příspěvky: 133
Registrován: 17 bře 2015, 20:55
Reputation: 0

Residence

#1 Příspěvekod EveryMan » 29 čer 2016, 14:48

82.208.17.26:27086

dobrý den, mám na serveru residenci, ale když si ji udělám tak normálně funguje, jenže když hráči kopají block tak normálně můžou níčit ikdyž jsem nic nepsal nevíte v čem by mohl být problém?

config residence

Kód: Vybrat vše

#These are Global Settings for Residence.
Global:
    # This loads the <language>.yml file in the Residence Language folder
    # All Residence text comes from this file. (NOT DONE YET)
    Language: Czech
    # Wooden Hoe is the default selection tool for Residence.
    # You can change it to another item ID listed here: http://www.minecraftwiki.net/wiki/Data_values
    SelectionToolId: 290
    # This determins which tool you can use to see info on residences, default is String.
    # Simply equip this tool and hit a location inside the residence and it will display the info for it.
    InfoToolId: 287
    # The interval, in milliseconds, between movement checks.
    # Reducing this will increase the load on the server.
    # Increasing this will allow players to move further in movement restricted zones before they are teleported out.
    MoveCheckInterval: 500
    # The interval, in minutes, between residence saves.
    SaveInterval: 10
    # The default group to use if Permissions fails to attach or your not using Permissions.
    DefaultGroup: default
    # Enable / Disable the Lease System.
    UseLeaseSystem: false
    # The interval, in minutes, between residence lease checks (if leases are enabled).
    LeaseCheckInterval: 10
    # Allows leases to automatically renew so long as the player has the money, if economy is disabled, this setting does nothing.
    LeaseAutoRenew: true
    # Whether or not to use the Permissions system in conjunction with this config.
    EnablePermissions: true
    # Set to true if NOT using Permissions or PermissionsBukkit, or using a really old version of Permissions
    LegacyPermissions: false
    # Enable / Disable Residence's Economy System (iConomy, MineConomy, Essentials, BOSEconomy, and RealEconomy supported).
    EnableEconomy: false
    # Enables or disables the Rent System
    EnableRentSystem: false
    # The interval, in minutes, between residence rent expiration checks (if the rent system is enabled).
    RentCheckInterval: 10
    # Enable or disable residence chat channels.
    ResidenceChatEnable: true
    # True for ActionBar - new component in 1.8
    # False for old Messaging in chat enter/leave Residence messages
    UseActionBar: true
    # Color of residence chat.
    ResidenceChatColor: DARK_PURPLE
    # Whether or not to ignore the usual Permission flags and only allow OPs and groups with 'residence.admin' to change residences.
    AdminOnlyCommands: false
    # Setting this to true makes server OPs admins.
    AdminOPs: true
    # This is the name of the plugin you use for multiworld, if you dont have a multiworld plugin you can safely ignore this.
    # The only thing this does is check to make sure the multiworld plugin is enabled BEFORE Residence, to ensure properly loading residences for other worlds.
    MultiWorldPlugin: Multiverse-Core
    # Setting this to true causes subzones to inherit flags from their parent zones.
    ResidenceFlagsInherit: true
    # Setting this to false will allow rented residences to be modified by the renting player.
    PreventRentModify: true
    # Setting this to false will cause residence to continue to load even if a error is detected in the save file.
    StopOnSaveFault: true
    # This is the residence name filter, that filters out invalid characters.  Google "Java RegEx" or "Java Regular Expressions" for more info on how they work.
    ResidenceNameRegex: '[^a-zA-Z0-9\\-\\_]'
    # Setting this to true sends a message to the console every time Residence does a rent expire check or a lease expire check.
    ShowIntervalMessages: false
    # Experimental - The following settings are lists of block IDs to be used as part of the checks for the "container" and "use" flags when using mods.
    CustomContainers: []
    CustomBothClick: []
    CustomRightClick: []
    # These are world flags that are applied when the player is NOT within a residence.
    Flags:
        Global: #these are default for all worlds unless specified below, they can be overridden per group
            use: true
            build: true
            ignite: true
            firespread: true
            damage: true
            creeper: true
            tnt: true
            pvp: true
        WorldNameHere: #here you can set flags for individual worlds, these override Global
            #build: true
    # This gives permission to change certain flags to all groups, unless specifically denied to the group.
    FlagPermission:
        move: true
        build: true
        place: true
        destroy: true
        use: true
        container: true
        pvp: true
        tp: true
        ignite: true
        firespread: true
        bucket: true
        flow: true
        lavaflow: true
        waterflow: true
        creeper: true
        tnt: true
        monsters: true
        animals: true
        subzone: true
        healing: true
        piston: true
        diode: true
        lever: true
        button: true
        door: true
        table: true
        enchant: true
        brew: true
        bed: true
        cake: true
        note: true
        trample: false
        burn: true
        explode: false
        fireball: true
    # These are default flags applied to all residences from any user group.
    ResidenceDefault:
        build: false
        use: false
        container: false
        pvp: false
        tnt: false
        creeper: false
        flow: false
        piston: false
        ignite: false
        firespread: false
    # These are default flags applied to the residence creator of any group.
    CreatorDefault:
        build: true
        move: true
        use: true
        ignite: true
        container: true
     # These are default group flags applied to a residence made by a user of any group.
    GroupDefault:
        #default: #group name
            #build: true
   
# These groups correspond to the Permissions groups defined in your '<worldname>.yml'
Groups:
    Default: #group name
       # Information about the Residence zone that the player can define.
       #Uncomment the lines below to mirror this config to other groups.
       #Mirror:
         #- 'group1'
         #- 'group2'
       Residence:
           # Determins if this group can create residences or not.  This option can be overriden with the permissions node 'residence.create'
           CanCreate: true
           # The maximum number of Residences a player can have.
           MaxResidences: 3
           # The maximum number of physical areas a residence can have.
           MaxAreasPerResidence: 100
           # The maximum number of blocks a Residence can be, East to West (X).
           MaxEastWest: 250
           # The maximum number of blocks a Residence can be, North to South (Z).
           MaxNorthSouth: 250
           # The maximum number of blocks a Residence can be, High to Low (Y).
           MaxUpDown: 256
           # The lowest altitude this group is allowed to protect.
           MinHeight: 0
           # The highest altitude this group is allowed to protect.
           MaxHeight: 255
            # The maximum recursive depth that subzones can go.
            # A subzone within a subzone within the Residence zone would be a depth of 2.
            # Set to 0 to disable subzones.
           SubzoneDepth: 3
           # Whether or not to allow teleporting to Residences.
           CanTeleport: true
           # Allow or Disallow the use of /res unstuck, to get yourself out of a residence if stuck in one somehow
           Unstuck: true
           # Allow or Disallow the use of /res kick, to kick player from residence.
           Kick: False
           # Allow or Disallow the use of the /res select command, if disabled they can only use the selection tool.
           SelectCommandAccess: true
           # Allow or Disallow the group to access the Blacklist/Ignorelist for residences they own.
           ItemListAccess: true
       # Options relating to enter and leave messages on the residence.
       Messaging:
           # Whether or not the player can change the Residence enter and leave messages.
           CanChange: true
           # The default enter message to apply to new Residences created by players in this group.
           # Leaving the message blank will disable it.
           DefaultEnter: Welcome %player to %residence, owned by %owner.
           # The default leave message to apply to new Residences created by players in this group.
           # Leaving the message blank will disable it.
           DefaultLeave: Now leaving %residence.
       # Options relating to the Lease system.
       Lease:
          # The maximum number of days to allow leases.
          MaxDays: 16
          # The number of days to add to the lease following a '/res lease renew' command.
          RenewIncrement: 14
       #Options related to the rent system
       Rent:
           #determines how many residences can be rented by players of this group at once
           MaxRents: 3
           #determines how many residences can be set for rent by players of this group at once
           MaxRentables: 3
       # Options relating to the Residence Economy.
       Economy:
          # Whether or not players in this group can buy other Residences that are for sale.
          CanBuy: true
          # Whether or not players in this group can sell their Residences.
          CanSell: false
          # Whether or not to ignore the Residence size/count limits when buying a residence.
          IgnoreLimits: false
          # The cost, per block, of making a new Residence or adding a area to it.
          BuyCost: 0.00
          # The cost, per block, of renewing a Residence lease (if the lease system is enabled).
          RenewCost: 0.02
       # Flags are checked in the order:
       # 1: Player
       # 2: Group
       # 3: Owner
       # 4: If all others are undefined, reverts to default value (usually true).
       # Flag permissions default to false.
       # These flags settings override the globals.
       Flags:
          # Specifically allow or deny this group from changing certain flags.
          Permission:
               #build: true
          # Specifys the flags that are applied at residence creation for players of this group.
          Default:
              #build: true
          # Specifys the flags that are applied at to the creator at residence creation.
          CreatorDefault:
              #build: true
          # Specifys the flags that are applied to other groups for this residence, at creation.
          GroupDefault:
               #default: #group name
                   #build: false
          #these flags are applied specifically to this group whenever they are outside a residence
          #these flags will override the flags at the top, under the Global section.
          World:
                Global: #these flags will apply to all worlds
                     #build: false
                WorldNameHere: #or you can apply them by each individual world
                     #build: false

# You can manually specify the group a player is in below, this overrides their permissions group.
GroupAssignments:
     bekvon: default
     player: default

ItemList: #this is where you can create blacklists / whitelists
     DefaultList: #list name is not important, as long as it is unique. Its good to use a descripive name.
        #type of the list, can be blacklist, whitelist, or ignorelist
        Type: blacklist
        #If you want, you can have this list only apply to one world, otherwise it applys to all worlds
        #World: world
        #You can also have the list apply only to one group, otherwise it applys for all groups
        #Group: default
        #this is the actual list of material names that this list allows or dissallows
        #You can look up the material name by item ID in game by typing /res material <id>
        #Alternativly, you can simply use the item ID in the list, but its less descriptive and harder to see what the list allows or dissallows at a glance
        Items:
           - 'BEDROCK'
           - 'LAVA'
           - 'WATER'
           - 'STATIONARY_LAVA'
           - 'STATIONARY_WATER'
           - 'MOB_SPAWNER'
# Used to determine which major revision of Residence this config is from, dont change this.
ResidenceVersion: 2
Pravda zvítězí nad lží a nenávistí

Smexhy
Příspěvky: 5602
Věk: 26
Registrován: 31 říj 2012, 15:50
Reputation: 20
Bydliště: Slovensko
Kontaktovat uživatele:

Re: Residence

#2 Příspěvekod Smexhy » 29 čer 2016, 14:58

Log pri spustení serveru?

Uživatelský avatar
TopCz
Příspěvky: 667
Věk: 27
Registrován: 15 led 2014, 21:00
Reputation: 11
Kontaktovat uživatele:

Re: Residence

#3 Příspěvekod TopCz » 29 čer 2016, 15:01

No možná by ti mohlo pomoc použít nejnovější residenci ze spigotu.

https://www.spigotmc.org/resources/resi ... -10.11480/

With previous developers approval this plugin went from free to "Premium" to help motivate the active developer and push allot more updates and bug fixes in near feature. If you don't appreciate hard work put on this plugins updates, you are welcome to download the same versions for free here but he will be sad and will come to haunt you in your dreams!​
Obrázek

Uživatelský avatar
EveryMan
Příspěvky: 133
Registrován: 17 bře 2015, 20:55
Reputation: 0

Re: Residence

#4 Příspěvekod EveryMan » 29 čer 2016, 15:25

log

Kód: Vybrat vše

[14:54:49] [Server thread/INFO]: Starting minecraft server version 1.8
[14:54:49] [Server thread/INFO]: Loading properties
[14:54:49] [Server thread/INFO]: Default game type: SURVIVAL
[14:54:50] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-a8d0768 (MC: 1.8) (Implementing API version 1.8-R0.1-SNAPSHOT)
[14:54:50] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:54:50] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:54:50] [Server thread/INFO]: Debug logging is disabled
[14:54:50] [Server thread/INFO]: Generating keypair
[14:54:50] [Server thread/INFO]: Starting Minecraft server on 82.208.17.26:27086
[14:54:50] [Server thread/WARN]: Plugin `Administration_Panel v1.1.0' uses the space-character (0x20) in its name `Administration Panel' - this is discouraged
[14:54:50] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[14:54:51] [Server thread/INFO]: [MotdManager] Loading MotdManager v1.41-b20
[14:54:51] [Server thread/INFO]: [PlayerHeads] Loading PlayerHeads v3.10-SNAPSHOT-jenkins-PlayerHeads-1-61-g39b94b4
[14:54:51] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.2;b3fbe8b
[14:54:51] [Server thread/INFO]: [TimTheEnchanter] Loading TimTheEnchanter v3.0
[14:54:51] [Server thread/INFO]: [HealthBar] Loading HealthBar v1.8.3
[14:54:51] [Server thread/INFO]: [OpenInv] Loading OpenInv v2.2.8
[14:54:51] [Server thread/INFO]: [Essentials] Loading Essentials vTeamCity
[14:54:51] [Server thread/INFO]: [ClearChat] Loading ClearChat v0.1
[14:54:51] [Server thread/INFO]: [BarAPI] Loading BarAPI v3.4
[14:54:51] [Server thread/INFO]: [ClearLag] Loading ClearLag v2.9.1
[14:54:51] [Server thread/INFO]: [AutoMessage] Loading AutoMessage v2.5.5
[14:54:51] [Server thread/INFO]: [Administration_Panel] Loading Administration_Panel v1.1.0
[14:54:51] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.0.1
[14:54:51] [Server thread/WARN]: [ProtocolLib] Updater section is missing, regenerate your config!
[14:54:51] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.8.0) is lower than the minimum (MC: 1.9.0)
[14:54:51] [Server thread/INFO]: [MultiWorld] Loading MultiWorld v5.2.8
[14:54:51] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v11.6.1
[14:54:51] [Server thread/INFO]: [Trampoline] Loading Trampoline v1.0
[14:54:51] [Server thread/INFO]: [ReportSystem] Loading ReportSystem v1.0
[14:54:51] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
[14:54:51] [Server thread/INFO]: [ItemCases] Loading ItemCases v1.5.1
[14:54:51] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.23.4
[14:54:51] [Server thread/WARN]: [PermissionsEx] This server is in offline mode. Unless this server is configured to integrate with a supported proxy (see http://dft.ba/-8ous), UUIDs *may not be stable*!
[14:54:51] [Server thread/INFO]: [TreeAssist] Loading TreeAssist v5.8.91
[14:54:51] [Server thread/INFO]: [NoDropMine] Loading NoDropMine v2.0
[14:54:51] [Server thread/INFO]: [Vault] Loading Vault v1.5.6-b49
[14:54:51] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn vTeamCity
[14:54:51] [Server thread/INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.6
[14:54:51] [Server thread/INFO]: [SignColorz] Loading SignColorz v2.1
[14:54:51] [Server thread/INFO]: [MassiveCore] Loading MassiveCore v2.8.6
[14:54:51] [Server thread/INFO]: TimeUnit.MILLIS_PER_MINUTE: 60000
[14:54:51] [Server thread/INFO]: [TitleManager] Loading TitleManager v1.5.12
[14:54:51] [Server thread/INFO]: [Jobs] Loading Jobs v2.12.0
[14:54:51] [Server thread/INFO]: [Trading] Loading Trading v3.2
[14:54:51] [Server thread/INFO]: [TNTRun] Loading TNTRun v3.4
[14:54:51] [Server thread/INFO]: [KillerMoney] Loading KillerMoney v3.13
[14:54:51] [Server thread/INFO]: [LWC] Loading LWC v4.5.0-SNAPSHOT
[14:54:51] [Server thread/INFO]: [1vs1] Loading 1vs1 v1.6.7 #217
[14:54:51] [Server thread/INFO]: [SignShop] Loading SignShop v2.11.0
[14:54:51] [Server thread/INFO]: [InfoBoardReborn] Loading InfoBoardReborn v1.7.0
[14:54:51] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.14-SNAPSHOT (build 1195)
[14:54:51] [Server thread/INFO]: [MoneyDrop] Loading MoneyDrop v2.2.0
[14:54:51] [Server thread/INFO]: [OnTime] Loading OnTime v4.1.4
[14:54:51] [Server thread/INFO]: [Residence] Loading Residence v2.6.7.0
[14:54:51] [Server thread/INFO]: [RandomTeleport] Loading RandomTeleport v5.0.2
[14:54:51] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.8.12
[14:54:51] [Server thread/INFO]: [AuthMe] Loading AuthMe v5.0-SNAPSHOT
[14:54:51] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.0.1
[14:54:51] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[14:54:51] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v11.6.1
[14:54:51] [Server thread/INFO]: [SkinsRestorer] Loaded Skin Factory for v1_8_R1
[14:54:51] [Server thread/INFO]: ==============================================
[14:54:51] [Server thread/INFO]:   SkinsRestorer Updater
[14:54:51] [Server thread/INFO]:  
[14:54:51] [Server thread/INFO]:     You are running v11.6.1
[14:54:51] [Server thread/INFO]:     The latest version of SkinsRestorer!
[14:54:51] [Server thread/INFO]:  
[14:54:51] [Server thread/INFO]: ==============================================
[14:54:51] [Server thread/INFO]: [Vault] Enabling Vault v1.5.6-b49
[14:54:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:54:51] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Waiting
[14:54:51] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:54:51] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Waiting
[14:54:51] [Server thread/INFO]: [Vault] Enabled Version 1.5.6-b49
[14:54:51] [Server thread/INFO]: [MassiveCore] Enabling MassiveCore v2.8.6
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] === ENABLE START ===
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] Loading Cachefile datas...
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] Loading Onlineplayer datas...
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] Loading Registry datas...
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] Saving Cachefile...
[14:54:51] [Server thread/INFO]: [MassiveCore 2.8.6] Setup of IdUtil took 34ms.
[14:54:52] [Server thread/INFO]: [MassiveCore 2.8.6] Activated integration with Vault
[14:54:52] [Server thread/INFO]: [MassiveCore 2.8.6] === ENABLE COMPLETE (Took 225ms) ===
[14:54:52] [Server thread/INFO]: [LWC] Enabling LWC v4.5.0-SNAPSHOT
[14:54:52] [Server thread/INFO]: [LWC] Connecting to SQLite
[14:54:52] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:54:52] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:54:52] [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.
[14:54:52] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:54:52] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[14:54:52] [Server thread/INFO]: Preparing level "world"
[14:54:52] [Server thread/INFO]: -------- World Settings For [world] --------
[14:54:52] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:52] [Server thread/INFO]: Anti X-Ray: true
[14:54:52] [Server thread/INFO]:    Engine Mode: 1
[14:54:52] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:52] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:52] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:52] [Server thread/INFO]: Random Lighting Updates: false
[14:54:52] [Server thread/INFO]: Structure Info Saving: true
[14:54:52] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:52] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:52] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:52] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:52] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:52] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:52] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:52] [Server thread/INFO]: View Distance: 7
[14:54:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:52] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:52] [Server thread/INFO]: Clear tick list: false
[14:54:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:52] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[14:54:52] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:52] [Server thread/INFO]: Anti X-Ray: true
[14:54:52] [Server thread/INFO]:    Engine Mode: 1
[14:54:52] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:52] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:52] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:52] [Server thread/INFO]: Random Lighting Updates: false
[14:54:52] [Server thread/INFO]: Structure Info Saving: true
[14:54:52] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:52] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:52] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:52] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:52] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:52] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:52] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:52] [Server thread/INFO]: View Distance: 7
[14:54:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:52] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:52] [Server thread/INFO]: Clear tick list: false
[14:54:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:52] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[14:54:52] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:52] [Server thread/INFO]: Anti X-Ray: true
[14:54:52] [Server thread/INFO]:    Engine Mode: 1
[14:54:52] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:52] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:52] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:52] [Server thread/INFO]: Random Lighting Updates: false
[14:54:52] [Server thread/INFO]: Structure Info Saving: true
[14:54:52] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:52] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:52] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:52] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:52] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:52] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:52] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:52] [Server thread/INFO]: View Distance: 7
[14:54:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:52] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:52] [Server thread/INFO]: Clear tick list: false
[14:54:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:52] [Server thread/INFO]: Preparing start region for level 0 (Seed: 2065735184426400639)
[14:54:53] [User Authenticator #1/INFO]: UUID of player Fifinka is adb6fea4-6062-3b4f-8ff7-f404fa61491f
[14:54:53] [Server thread/INFO]: Preparing spawn area: 51%
[14:54:53] [Server thread/INFO]: Preparing start region for level 1 (Seed: 2065735184426400639)
[14:54:54] [Server thread/INFO]: Preparing start region for level 2 (Seed: 2065735184426400639)
[14:54:54] [Server thread/INFO]: [MotdManager] Enabling MotdManager v1.41-b20
[14:54:54] [Server thread/INFO]: [MotdManager] version 1.41-b20 is enabled!
[14:54:54] [Server thread/INFO]: [PlayerHeads] Enabling PlayerHeads v3.10-SNAPSHOT-jenkins-PlayerHeads-1-61-g39b94b4
[14:54:55] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.2;b3fbe8b
[14:54:55] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[14:54:56] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R1 as the Bukkit adapter
[14:54:56] [Server thread/INFO]: [TimTheEnchanter] Enabling TimTheEnchanter v3.0
[14:54:56] [Server thread/INFO]: [Tim] Unused enchantments: UNKNOWN_ENCHANT_8(8) LUCK(61) LURE(62) 
[14:54:56] [Server thread/INFO]: [TimTheEnchanter] There are some who call me... Tim?
[14:54:56] [Server thread/INFO]: [HealthBar] Enabling HealthBar v1.8.3
[14:54:56] [Server thread/INFO]: [OpenInv] Enabling OpenInv v2.2.8
[14:54:56] [Server thread/INFO]: [Essentials] Enabling Essentials vTeamCity
[14:54:56] [Server thread/INFO]: Bukkit version format changed. Version not checked.
[14:54:56] [Server thread/INFO]: git-Spigot-a8d0768 (MC: 1.8)
[14:54:56] [Server thread/INFO]: 1.8-R0.1-SNAPSHOT
[14:54:56] [Server thread/INFO]: Using locale cs_CZ
[14:54:56] [Server thread/INFO]: Using locale cs_CZ
[14:54:56] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[14:54:56] [Server thread/INFO]: Essentials: Using config file enhanced permissions.
[14:54:56] [Server thread/INFO]: Permissions listed in as player-commands will be given to all users.
[14:54:56] [Server thread/INFO]: [ClearChat] Enabling ClearChat v0.1
[14:54:56] [Server thread/INFO]: [BarAPI] Enabling BarAPI v3.4
[14:54:56] [Server thread/INFO]: [BarAPI] Loaded
[14:54:56] [Server thread/INFO]: [ClearLag] Enabling ClearLag v2.9.1
[14:54:56] [Server thread/INFO]: [ClearLag] Loading modules...
[14:54:56] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[14:54:56] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[14:54:56] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[14:54:56] [Thread-23/INFO]: [ClearLag] Checking for updates...
[14:54:56] [Server thread/INFO]: [AutoMessage] Enabling AutoMessage v2.5.5
[14:54:56] [Server thread/INFO]: [Administration_Panel] Enabling Administration_Panel v1.1.0
[14:54:56] [Server thread/INFO]: [AdministrationPanel]: Administration_Panel v1.1.0 has been enabled!
[14:54:56] [Server thread/INFO]: [MultiWorld] Enabling MultiWorld v5.2.8
[14:54:56] [Server thread/INFO]: -------- World Settings For [HubSpawn] --------
[14:54:56] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:56] [Server thread/INFO]: Anti X-Ray: true
[14:54:56] [Server thread/INFO]:    Engine Mode: 1
[14:54:56] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:56] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:56] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:56] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:56] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:56] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:56] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:56] [Server thread/INFO]: Random Lighting Updates: false
[14:54:56] [Server thread/INFO]: Structure Info Saving: true
[14:54:56] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:56] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:56] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:56] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:56] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:56] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:56] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:56] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:56] [Server thread/INFO]: View Distance: 7
[14:54:56] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:56] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:56] [Server thread/INFO]: Clear tick list: false
[14:54:56] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:56] [Server thread/INFO]: Preparing start region for level 3 (Seed: -5369054953291192043)
[14:54:56] [Thread-23/INFO]: [ClearLag] No updates found!
[14:54:56] [Server thread/INFO]: -------- World Settings For [Spawn] --------
[14:54:56] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:56] [Server thread/INFO]: Anti X-Ray: true
[14:54:56] [Server thread/INFO]:    Engine Mode: 1
[14:54:56] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:56] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:56] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:56] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:56] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:56] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:56] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:56] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:56] [Server thread/INFO]: Random Lighting Updates: false
[14:54:56] [Server thread/INFO]: Structure Info Saving: true
[14:54:56] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:56] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:56] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:56] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:56] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:56] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:56] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:56] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:56] [Server thread/INFO]: View Distance: 7
[14:54:56] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:56] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:56] [Server thread/INFO]: Clear tick list: false
[14:54:56] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:56] [Server thread/INFO]: Preparing start region for level 4 (Seed: 7958757789531042111)
[14:54:57] [Server thread/INFO]: -------- World Settings For [Survival] --------
[14:54:57] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:57] [Server thread/INFO]: Anti X-Ray: true
[14:54:57] [Server thread/INFO]:    Engine Mode: 1
[14:54:57] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:57] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:57] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:57] [Server thread/INFO]: Random Lighting Updates: false
[14:54:57] [Server thread/INFO]: Structure Info Saving: true
[14:54:57] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:57] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:57] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:57] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:57] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:57] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:57] [Server thread/INFO]: View Distance: 7
[14:54:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:57] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:57] [Server thread/INFO]: Clear tick list: false
[14:54:57] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:57] [Server thread/INFO]: Preparing start region for level 5 (Seed: -257909393677933252)
[14:54:57] [Server thread/INFO]: -------- World Settings For [builds] --------
[14:54:57] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:57] [Server thread/INFO]: Anti X-Ray: true
[14:54:57] [Server thread/INFO]:    Engine Mode: 1
[14:54:57] [Server thread/INFO]:    Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:57] [Server thread/INFO]:    Replace Blocks: [1, 5]
[14:54:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:54:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:54:57] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:54:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[14:54:57] [Server thread/INFO]: Alternative Hopper Ticking: false
[14:54:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[14:54:57] [Server thread/INFO]: Random Lighting Updates: false
[14:54:57] [Server thread/INFO]: Structure Info Saving: true
[14:54:57] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:57] [Server thread/INFO]: Max Entity Collisions: 8
[14:54:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:57] [Server thread/INFO]: Max TNT Explosions: 100
[14:54:57] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:57] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:57] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:54:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:57] [Server thread/INFO]: View Distance: 7
[14:54:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:57] [Server thread/INFO]: Chunks to Grow per Tick: 650
[14:54:57] [Server thread/INFO]: Clear tick list: false
[14:54:57] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:57] [Server thread/INFO]: Preparing start region for level 6 (Seed: -8301807971225199031)
[14:54:58] [Server thread/INFO]: [MultiWorld] v5.2.8 enabled.
[14:54:58] [Server thread/INFO]: [Trampoline] Enabling Trampoline v1.0
[14:54:58] [Server thread/INFO]: [ReportSystem] Enabling ReportSystem v1.0
[14:54:58] [Server thread/INFO]: ReportSystem Version 1.0 Enabled!
[14:54:58] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity
[14:54:58] [Server thread/INFO]: [ItemCases] Enabling ItemCases v1.5.1
[14:54:58] [Server thread/INFO]: [ItemCases] Loading Cases
[14:54:58] [Server thread/INFO]: [ItemCases] 2 Case(s) Loaded.
[14:54:58] [Server thread/INFO]: [ItemCases] Loading Item Names file
[14:54:58] [Server thread/INFO]: [ItemCases] 386 Item Names Loaded
[14:54:58] [Server thread/INFO]: [ItemCases] Loading extra data names now.
[14:54:58] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.4
[14:54:58] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[14:54:58] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[14:54:58] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[14:54:58] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[14:54:58] [Server thread/INFO]: [Vault][Chat] PermissionsEx_Chat hooked.
[14:54:58] [Server thread/INFO]: Essentials: Using PermissionsEx based permissions.
[14:54:58] [Server thread/INFO]: [TreeAssist] Enabling TreeAssist v5.8.91
[14:54:58] [Server thread/INFO]: [TreeAssist] debugging: off
[14:54:58] [Server thread/INFO]: [NoDropMine] Enabling NoDropMine v2.0
[14:54:58] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn vTeamCity
[14:54:58] [Server thread/INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.6
[14:54:58] [Server thread/INFO]: Starting FakaHedaMinequery server on 82.208.17.26:28086
[14:54:58] [Server thread/INFO]: [SignColorz] Enabling SignColorz v2.1
[14:54:58] [Server thread/INFO]: [SignColorz] v2.1enabled!
[14:54:58] [Server thread/INFO]: [TitleManager] Enabling TitleManager v1.5.12
[14:54:58] [Server thread/INFO]: [Jobs] Enabling Jobs v2.12.0
[14:54:58] [User Authenticator #2/INFO]: UUID of player EveryMan is 6772036e-442f-39a8-95d9-4265632be777
[14:54:58] [Server thread/WARN]: [Jobs] Job Weaponsmith has an invalid fullname property. Skipping job!
[14:54:58] [Jobs-DatabaseSaveTask/INFO]: [Jobs] Started database save task
[14:54:58] [Jobs-BufferedPaymentThread/INFO]: [Jobs] Started buffered payment thread
[14:54:58] [Server thread/INFO]: [Jobs] Plugin has been enabled succesfully.
[14:54:58] [Server thread/INFO]: [Trading] Enabling Trading v3.2
[14:54:59] [Server thread/INFO]: [Trading] Trading has been enabled
[14:54:59] [Server thread/INFO]: [Trading] Vault and Economy have been found!
[14:54:59] [Server thread/INFO]: [TNTRun] Enabling TNTRun v3.4
[14:54:59] [Server thread/INFO]: [KillerMoney] Enabling KillerMoney v3.13
[14:54:59] [Server thread/INFO]: [KillerMoney] Locale: "en" | Locale file: en_locale.yml
[14:54:59] [Server thread/INFO]: [KillerMoney] Metrics initialized
[14:54:59] [Server thread/INFO]: [1vs1] Enabling 1vs1 v1.6.7 #217
[14:54:59] [Server thread/INFO]: [1vs1] Connecting to sqlite database...
[14:54:59] [Server thread/INFO]: [1vs1] Connected!
[14:54:59] [Server thread/INFO]: [1vs1] Connecting to database
[14:54:59] [Server thread/INFO]: [1vs1] Connecting to sqlite database...
[14:54:59] [Server thread/INFO]: [1vs1] Connected!
[14:54:59] [Server thread/INFO]: [1vs1] 1vs1 enabled!
[14:54:59] [Server thread/INFO]: [SignShop] Enabling SignShop v2.11.0
[14:54:59] [Server thread/INFO]: [SignShop] Succesfully started Metrics, see http://mcstats.org for more information.
[14:54:59] [Server thread/INFO]: [SignShop] v2.11.0 Enabled
[14:54:59] [Server thread/INFO]: [InfoBoardReborn] Enabling InfoBoardReborn v1.7.0
[14:54:59] [Server thread/INFO]: Metrics was started!
[14:54:59] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.14-SNAPSHOT (build 1195)
[14:54:59] [Server thread/ERROR]: [Citizens] Unable to find Rhino classes - javascript scripts won't see non-CraftBukkit classes
[14:54:59] [Server thread/INFO]: [MoneyDrop] Enabling MoneyDrop v2.2.0
[14:54:59] [Server thread/INFO]: [MoneyDrop] loaded and ready for looting.
[14:54:59] [Server thread/INFO]: [OnTime] Enabling OnTime v4.1.4
[14:54:59] [Server thread/INFO]: [Residence] Enabling Residence v2.6.7.0
[14:54:59] [Server thread/INFO]: [Residence] Found Vault using permissions plugin:PermissionsEx
[14:54:59] [Server thread/INFO]: [Residence] Failed to update language file: Polish.yml
[14:54:59] [Server thread/INFO]: [Residence] Found WorldEdit
[14:54:59] [Server thread/INFO]: [Residence] Enabled! Version 2.6.7.0 by bekvon
[14:54:59] [Server thread/INFO]: [RandomTeleport] Enabling RandomTeleport v5.0.2
[14:54:59] [Server thread/INFO]: [RandomTeleport] [Updater] Auto-Update is disabled! If you would like to have RandomTP update itself automatically, please enable it in the config.
[14:54:59] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.8.12
[14:54:59] [Server thread/ERROR]: WARNING: you seem to not be using the Xerial SQLite driver.  See ORMLite docs on SQLite: http://ormlite.com/docs/sqlite
[14:54:59] [Server thread/INFO]: creating table 'items'
[14:54:59] [Server thread/INFO]: executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `items` (`id` INTEGER PRIMARY KEY AUTOINCREMENT , `code` VARCHAR NOT NULL ,  UNIQUE (`code`))
[14:54:59] [Server thread/ERROR]: WARNING: you seem to not be using the Xerial SQLite driver.  See ORMLite docs on SQLite: http://ormlite.com/docs/sqlite
[14:54:59] [Server thread/INFO]: creating table 'accounts'
[14:54:59] [Server thread/INFO]: creating index 'accounts_shortName_idx' for table 'accounts
[14:54:59] [Server thread/INFO]: executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `accounts` (`lastSeenName` VARCHAR NOT NULL , `name` VARCHAR NOT NULL , `shortName` VARCHAR NOT NULL , `uuid` VARCHAR NOT NULL , PRIMARY KEY (`name`) )
[14:54:59] [Server thread/INFO]: executed create table statement changed 0 rows: CREATE INDEX IF NOT EXISTS `accounts_shortName_idx` ON `accounts` ( `shortName` )
[14:55:00] [Server thread/INFO]: [ChestShop] LWC version 4.5.0-SNAPSHOT loaded.
[14:55:00] [Server thread/ERROR]: [ChestShop] You are using an old version of Residence! Please update to the newest one, which supports UUIDs: http://ci.drtshock.net/job/Residence/
[14:55:00] [Server thread/INFO]: [ChestShop] Residence version 2.6.7.0 loaded.
[14:55:00] [Server thread/INFO]: [ChestShop] Vault loaded! Found an economy plugin!
[14:55:00] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.0-SNAPSHOT
[14:55:00] [Server thread/INFO]: [AuthMe] Loading Configuration File...
[14:55:00] [Server thread/INFO]: [AuthMe] Set Language: en
[14:55:00] [Server thread/INFO]: [AuthMe] Metrics started successfully!
[14:55:00] [Server thread/INFO]: [AuthMe] Vault plugin detected, hook with PermissionsEx system
[14:55:00] [Server thread/INFO]: [AuthMe] Hook with Essentials plugin
[14:55:00] [Server thread/INFO]: [AuthMe] Hook with EssentialsSpawn plugin
[14:55:00] [Server thread/INFO]: [AuthMe] SQLite driver loaded
[14:55:00] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[14:55:00] [Server thread/INFO]: [AuthMe] [LICENSE] This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com
[14:55:00] [Server thread/INFO]: [AuthMe] AuthMe hook perfectly with server hosting VERYGAMES
[14:55:00] [Server thread/INFO]: [AuthMe] Authme 5.0-SNAPSHOT enabled
[14:55:00] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:55:00] [Server thread/INFO]: Done (8.143s)! For help, type "help" or "?"
[14:55:00] [Server thread/INFO]: Starting GS4 status listener
[14:55:00] [Query Listener #1/INFO]: Query running on 82.208.17.26:27086
[14:55:00] [Craft Scheduler Thread - 14/INFO]: [TitleManager] Searching for updates.
[14:55:00] [Server thread/INFO]: [Jobs] [Jobs] Successfully linked with Vault.
[14:55:00] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[14:55:00] [Craft Scheduler Thread - 26/INFO]: [Vault] Checking for Updates ...
[14:55:00] [Craft Scheduler Thread - 14/INFO]: [TitleManager] No update was found.
[14:55:00] [Craft Scheduler Thread - 22/INFO]: [1vs1] ***** 1vs1 Version Checker *****
[14:55:00] [Craft Scheduler Thread - 22/INFO]: [1vs1] Stable Build: #217
[14:55:00] [Craft Scheduler Thread - 22/INFO]: [1vs1] Current Build: #217
[14:55:00] [Craft Scheduler Thread - 22/INFO]: [1vs1] No new version available
[14:55:00] [Craft Scheduler Thread - 22/INFO]: [1vs1] *********************************
[14:55:00] [Craft Scheduler Thread - 26/INFO]: [Vault] No new version available
[14:55:00] [Server thread/INFO]: Fifinka[/31.31.234.255:62637] logged in with entity id 1188 at ([Survival] -26.30000001192093, 74.24918707874468, -128.73315617161842)
[14:55:00] [Server thread/INFO]: EveryMan[/31.31.234.255:58945] logged in with entity id 1189 at ([Survival] -72.0181426818757, 81.13591917756413, -120.09126437093857)
[14:55:01] [Server thread/INFO]: Fifinka se pripojil na server
[14:55:01] [Server thread/INFO]: EveryMan se pripojil na server
[14:55:01] [Craft Scheduler Thread - 24/WARN]: [AuthMe] ERROR: Error on creating an inventory cache for fifinka, maybe inventory wipe in preparation...
[14:55:01] [User Authenticator #3/INFO]: UUID of player tomasosaurus839 is 3774328d-bad1-3982-a7da-41732b30e8e1
[14:55:01] [Server thread/INFO]: tomasosaurus839[/84.244.117.7:64879] logged in with entity id 1212 at ([Survival] -3.5980971222748486, 198.85489329934836, -115.51219702041307)
[14:55:01] [Server thread/INFO]: tomasosaurus839 se pripojil na server
[14:55:01] [Thread-30/WARN]: Exception in thread "Thread-30"
[14:55:01] [Thread-30/WARN]: java.lang.NoClassDefFoundError: net/md_5/bungee/api/ChatColor
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.shared.utils.SkinFetchUtils.c(SkinFetchUtils.java:100)
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.shared.utils.SkinFetchUtils$SkinFetchFailedException$Reason.<clinit>(SkinFetchUtils.java:77)
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.shared.utils.MojangAPI.getProfile(MojangAPI.java:46)
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.shared.utils.SkinFetchUtils.fetchSkinProfile(SkinFetchUtils.java:38)
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.shared.format.SkinProfile.attemptUpdate(SkinProfile.java:55)
[14:55:01] [Thread-30/WARN]:    at skinsrestorer.bukkit.listeners.LoginListener$2.run(LoginListener.java:82)
[14:55:01] [Thread-30/WARN]:    at java.lang.Thread.run(Thread.java:745)
[14:55:01] [Thread-30/WARN]: Caused by: java.lang.ClassNotFoundException: net.md_5.bungee.api.ChatColor
[14:55:01] [Thread-30/WARN]:    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
[14:55:01] [Thread-30/WARN]:    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:101)
[14:55:01] [Thread-30/WARN]:    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:86)
[14:55:01] [Thread-30/WARN]:    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
[14:55:01] [Thread-30/WARN]:    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
[14:55:01] [Thread-30/WARN]:    ... 7 more
[14:55:02] [Server thread/INFO]: [KillerMoney] ------------------------------
[14:55:02] [Server thread/INFO]: [KillerMoney] | Update found!
[14:55:02] [Server thread/INFO]: [KillerMoney] | Your version: 3.13 | new version: 3.15
[14:55:02] [Server thread/INFO]: [KillerMoney] | Please update KillerMoney!
[14:55:02] [Server thread/INFO]: [KillerMoney] | http://dev.bukkit.org/bukkit-plugins/killermoney/
[14:55:02] [Server thread/INFO]: [KillerMoney] ------------------------------
[14:55:15] [Craft Scheduler Thread - 20/INFO]: [AuthMe] tomasosaurus839 logged in!
[14:55:19] [User Authenticator #4/INFO]: UUID of player EveryMan is 6772036e-442f-39a8-95d9-4265632be777
[14:55:19] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4d461d29[id=6772036e-442f-39a8-95d9-4265632be777,name=EveryMan,properties={textures=[com.mojang.authlib.properties.Property@35119ac3]},legacy=false] (/31.31.234.255:60457): Na serveru je stejny nick!
[14:55:19] [Server thread/INFO]: com.mojang.authlib.GameProfile@4d461d29[id=6772036e-442f-39a8-95d9-4265632be777,name=EveryMan,properties={textures=[com.mojang.authlib.properties.Property@35119ac3]},legacy=false] (/31.31.234.255:60457) lost connection: Na serveru je stejny nick!
[14:55:31] [Server thread/INFO]: EveryMan lost connection: Disconnected
[14:55:31] [Server thread/INFO]: EveryMan se odpojil ze serveru
[14:55:32] [Craft Scheduler Thread - 7/INFO]: [AuthMe] Set Fifinka to gamemode: SURVIVAL
[14:55:32] [Server thread/INFO]: Fifinka lost connection: Vyprsel cas k prihlaseni
[14:55:32] [Server thread/INFO]: Fifinka se odpojil ze serveru
[14:55:32] [Server thread/INFO]: CONSOLE issued server command: /kick EveryMan
[14:55:32] [Server thread/INFO]: Chyba: Hrac nenalezen.
[14:55:36] [User Authenticator #5/INFO]: UUID of player EveryMan is 6772036e-442f-39a8-95d9-4265632be777
[14:55:36] [Server thread/INFO]: EveryMan[/31.31.234.255:58231] logged in with entity id 1238 at ([Survival] -72.0181426818757, 81.13591917756413, -120.09126437093857)
[14:55:36] [Server thread/INFO]: EveryMan se pripojil na server
[14:55:39] [User Authenticator #6/INFO]: UUID of player _LukkilCZ_ is 7304e1dc-bbd3-3965-8145-cb9e0661fa6d
[14:55:39] [Server thread/INFO]: _LukkilCZ_[/85.71.122.116:64094] logged in with entity id 1356 at ([Survival] -22.463426022965532, 77.5, -123.22599387959283)
[14:55:39] [Server thread/INFO]: _LukkilCZ_ se pripojil na server
[14:55:40] [Async Chat Thread - #0/INFO]: [VIP]  tomasosaurus839 : Every ?
[14:55:41] [Craft Scheduler Thread - 7/INFO]: [AuthMe] EveryMan logged in!
[14:55:44] [Async Chat Thread - #0/INFO]: [Admin]  EveryMan : jo
[14:55:45] [Craft Scheduler Thread - 7/INFO]: [AuthMe] _LukkilCZ_ logged in!
[14:55:45] [User Authenticator #7/INFO]: UUID of player Fifinka is adb6fea4-6062-3b4f-8ff7-f404fa61491f
[14:55:45] [Server thread/INFO]: Fifinka[/31.31.234.255:50452] logged in with entity id 1374 at ([Survival] -26.30000001192093, 74.05318707492998, -128.73315617161842)
[14:55:45] [Async Chat Thread - #0/INFO]: [Admin]  EveryMan : ?
[14:55:45] [Server thread/INFO]: Fifinka se pripojil na server
[14:55:50] [Async Chat Thread - #0/INFO]: [Admin]  EveryMan : twl
[14:55:50] [Async Chat Thread - #0/INFO]: [VIP]  tomasosaurus839 : Už to jde :DDDDDD
[14:55:53] [Craft Scheduler Thread - 7/INFO]: [AuthMe] Fifinka logged in!
[14:55:54] [Async Chat Thread - #0/INFO]: [Hrac]  _LukkilCZ_ : EveryMan PŘIJMI TO PLS
[14:55:55] [Async Chat Thread - #0/INFO]: [Hrac]  _LukkilCZ_ : :D
[14:56:04] [Async Chat Thread - #0/INFO]: [Admin]  EveryMan : nemám tam nic
[14:56:05] [Server thread/INFO]: Fifinka was slain by tomasosaurus839
[14:56:15] [Server thread/INFO]: _LukkilCZ_ issued server command: /msg EveryMan máš tam barta jako profilovku ?
[14:56:16] [Async Chat Thread - #0/INFO]: [Admin]  EveryMan : tomas jenže tu není residence
[14:56:17] [Server thread/INFO]: Fifinka issued server
Pravda zvítězí nad lží a nenávistí

Uživatelský avatar
TopCz
Příspěvky: 667
Věk: 27
Registrován: 15 led 2014, 21:00
Reputation: 11
Kontaktovat uživatele:

Re: Residence

#5 Příspěvekod TopCz » 29 čer 2016, 15:43

V logu nic není. Opravdu ti doporučuji naistalovat residenci ze spigotu! Odkaz na stažení zde http://ltcraft.lt/Residence/
Obrázek

Uživatelský avatar
EveryMan
Příspěvky: 133
Registrován: 17 bře 2015, 20:55
Reputation: 0

Re: Residence

#6 Příspěvekod EveryMan » 29 čer 2016, 17:10

Zkusím, a někde nějakej návod jak to nastavit?
Pravda zvítězí nad lží a nenávistí

Uživatelský avatar
TopCz
Příspěvky: 667
Věk: 27
Registrován: 15 led 2014, 21:00
Reputation: 11
Kontaktovat uživatele:

Re: Residence

#7 Příspěvekod TopCz » 29 čer 2016, 17:21

Funguje stejně jako stará residence jen je opravená a udržována...

Všechny informace atd máš na stránkách https://www.spigotmc.org/resources/resi ... -10.11480/

Musíš být ale přihlášen jinak stránku nezobrazíš
Obrázek

Uživatelský avatar
EveryMan
Příspěvky: 133
Registrován: 17 bře 2015, 20:55
Reputation: 0

Re: Residence

#8 Příspěvekod EveryMan » 29 čer 2016, 17:36

díky, ale nikde jsem nenašel jak se dá nastavit velikost residence.
Pravda zvítězí nad lží a nenávistí

Uživatelský avatar
TopCz
Příspěvky: 667
Věk: 27
Registrován: 15 led 2014, 21:00
Reputation: 11
Kontaktovat uživatele:

Re: Residence

#9 Příspěvekod TopCz » 29 čer 2016, 19:05

Vše se nachazí v configu popripade pokud chces napriklat pro admini nebo tak neco vetsi redidenci vyhledej soubor group.yml nachazi se ve slozce redidence format je stejny jako u stare verze co si pouzival akorat se to nenachazi uz v configu..
Obrázek

Uživatelský avatar
EveryMan
Příspěvky: 133
Registrován: 17 bře 2015, 20:55
Reputation: 0

Re: Residence

#10 Příspěvekod EveryMan » 29 čer 2016, 19:08

Kód: Vybrat vše

 Size:
    # Minimal size of residence in blocks
    # 1000 is 10x10x10 residence size
    MinimalSize: 1
    MinimalX: 1000
    MinimalY: 1000
    MinimalZ: 1000


Myslel jsem toto
Pravda zvítězí nad lží a nenávistí


Zpět na „Minecraft, Tekkit“

Kdo je online

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