residence tp

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

residence tp

#1 Příspěvekod houdeks » 21 lis 2012, 20:59

Server: IP:victor.fakaheda.eu:37333

Mam problem s residenci- po nahrani noveho configu prestalo fungovat portovani a ja fakt nwm proc...

config:
Spoiler: zobrazit

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: English
    # Wooden Axe 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: 280
    # 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: true
    # 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
    # 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: true
        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:
    Players: #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: 5
           # The maximum number of physical areas a residence can have.
           MaxAreasPerResidence: 2
           # The maximum number of blocks a Residence can be, East to West (X).
           MaxEastWest: 25
           # The maximum number of blocks a Residence can be, North to South (Z).
           MaxNorthSouth: 25
           # 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 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.05
          # 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.
    VIP: #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: 20
           # The maximum number of physical areas a residence can have.
           MaxAreasPerResidence: 2
           # The maximum number of blocks a Residence can be, East to West (X).
           MaxEastWest: 25
           # The maximum number of blocks a Residence can be, North to South (Z).
           MaxNorthSouth: 25
           # 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 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.05
          # 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
 
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333

houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

Re: residence tp

#2 Příspěvekod houdeks » 21 lis 2012, 21:02

PEX:

Spoiler: zobrazit

Kód: Vybrat vše

 groups:
  Players:
    prefix: '&4Hrac'
    default: true
    permissions:
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - blxp.info
    - scsigns.use
    - essentials.home
    - naughtyblocks.waterbucket
    - naughtyblocks.lavabucket
    - naughtyblocks.flintandsteel
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.Preventions.MobsDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
    - CreativeControl.Preventions.Enchantments
    - CreativeControl.Preventions.InteractVillagers
  Admins:
    prefix: '&4Admin'
    permissions:
    - modifyworld.*
    - '*'
    - permissions.*
    - residence.admin
    - blxp.admin
    - worldedit.wand
  Majitele:
    prefix: '&4Majitel'
    permissions:
    - modifyworld.*
  pluginator:
    prefix: '&4pluginator'
    permissions:
    - modifyworld.*
  helper:
    prefix: '&4Helper'
    permissions:
    - essentials.tp
    - essentials.tp.others
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawner
    - essentials.spawner.[mob]
    - CreativeControl.World.Keep
    - CreativeControl.Preventions.InteractVillagers
    - essentials.time
    - residence.create
    - eia.*
    - essentials.kick
    - serverqueue.nokick
    - serverqueue.vip
    - magiccarpet.mc
    - monsterbox.set
    - monsterbox.view
    - monsterbox.drops
    - monsterbox.place
    - blxp.send
    - blxp.use
    - blxp.info
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - essentials.home
    - essentials.gamemode
    - hatme.hat
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - essentials.spawner
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
  VIP:
    prefix: '&4VIP'
    permissions:
    - essentials.workbench
    - essentials.spawner
    - essentials.spawner.[mob]
    - essentials.time
    - residence.create
    - eia.*
    - serverqueue.nokick
    - serverqueue.vip
    - essentials.spawner
    - magiccarpet.mc
    - monsterbox.set
    - hatme.hat
    - monsterbox.view
    - monsterbox.drops
    - monsterbox.place
    - blxp.send
    - blxp.use
    - blxp.info
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - essentials.home
    - naughtyblocks.waterbucket
    - naughtyblocks.lavabucket
    - naughtyblocks.flintandsteel
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
  Builder:
    prefix: '&4builder'
    permissions:
    - essentials.gamemode
    - worldedit.*
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
users:
  AterCZ:
    group:
    - Admins
  Arthesiik:
    group:
    - Admins
  Tomasko:
    group:
    - Admins
  Urabrask123:
    group:
    - VIP
  Slasi:
    group:
    - Admins
  airsoft14:
    group:
    - helper
    - VIP
  Herobrine:
    group:
    - Hrac
  klofan8:
    group:
    - Players
    - hrac
    - VIP
  Nimbalo:
    group:
    - Players
    - VIP
  ratatoyle:
    group:
    - VIP
  Medry:
    group:
    - VIP
  Alcoholic:
    group:
    - VIP
  Keegan:
    group:
    - VIP
  FiN:
    group:
    - VIP
 

skopirovali se spatne- doopravdy je vsechno na spravnem miste
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333

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

Re: residence tp

#3 Příspěvekod nejento » 21 lis 2012, 23:09

Nevím, jestli je tohle chyba ale budiž :D
Spoiler: zobrazit

Kód: Vybrat vše

groups:
  Players:
    prefix: '&4Hrac'
    default: true
    permissions:
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - blxp.info
    - scsigns.use
    - essentials.home
    - naughtyblocks.waterbucket
    - naughtyblocks.lavabucket
    - naughtyblocks.flintandsteel
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.Preventions.MobsDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
    - CreativeControl.Preventions.Enchantments
    - CreativeControl.Preventions.InteractVillagers
  Admins:
    prefix: '&4Admin'
    permissions:
    - modifyworld.*
    - '*'
    - permissions.*
    - residence.admin
    - blxp.admin
    - worldedit.wand
  Majitele:
    prefix: '&4Majitel'
    permissions:
    - modifyworld.*
  pluginator:
    prefix: '&4pluginator'
    permissions:
    - modifyworld.*
  helper:
    prefix: '&4Helper'
    permissions:
    - essentials.tp
    - essentials.tp.others
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawner
    - essentials.spawner.[mob]
    - CreativeControl.World.Keep
    - CreativeControl.Preventions.InteractVillagers
    - essentials.time
    - residence.create
    - eia.*
    - essentials.kick
    - serverqueue.nokick
    - serverqueue.vip
    - magiccarpet.mc
    - monsterbox.set
    - monsterbox.view
    - monsterbox.drops
    - monsterbox.place
    - blxp.send
    - blxp.use
    - blxp.info
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - essentials.home
    - essentials.gamemode
    - hatme.hat
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - essentials.spawner
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
  VIP:
    prefix: '&4VIP'
    permissions:
    - essentials.workbench
    - essentials.spawner
    - essentials.spawner.[mob]
    - essentials.time
    - residence.create
    - eia.*
    - serverqueue.nokick
    - serverqueue.vip
    - essentials.spawner
    - magiccarpet.mc
    - monsterbox.set
    - hatme.hat
    - monsterbox.view
    - monsterbox.drops
    - monsterbox.place
    - blxp.send
    - blxp.use
    - blxp.info
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - essentials.home
    - naughtyblocks.waterbucket
    - naughtyblocks.lavabucket
    - naughtyblocks.flintandsteel
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
  Builder:
    prefix: '&4builder'
    permissions:
    - essentials.gamemode
    - worldedit.*
    - essentials.pay
    - essentials.sell
    - essentials.afk
    - essentials.msg
    - essentials.msg
    - essentials.spawn
    - essentials.warp
    - essentials.sethome
    - scsigns.use
    - CreativeControl.Preventions.Mobs
    - CreativeControl.Preventions.Pickup
    - CreativeControl.Preventions.ItemDrop
    - CreativeControl.OwnBlocks
    - CreativeControl.Break.Limit
users:
  AterCZ:
    group:
    - Admins
  Arthesiik:
    group:
    - Admins
  Tomasko:
    group:
    - Admins
  Urabrask123:
    group:
    - VIP
  Slasi:
    group:
    - Admins
  airsoft14:
    group:
    - helper
    - VIP
  Herobrine:
    group:
    - Hrac
  klofan8:
    group:
    - Players
    - hrac
    - VIP
  Nimbalo:
    group:
    - Players
    - VIP
  ratatoyle:
    group:
    - VIP
  Medry:
    group:
    - VIP
  Alcoholic:
    group:
    - VIP
  Keegan:
    group:
    - VIP
  FiN:
    group:
    - VIP


Jinak jak portovat?
Dej sem server.log při startu.
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/

houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

Re: residence tp

#4 Příspěvekod houdeks » 22 lis 2012, 11:06

Portovani /res tp nazevresky + hracum prestalo jit tvorit residence...

server.log:
Spoiler: zobrazit

Kód: Vybrat vše

[FakaHeda] Successfully authorized 81.201.63.59!
> 10:05:04 [INFO] [FalseBookExtra] Loading FalseBookExtra v0.93.1alpha
> 10:05:04 [INFO] Preparing level "world"
> 10:05:04 [INFO] Preparing start region for level 0 (Seed: 8228320550495455083)
> 10:05:05 [INFO] Preparing start region for level 1 (Seed: 5822997766481732027)
> 10:05:05 [INFO] Preparing start region for level 2 (Seed: 5822997766481732027)
> 10:05:05 [INFO] [MagicCarpet] Enabling MagicCarpet v2.2.3 (FULL)
> 10:05:05 [INFO] [MagicCarpet] Loading carpets...
> 10:05:05 [INFO] [MagicCarpet] is now enabled!
> 10:05:05 [INFO] [ServerQueue] Enabling ServerQueue v0.3.0
> 10:05:05 [INFO] [ServerQueue] There are 0/10(10+0) Players online.
> 10:05:05 [INFO] [ServerQueue] v0.3.0 is enabled!
> 10:05:05 [INFO] [LagMeter] Enabling LagMeter v1.9.0
> 10:05:05 [INFO] [LagMeter] Not using logs folder.
> 10:05:05 [INFO] [LagMeter 1.9.0] Enabled! Polling every 40 server ticks. Logging to /hlserver/37333/plugins/LagMeter/lag.log
> 10:05:05 [INFO] [Waypoints] Enabling Waypoints v1.1-2
> 10:05:05 [INFO] This plugin sends minimal data back to www.mcstats.org. To opt-out, edit the config inside the folder "PluginMetrics"
> 10:05:05 [INFO] [LOL] Enabling LOL v1.1.1
> 10:05:05 [INFO] LOL v1.1.1 has been enabled!
> 10:05:05 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.1
> 10:05:05 [INFO] [WorldEdit] Enabling WorldEdit v1120-f11e2ba
> 10:05:05 [INFO] WEPIF: Using the Bukkit Permissions API.
> 10:05:06 [INFO] [CreativeControl] Enabling CreativeControl v5.1
> 10:05:06 [INFO] [CreativeControl]: Loading Modules...
> 10:05:06 [INFO] [CreativeControl]: Initializing configurations...
> 10:05:06 [INFO] [CreativeControl]: Regions: 0
> 10:05:06 [INFO] [CreativeControl]: Registring Events...
> 10:05:06 [INFO] [CreativeControl]: Vault Plugin Not Found
> 10:05:06 [INFO] [CreativeControl]: Defaulting to SuperPerms
> 10:05:06 [INFO] [CreativeControl]: LogBlock hooked as logging plugin
> 10:05:06 [INFO] [CreativeControl]: Connecting to the SQLite Database...
> 10:05:06 [INFO] [CreativeControl]: SQLite Connected Successfuly!
> 10:05:06 [INFO] [CreativeControl] CreativeControl v5.1 Enabled
> 10:05:06 [INFO] cjobs] Enabling mcjobs v3.1.8
> 10:05:06 [INFO] cjobs] Using builtin logging methods.
> 10:05:06 [INFO] cjobs] No economy bridge found! Going to XP economy.
> 10:05:06 [INFO] cjobs] LOADED JOBS: digger miner builder carpenter soldier tinkerer woodsman farmer toolmaker weaponsmith armorer fisherman baker alchemist brewer enchanter theurgist conjurer bulldozer taxes
> 10:05:06 [INFO] cjobs] MC Jobs has been enabled!
> 10:05:06 [INFO] [NoWeather] Enabling NoWeather v1.7.6
> 10:05:06 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
> 10:05:06 [INFO] [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
> 10:05:06 [INFO] [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
> 10:05:06 [INFO] [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 8228320550495455083
> 10:05:06 [INFO] [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: 5822997766481732027
> 10:05:06 [INFO] [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: 5822997766481732027
> 10:05:06 [INFO] [Multiverse-Core] Loading World & Settings - 'Prdel' - Env: NORMAL - Type: NORMAL & seed: 445090542971762080
> 10:05:06 [INFO] Preparing start region for level 3 (Seed: 445090542971762080)
> 10:05:06 [INFO] [Multiverse-Core] Loading World & Settings - 'Parkis' - Env: NORMAL - Type: NORMAL & seed: -2883727916950807412
> 10:05:06 [INFO] Preparing start region for level 4 (Seed: -2883727916950807412)
> 10:05:07 [INFO] [Multiverse-Core] Loading World & Settings - 'Ptak' - Env: NORMAL - Type: NORMAL & seed: 576158442630924665
> 10:05:07 [INFO] Preparing start region for level 5 (Seed: 576158442630924665)
> 10:05:07 [INFO] [Multiverse-Core] 6 - World(s) loaded.
> 10:05:07 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.2
> 10:05:07 [INFO] [PermissionsEx] Superperms support enabled.
> 10:05:07 [INFO] [PermissionsEx] v1.19.2 enabled
> 10:05:07 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
> 10:05:07 [INFO] [Stargate] Enabling Stargate v0.7.7.4
> 10:05:07 [INFO] Stargate v.0.7.7.4 is enabled.
> 10:05:07 [INFO] [Stargate] Loaded 7 gate layouts
> 10:05:07 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
> 10:05:07 [INFO] [Stargate::register] Network not in allPortalsNet, adding
> 10:05:07 [INFO] [Stargate] {world} Loaded 6 stargates with 0 set as always-on
> 10:05:07 [INFO] [Stargate] {world_nether} No stargates for world
> 10:05:07 [INFO] [Stargate] {world_the_end} No stargates for world
> 10:05:07 [INFO] [Stargate] {Prdel} Loaded 1 stargates with 0 set as always-on
> 10:05:07 [INFO] [Stargate] {Parkis} No stargates for world
> 10:05:07 [INFO] [Stargate] {Ptak} Loaded 1 stargates with 0 set as always-on
> 10:05:07 [INFO] [SpawnMob] Enabling SpawnMob v3.0
> 10:05:07 [INFO] Configuration files loaded.
> 10:05:07 [INFO] [SpawnMob] Using ops.txt!
> 10:05:07 [INFO] [SpawnMob] Version 3.0 enabled.
> 10:05:07 [INFO] [LogBlock] Enabling LogBlock v1.60
> 10:05:07 [INFO] [LogBlock] Scheduled consumer with bukkit scheduler.
> 10:05:07 [INFO] [blXP] Enabling blXP v0.3.1
> 10:05:07 [INFO] [MobileAdmin] Enabling MobileAdmin v3.2.5
> 10:05:07 [INFO] [MobileAdmin] Loading server stats.
> 10:05:07 [INFO] [MobileAdmin] Loading chat log.
> 10:05:07 [INFO] [MobileAdmin] Loading users.
> 10:05:07 [INFO] [MobileAdmin] Starting server...
> 10:05:07 [INFO] [MobileAdmin] Version 3.2.5 is enabled!
> 10:05:07 [INFO] [DispenserRefill] Enabling DispenserRefill v1.0.0
> > > 10:05:07 [INFO] [DispenserRefill] Loaded 0 dispensers from database.
> > 10:05:07 [INFO] [Naughty Blocks] Enabling Naughty Blocks v1.1
> 10:05:07 [INFO] [SignColours] Enabling SignColours v1.5
> 10:05:07 [INFO] SignColours version 1.5 by ichingpow enabled.
> 10:05:07 [INFO] [SpawnerAdjuster] Enabling SpawnerAdjuster v1.8.1
> 10:05:07 [INFO] [SpawnerAdjuster][1.8.1] Loading config ...
> 10:05:07 [INFO] [SpawnerAdjuster][1.8.1] Creature storage array cleaning task set with ID: 18
> 10:05:07 [INFO] [SpawnerAdjuster][1.8.1] Loading complete
> 10:05:07 [INFO] [TrollingNoobs] Enabling TrollingNoobs v1.3
> 10:05:07 [INFO] [Shopkeepers] Enabling Shopkeepers v1.6.1
> 10:05:08 [INFO] [MobileAdmin] Server listening on victor.fakaheda.eu:3733:36333
> 10:05:08 [INFO] [HatMe] Enabling HatMe v2.0.0
> 10:05:08 [INFO] [HatMe] Start Plugin... (Version: 2.0.0)
> 10:05:08 [INFO] [HatMe] Plugin Loaded!
> 10:05:08 [INFO] [EasyEnchant] Enabling EasyEnchant v1.2.2c
> 10:05:08 [INFO] [EasyEnchant] Version 1.2.2c Is Enabled!
> 10:05:08 [INFO] [iConomy] Enabling iConomy v7.0
> 10:05:08 [INFO] [iConomy - April Fools] Enabled (11 ms)
> 10:05:08 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
> 10:05:08 [INFO] [iConomy - April Fools] Purged accounts with default balance.
> 10:05:08 [INFO] [AuthMe] Enabling AuthMe v2.6.3b7
> 10:05:08 [INFO] [AuthMe] Loading Configuration File...
> 10:05:08 [INFO] [AuthMe] Authme 2.6.3b7 enabled
> 10:05:08 [INFO] [Cestinator] Enabling Cestinator v1.0
> 10:05:08 [INFO] Plugin Cestinator byl uspesne zapnut !
> 10:05:08 [INFO] Config byl nalezen.
> 10:05:08 [INFO] [ColorMe] Enabling ColorMe v3.4.1
> 10:05:08 [INFO] ColorMe 3.4.1 is enabled!
> 10:05:08 [WARNING] Vault was NOT found! Running without economy!
> 10:05:08 [WARNING] Running without Spout!
> 10:05:08 [INFO] [DispenserFiller] Enabling DispenserFiller v1.0
> 10:05:08 [INFO] [DispenserFiller] Enabled.
> 10:05:08 [INFO] [TimedMessages] Enabling TimedMessages v1.2.2
> 10:05:08 [CONFIG] [TimedMessages] Loading configuration: MessagesConfiguration.
> 10:05:08 [CONFIG] [TimedMessages] Using path: plugins/TimedMessages/messages.yml.
> 10:05:08 [CONFIG] [TimedMessages] Setting defaults.
> 10:05:08 [CONFIG] [TimedMessages] Saving messages.yml.
> 10:05:08 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.reload (default: op).
> 10:05:08 [FINE] [TimedMessages] <CommandManager> Adding command: ReloadCommand
> 10:05:08 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.start (default: op).
> 10:05:08 [FINE] [TimedMessages] <CommandManager> Adding command: StartCommand
> 10:05:08 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.status (default: op).
> 10:05:08 [FINE] [TimedMessages] <CommandManager> Adding command: StatusCommand
> 10:05:08 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.stop (default: op).
> 10:05:08 [FINE] [TimedMessages] <CommandManager> Adding command: StopCommand
> 10:05:08 [INFO] [FalseBookCore] Enabling FalseBookCore v0.93.1alpha
> 10:05:08 [INFO] [ FalseBook Core ] using PermissionsEx for Permissions!
> 10:05:08 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo enabled!
> 10:05:08 [INFO] [MobArena] Enabling MobArena v0.94.4.81
> 10:05:08 [INFO] [MobArena] No boss abilities found. Extracting defaults...
> 10:05:08 [SEVERE] [MobArena] Couldn't extract the default boss abilities!
> 10:05:08 [WARNING] [MobArena] Vault was not found. Economy rewards will not work!
> 10:05:08 [WARNING] [MobArena] Invalid boss ability 'arrows' for wave 'boss1' in arena 'default'.
> 10:05:08 [WARNING] [MobArena] Invalid boss ability 'root-target' for wave 'boss1' in arena 'default'.
> 10:05:08 [WARNING] [MobArena] Invalid boss ability 'throw-nearby' for wave 'boss1' in arena 'default'.
> 10:05:09 [INFO] [MobArena] v0.94.4.81 enabled.
> 10:05:09 [INFO] [FalseBookCart] Enabling FalseBookCart v0.93.1alpha
> 10:05:09 [INFO] 0 locked storagecarts loaded.
> 10:05:09 [INFO] [ FalseBook Cart ] FalseBookCart v0.93.1alpha by GeMo enabled
> 10:05:09 [INFO] [MobDispenser] Enabling MobDispenser v1.0.0a3
> 10:05:09 [INFO] [MobDispenser] MobDispenser has been enabled
> 10:05:09 [INFO] [Essentials] Enabling Essentials vDev2.9.90
> 10:05:09 [INFO] Essentials: Using PermissionsEx based permissions.
> 10:05:09 [INFO] [Essentials] Payment method found (iConomy version: 6)
> 10:05:09 [INFO] [Residence] Enabling Residence v2.6.6
> 10:05:09 [INFO] [Residence] Permissions plugin NOT FOUND!
> 10:05:09 [INFO] [Residence] Scanning for economy systems...
> 10:05:09 [INFO] [Residence] Vault NOT found!
> 10:05:09 [INFO] [Residence] BOSEconomy NOT found!
> 10:05:09 [INFO] [Residence] Successfully linked with Essentials Economy!
> 10:05:09 [INFO] [Residence] Found WorldEdit
> 10:05:09 [INFO] [Residence] Enabled! Version 2.6.6 by bekvon
> 10:05:09 [INFO] [DeathMsg] Enabling DeathMsg v0.2
> 10:05:09 [INFO] [DeathMsg] Death Messages Are Now Enabled On You Server
> 10:05:09 [INFO] [FalseBookChat] Enabling FalseBookChat v0.93.1alpha
> 10:05:09 [INFO] [ FalseBook Chat ] FalseBookChat v0.93.1alpha by GeMo enabled
> 10:05:09 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn vDev2.9.90
> 10:05:09 [INFO] [FalseBookBlock] Enabling FalseBookBlock v0.93.1alpha
> 10:05:09 [INFO] [ FalseBook Block ] 0 Doors successfully loaded.
> 10:05:09 [INFO] [ FalseBook Block ] 0 Areas loaded.
> 10:05:09 [INFO] [ FalseBook Block ] 0 Bridges successfully loaded.
> 10:05:09 [INFO] [ FalseBook Block ] No Cauldrons loaded!
> 10:05:09 [INFO] [ FalseBook Block ] No Books loaded!
> 10:05:09 [INFO] [ FalseBook Block ] 3 protected gateblocks successfully loaded.
> 10:05:09 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo enabled
> 10:05:09 [INFO] [CreativeGates] Enabling CreativeGates v1.3.5
> 10:05:09 [INFO] [CreativeGates v1.3.5] === ENABLE START ===
> 10:05:09 [INFO] [CreativeGates v1.3.5] === ENABLE DONE (Took 135ms) ===
> 10:05:09 [INFO] [FalseBookIC] Enabling FalseBookIC v0.93.1alpha
> 10:05:09 [INFO] [ FalseBook IC ] Error while reading file: plugins/FalseBook/FalseBookIC.properties
> 10:05:09 [INFO] [ FalseBook IC ] FalseBookIC v0.93.1alpha by GeMo enabled
> 10:05:09 [INFO] [ChestShop] Enabling ChestShop v3.46
> 10:05:09 [INFO] [ChestShop] Essentials version 2.8.2 loaded.
> 10:05:10 [INFO] [EssentialsChat] Enabling EssentialsChat vDev2.9.90
> 10:05:10 [INFO] [FalseBookExtra] Enabling FalseBookExtra v0.93.1alpha
> 10:05:10 [INFO] [ FalseBook Extra ] 7 protected blocks in 'world' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_nether' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_the_end' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Prdel' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] 14 protected blocks in 'Parkis' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Ptak' loaded.
> 10:05:10 [INFO] [ FalseBook Extra ] FalseBookExtra v0.93.1alpha by GeMo enabled
> 10:05:10 [INFO] Server permissions file permissions.yml is empty, ignoring it
> 10:05:10 [INFO] Done (5.789s)! For help, type "help" or "?"
> 10:05:10 [INFO] Starting GS4 status listener
> 10:05:10 [INFO] Starting remote control listener
> 10:05:10 [INFO] Query running on 93.91.240.153:37333
> 10:05:10 [WARNING] Unable to initialise rcon on 93.91.240.153:36333 : Address already in use
> 10:05:10 [INFO] /79.98.153.134:55122 lost connection
> 10:05:11 [INFO] [ FalseBook IC ] Loaded selftriggered ICs: 0 done
> 10:05:11 [INFO] [ FalseBook IC ] Failed selftriggered ICs: 0 failed
> 10:05:11 [FINE] [TimedMessages] <PluginUpdater> Fetching resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
> 10:05:11 [FINE] [TimedMessages] <PluginUpdater> Saving resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
> 10:05:11 [FINE] [TimedMessages] <PluginUpdater> Local version: 1.2.2.
> 10:05:11 [FINE] [TimedMessages] <PluginUpdater> Remote version: 1.2.2.
> 10:05:17 [INFO] New Version Found: v5.2 (You have: v5.1)
> 10:05:17 [INFO] Visit: http://bit.ly/creativecontrol/



WTF?! Permissions plugin not found- mam tam PEX...
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333

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

Re: residence tp

#5 Příspěvekod nejento » 22 lis 2012, 17:04

Nainstaluj si plugin Vault: http://dev.bukkit.org/server-mods/Vault
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/

houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

Re: residence tp

#6 Příspěvekod houdeks » 23 lis 2012, 17:28

Pořád nejde /res tp jmenoresky ani adminům... nwm proč...
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333

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

Re: residence tp

#7 Příspěvekod nejento » 23 lis 2012, 17:56

Mají permission - residence.admin
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/

houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

Re: residence tp

#8 Příspěvekod houdeks » 23 lis 2012, 17:57

no admini mají.
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333

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

Re: residence tp

#9 Příspěvekod nejento » 23 lis 2012, 17:59

Tak šup sem se server.logem při startu.
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/

houdeks
Příspěvky: 297
Registrován: 19 čer 2012, 20:22
Reputation: 0

Re: residence tp

#10 Příspěvekod houdeks » 23 lis 2012, 18:05

Spoiler: zobrazit

Kód: Vybrat vše

2012-11-21 15:36:57 [INFO] Starting minecraft server version 1.4.5
2012-11-21 15:36:57 [INFO] Loading properties
2012-11-21 15:36:57 [INFO] Default game type: SURVIVAL
2012-11-21 15:36:57 [INFO] Generating keypair
2012-11-21 15:36:57 [INFO] Starting Minecraft server on 93.91.240.153:37333
2012-11-21 15:36:57 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2012-11-21 15:36:57 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2012-11-21 15:36:57 [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.
2012-11-21 15:36:57 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2012-11-21 15:36:58 [INFO] This server is running CraftBukkit version git-Bukkit-1.4.5-R0.2-b2488jnks (MC: 1.4.5) (Implementing API version 1.4.5-R0.2)
2012-11-21 15:36:58 [INFO] ----- Bukkit Auto Updater -----
2012-11-21 15:36:58 [INFO] It appears that you're running a Beta Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
2012-11-21 15:36:58 [INFO] If you would like to be kept informed about new Beta Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'beta'.
2012-11-21 15:36:58 [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.
2012-11-21 15:36:58 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
2012-11-21 15:36:58 [INFO] ----- ------------------- -----
2012-11-21 15:36:59 [INFO] Starting FakaHedaMinequery server on 93.91.240.153:38333
2012-11-21 15:36:59 [INFO] [PermissionsEx] sql backend registered!
2012-11-21 15:36:59 [INFO] [PermissionsEx] file backend registered!
2012-11-21 15:36:59 [INFO] [PermissionsEx] PermissionEx plugin initialized.
2012-11-21 15:36:59 [INFO] [MagicCarpet] Loading MagicCarpet v2.2.3 (FULL)
2012-11-21 15:36:59 [INFO] [ServerQueue] Loading ServerQueue v0.3.0
2012-11-21 15:36:59 [INFO] [LagMeter] Loading LagMeter v1.9.0
2012-11-21 15:36:59 [INFO] [Waypoints] Loading Waypoints v1.1-2
2012-11-21 15:36:59 [INFO] [LOL] Loading LOL v1.1.1
2012-11-21 15:36:59 [INFO] [WorldEdit] Loading WorldEdit v1120-f11e2ba
2012-11-21 15:36:59 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.1
2012-11-21 15:36:59 [INFO] [CreativeControl] Loading CreativeControl v5.1
2012-11-21 15:36:59 [INFO] [mcjobs] Loading mcjobs v3.1.8
2012-11-21 15:36:59 [INFO] [NoWeather] Loading NoWeather v1.7.6
2012-11-21 15:36:59 [INFO] [Multiverse-Core] Loading Multiverse-Core v2.4-b527
2012-11-21 15:36:59 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.2
2012-11-21 15:36:59 [INFO] [PermissionsEx] Initializing file backend
2012-11-21 15:36:59 [INFO] [Stargate] Loading Stargate v0.7.7.4
2012-11-21 15:36:59 [INFO] [SpawnMob] Loading SpawnMob v3.0
2012-11-21 15:36:59 [INFO] [LogBlock] Loading LogBlock v1.60
2012-11-21 15:36:59 [INFO] [LogBlock] Connecting to gs_37333_1@jdbc:mysql://localhost:3306/gs_37333_1...
2012-11-21 15:37:00 [INFO] [blXP] Loading blXP v0.3.1
2012-11-21 15:37:00 [INFO] [MobileAdmin] Loading MobileAdmin v3.2.5
2012-11-21 15:37:00 [INFO] [DispenserRefill] Loading DispenserRefill v1.0.0
2012-11-21 15:37:00 [INFO] [Naughty Blocks] Loading Naughty Blocks v1.1
2012-11-21 15:37:00 [INFO] [SignColours] Loading SignColours v1.5
2012-11-21 15:37:00 [INFO] [Spectate] Loading Spectate v1.9.1
2012-11-21 15:37:00 [INFO] [SpawnerAdjuster] Loading SpawnerAdjuster v1.8.1
2012-11-21 15:37:00 [INFO] [TrollingNoobs] Loading TrollingNoobs v1.3
2012-11-21 15:37:00 [INFO] [Shopkeepers] Loading Shopkeepers v1.6.1
2012-11-21 15:37:00 [INFO] [HatMe] Loading HatMe v2.0.0
2012-11-21 15:37:00 [INFO] [EasyEnchant] Loading EasyEnchant v1.2.2c
2012-11-21 15:37:00 [INFO] [iConomy] Loading iConomy v7.0
2012-11-21 15:37:00 [INFO] [AuthMe] Loading AuthMe v2.6.3b7
2012-11-21 15:37:00 [INFO] [Cestinator] Loading Cestinator v1.0
2012-11-21 15:37:00 [INFO] [ColorMe] Loading ColorMe v3.4.1
2012-11-21 15:37:00 [INFO] [DispenserFiller] Loading DispenserFiller v1.0
2012-11-21 15:37:00 [INFO] [TimedMessages] Loading TimedMessages v1.2.2
2012-11-21 15:37:00 [INFO] [FalseBookCore] Loading FalseBookCore v0.93.1alpha
2012-11-21 15:37:00 [INFO] [MonsterBox] Loading MonsterBox v0.6
2012-11-21 15:37:00 [INFO] [MobArena] Loading MobArena v0.94.4.81
2012-11-21 15:37:00 [INFO] [MobDispenser] Loading MobDispenser v1.0.0a3
2012-11-21 15:37:00 [INFO] [FalseBookCart] Loading FalseBookCart v0.93.1alpha
2012-11-21 15:37:00 [INFO] [Essentials] Loading Essentials vDev2.9.90
2012-11-21 15:37:00 [INFO] [Residence] Loading Residence v2.6.6
2012-11-21 15:37:00 [INFO] [DeathMsg] Loading DeathMsg v0.2
2012-11-21 15:37:00 [INFO] [FalseBookChat] Loading FalseBookChat v0.93.1alpha
2012-11-21 15:37:00 [INFO] [EssentialsSpawn] Loading EssentialsSpawn vDev2.9.90
2012-11-21 15:37:00 [INFO] [FalseBookBlock] Loading FalseBookBlock v0.93.1alpha
2012-11-21 15:37:00 [INFO] [CreativeGates] Loading CreativeGates v1.3.5
2012-11-21 15:37:00 [INFO] [FalseBookIC] Loading FalseBookIC v0.93.1alpha
2012-11-21 15:37:00 [INFO] [ChestShop] Loading ChestShop v3.46
2012-11-21 15:37:00 [INFO] [EssentialsChat] Loading EssentialsChat vDev2.9.90
2012-11-21 15:37:00 [INFO] [FalseBookExtra] Loading FalseBookExtra v0.93.1alpha
2012-11-21 15:37:00 [INFO] Preparing level "world"
2012-11-21 15:37:00 [INFO] Preparing start region for level 0 (Seed: 8228320550495455083)
2012-11-21 15:37:01 [INFO] Preparing start region for level 1 (Seed: 5822997766481732027)
2012-11-21 15:37:01 [INFO] Preparing spawn area: 16%
2012-11-21 15:37:01 [INFO] Preparing start region for level 2 (Seed: 5822997766481732027)
2012-11-21 15:37:01 [INFO] [MagicCarpet] Enabling MagicCarpet v2.2.3 (FULL)
2012-11-21 15:37:01 [INFO] [MagicCarpet] Loading carpets...
2012-11-21 15:37:02 [INFO] [MagicCarpet] is now enabled!
2012-11-21 15:37:02 [INFO] [ServerQueue] Enabling ServerQueue v0.3.0
2012-11-21 15:37:02 [INFO] [ServerQueue] There are 0/10(10+0) Players online.
2012-11-21 15:37:02 [INFO] [ServerQueue] v0.3.0 is enabled!
2012-11-21 15:37:02 [INFO] [LagMeter] Enabling LagMeter v1.9.0
2012-11-21 15:37:02 [INFO] [LagMeter] Not using logs folder.
2012-11-21 15:37:02 [INFO] [LagMeter 1.9.0] Enabled!  Polling every 40 server ticks.  Logging to /hlserver/37333/plugins/LagMeter/lag.log
2012-11-21 15:37:02 [INFO] [Waypoints] Enabling Waypoints v1.1-2
2012-11-21 15:37:02 [INFO] This plugin sends minimal data back to www.mcstats.org. To opt-out, edit the config inside the folder "PluginMetrics"
2012-11-21 15:37:02 [INFO] [LOL] Enabling LOL v1.1.1
2012-11-21 15:37:02 [INFO] LOL v1.1.1 has been enabled!
2012-11-21 15:37:02 [INFO] [WorldEdit] Enabling WorldEdit v1120-f11e2ba
2012-11-21 15:37:02 [INFO] WEPIF: Using the Bukkit Permissions API.
2012-11-21 15:37:02 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.1
2012-11-21 15:37:02 [INFO] [CreativeControl] Enabling CreativeControl v5.1
2012-11-21 15:37:02 [INFO] [CreativeControl]: Loading Modules...
2012-11-21 15:37:02 [INFO] [CreativeControl]: Initializing configurations...
2012-11-21 15:37:02 [INFO] [CreativeControl]: Regions: 0
2012-11-21 15:37:02 [INFO] [CreativeControl]: Registring Events...
2012-11-21 15:37:02 [INFO] [CreativeControl]: Vault Plugin Not Found
2012-11-21 15:37:02 [INFO] [CreativeControl]: Defaulting to SuperPerms
2012-11-21 15:37:02 [INFO] [CreativeControl]: LogBlock hooked as logging plugin
2012-11-21 15:37:02 [INFO] [CreativeControl]: Connecting to the SQLite Database...
2012-11-21 15:37:02 [INFO] [CreativeControl]: SQLite Connected Successfuly!
2012-11-21 15:37:02 [INFO] [CreativeControl] CreativeControl v5.1 Enabled
2012-11-21 15:37:02 [INFO] [mcjobs] Enabling mcjobs v3.1.8
2012-11-21 15:37:02 [INFO] [mcjobs] Using builtin logging methods.
2012-11-21 15:37:02 [INFO] [mcjobs] No economy bridge found!  Going to XP economy.
2012-11-21 15:37:02 [INFO] [mcjobs] LOADED JOBS: digger miner builder carpenter soldier tinkerer woodsman farmer toolmaker weaponsmith armorer fisherman baker alchemist brewer enchanter theurgist conjurer bulldozer taxes
2012-11-21 15:37:02 [INFO] [mcjobs] MC Jobs has been enabled!
2012-11-21 15:37:02 [INFO] [NoWeather] Enabling NoWeather v1.7.6
2012-11-21 15:37:02 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
2012-11-21 15:37:02 [INFO] [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
2012-11-21 15:37:03 [INFO] [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
2012-11-21 15:37:03 [INFO] [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 8228320550495455083
2012-11-21 15:37:03 [INFO] [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: 5822997766481732027
2012-11-21 15:37:03 [INFO] [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: 5822997766481732027
2012-11-21 15:37:03 [INFO] [Multiverse-Core] Loading World & Settings - 'Prdel' - Env: NORMAL - Type: NORMAL & seed: 445090542971762080
2012-11-21 15:37:03 [INFO] Preparing start region for level 3 (Seed: 445090542971762080)
2012-11-21 15:37:04 [INFO] [Multiverse-Core] Loading World & Settings - 'Parkis' - Env: NORMAL - Type: NORMAL & seed: -2883727916950807412
2012-11-21 15:37:04 [INFO] Preparing start region for level 4 (Seed: -2883727916950807412)
2012-11-21 15:37:05 [INFO] [Multiverse-Core] Loading World & Settings - 'Ptak' - Env: NORMAL - Type: NORMAL & seed: 576158442630924665
2012-11-21 15:37:05 [INFO] Preparing start region for level 5 (Seed: 576158442630924665)
2012-11-21 15:37:05 [INFO] [Multiverse-Core] 6 - World(s) loaded.
2012-11-21 15:37:05 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.2
2012-11-21 15:37:05 [INFO] [PermissionsEx] Superperms support enabled.
2012-11-21 15:37:05 [INFO] [PermissionsEx] v1.19.2 enabled
2012-11-21 15:37:05 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2012-11-21 15:37:05 [INFO] [Stargate] Enabling Stargate v0.7.7.4
2012-11-21 15:37:05 [INFO] Stargate v.0.7.7.4 is enabled.
2012-11-21 15:37:05 [INFO] [Stargate] Loaded 7 gate layouts
2012-11-21 15:37:06 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
2012-11-21 15:37:06 [INFO] [Stargate::register] Network not in allPortalsNet, adding
2012-11-21 15:37:06 [INFO] [Stargate] {world} Loaded 6 stargates with 0 set as always-on
2012-11-21 15:37:06 [INFO] [Stargate] {world_nether} No stargates for world
2012-11-21 15:37:06 [INFO] [Stargate] {world_the_end} No stargates for world
2012-11-21 15:37:06 [INFO] [Stargate] {Prdel} Loaded 1 stargates with 0 set as always-on
2012-11-21 15:37:06 [INFO] [Stargate] {Parkis} No stargates for world
2012-11-21 15:37:06 [INFO] [Stargate] {Ptak} Loaded 1 stargates with 0 set as always-on
2012-11-21 15:37:06 [INFO] [SpawnMob] Enabling SpawnMob v3.0
2012-11-21 15:37:06 [INFO] Configuration files loaded.
2012-11-21 15:37:06 [INFO] [SpawnMob] Using ops.txt!
2012-11-21 15:37:06 [INFO] [SpawnMob] Version 3.0 enabled.
2012-11-21 15:37:06 [INFO] [LogBlock] Enabling LogBlock v1.60
2012-11-21 15:37:06 [INFO] [LogBlock] Scheduled consumer with bukkit scheduler.
2012-11-21 15:37:06 [INFO] [blXP] Enabling blXP v0.3.1
2012-11-21 15:37:06 [INFO] [MobileAdmin] Enabling MobileAdmin v3.2.5
2012-11-21 15:37:06 [INFO] [MobileAdmin] Loading server stats.
2012-11-21 15:37:06 [INFO] [MobileAdmin] Loading chat log.
2012-11-21 15:37:07 [INFO] [MobileAdmin] Loading users.
2012-11-21 15:37:07 [INFO] [MobileAdmin] Starting server...
2012-11-21 15:37:07 [INFO] [MobileAdmin] Version 3.2.5 is enabled!
2012-11-21 15:37:07 [INFO] [DispenserRefill] Enabling DispenserRefill v1.0.0
2012-11-21 15:37:07 [FINEST] [DispenserRefill] Hooking commands.
2012-11-21 15:37:07 [FINEST] [DispenserRefill] Creating data dirs.
2012-11-21 15:37:07 [INFO] [DispenserRefill] Loaded 0 dispensers from database.
2012-11-21 15:37:07 [FINEST] [DispenserRefill] Registering events.
2012-11-21 15:37:07 [INFO] [Naughty Blocks] Enabling Naughty Blocks v1.1
2012-11-21 15:37:07 [INFO] [MobileAdmin] Server listening on victor.fakaheda.eu:3733:36333
2012-11-21 15:37:07 [INFO] [SignColours] Enabling SignColours v1.5
2012-11-21 15:37:07 [INFO] SignColours version 1.5 by ichingpow enabled.
2012-11-21 15:37:07 [INFO] [Spectate] Enabling Spectate v1.9.1
2012-11-21 15:37:07 [INFO] [Spectate] Spectate v1.9.1 enabled!
2012-11-21 15:37:07 [INFO] [SpawnerAdjuster] Enabling SpawnerAdjuster v1.8.1
2012-11-21 15:37:07 [INFO] [SpawnerAdjuster][1.8.1] Loading config ...
2012-11-21 15:37:07 [INFO] [SpawnerAdjuster][1.8.1] Creature storage array cleaning task set with ID: 19
2012-11-21 15:37:07 [INFO] [SpawnerAdjuster][1.8.1] Loading complete
2012-11-21 15:37:07 [INFO] [TrollingNoobs] Enabling TrollingNoobs v1.3
2012-11-21 15:37:07 [INFO] [Shopkeepers] Enabling Shopkeepers v1.6.1
2012-11-21 15:37:07 [INFO] [HatMe] Enabling HatMe v2.0.0
2012-11-21 15:37:07 [INFO] [HatMe] Start Plugin... (Version: 2.0.0)
2012-11-21 15:37:07 [INFO] [HatMe] Plugin Loaded!
2012-11-21 15:37:07 [INFO] [EasyEnchant] Enabling EasyEnchant v1.2.2c
2012-11-21 15:37:07 [INFO] [EasyEnchant] Version 1.2.2c Is Enabled!
2012-11-21 15:37:07 [INFO] [iConomy] Enabling iConomy v7.0
2012-11-21 15:37:07 [INFO] [iConomy - April Fools] Enabled (46 ms)
2012-11-21 15:37:07 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2012-11-21 15:37:07 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2012-11-21 15:37:08 [INFO] [AuthMe] Enabling AuthMe v2.6.3b7
2012-11-21 15:37:08 [INFO] [AuthMe] Loading Configuration File...
2012-11-21 15:37:08 [INFO] [AuthMe] Authme 2.6.3b7 enabled
2012-11-21 15:37:08 [INFO] [Cestinator] Enabling Cestinator v1.0
2012-11-21 15:37:08 [INFO] Plugin Cestinator byl uspesne zapnut !
2012-11-21 15:37:08 [INFO] Config byl nalezen.
2012-11-21 15:37:08 [INFO] [ColorMe] Enabling ColorMe v3.4.1
2012-11-21 15:37:08 [INFO] ColorMe 3.4.1 is enabled!
2012-11-21 15:37:08 [WARNING] Vault was NOT found! Running without economy!
2012-11-21 15:37:08 [WARNING] Running without Spout!
2012-11-21 15:37:09 [INFO] [DispenserFiller] Enabling DispenserFiller v1.0
2012-11-21 15:37:09 [INFO] [DispenserFiller] Enabled.
2012-11-21 15:37:09 [INFO] [TimedMessages] Enabling TimedMessages v1.2.2
2012-11-21 15:37:09 [CONFIG] [TimedMessages] Loading configuration: MessagesConfiguration.
2012-11-21 15:37:09 [CONFIG] [TimedMessages] Using path: plugins/TimedMessages/messages.yml.
2012-11-21 15:37:09 [CONFIG] [TimedMessages] Setting defaults.
2012-11-21 15:37:09 [CONFIG] [TimedMessages] Saving messages.yml.
2012-11-21 15:37:09 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.reload (default: op).
2012-11-21 15:37:09 [FINE] [TimedMessages] <CommandManager> Adding command: ReloadCommand
2012-11-21 15:37:09 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.start (default: op).
2012-11-21 15:37:09 [FINE] [TimedMessages] <CommandManager> Adding command: StartCommand
2012-11-21 15:37:09 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.status (default: op).
2012-11-21 15:37:09 [FINE] [TimedMessages] <CommandManager> Adding command: StatusCommand
2012-11-21 15:37:09 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.stop (default: op).
2012-11-21 15:37:09 [FINE] [TimedMessages] <CommandManager> Adding command: StopCommand
2012-11-21 15:37:09 [INFO] [FalseBookCore] Enabling FalseBookCore v0.93.1alpha
2012-11-21 15:37:09 [INFO] [ FalseBook Core ] using PermissionsEx for Permissions!
2012-11-21 15:37:09 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo enabled!
2012-11-21 15:37:09 [INFO] [MonsterBox] Enabling MonsterBox v0.6
2012-11-21 15:37:09 [INFO] [MonsterBox] Spout not detected. Disabling spout support.
2012-11-21 15:37:09 [INFO] MonsterBox version 0.6 is enabled!
2012-11-21 15:37:10 [INFO] [MobArena] Enabling MobArena v0.94.4.81
2012-11-21 15:37:10 [INFO] [MobArena] No boss abilities found. Extracting defaults...
2012-11-21 15:37:10 [SEVERE] [MobArena] Couldn't extract the default boss abilities!
2012-11-21 15:37:10 [WARNING] [MobArena] Vault was not found. Economy rewards will not work!
2012-11-21 15:37:10 [WARNING] [MobArena] Invalid boss ability 'arrows' for wave 'boss1' in arena 'default'.
2012-11-21 15:37:10 [WARNING] [MobArena] Invalid boss ability 'root-target' for wave 'boss1' in arena 'default'.
2012-11-21 15:37:10 [WARNING] [MobArena] Invalid boss ability 'throw-nearby' for wave 'boss1' in arena 'default'.
2012-11-21 15:37:10 [INFO] [MobArena] v0.94.4.81 enabled.
2012-11-21 15:37:10 [INFO] [MobDispenser] Enabling MobDispenser v1.0.0a3
2012-11-21 15:37:10 [INFO] [MobDispenser] MobDispenser has been enabled
2012-11-21 15:37:10 [INFO] [FalseBookCart] Enabling FalseBookCart v0.93.1alpha
2012-11-21 15:37:10 [INFO] 0 locked storagecarts loaded.
2012-11-21 15:37:10 [INFO] [ FalseBook Cart ] FalseBookCart v0.93.1alpha by GeMo enabled
2012-11-21 15:37:11 [INFO] [Essentials] Enabling Essentials vDev2.9.90
2012-11-21 15:37:11 [INFO] Essentials: Using PermissionsEx based permissions.
2012-11-21 15:37:11 [INFO] [Essentials] Payment method found (iConomy version: 6)
2012-11-21 15:37:11 [INFO] [Residence] Enabling Residence v2.6.6
2012-11-21 15:37:11 [INFO] [Residence] Permissions plugin NOT FOUND!
2012-11-21 15:37:11 [INFO] [Residence] Scanning for economy systems...
2012-11-21 15:37:11 [INFO] [Residence] Vault NOT found!
2012-11-21 15:37:11 [INFO] [Residence] BOSEconomy NOT found!
2012-11-21 15:37:11 [INFO] [Residence] Successfully linked with Essentials Economy!
2012-11-21 15:37:11 [INFO] [Residence] Found WorldEdit
2012-11-21 15:37:11 [INFO] [Residence] Enabled! Version 2.6.6 by bekvon
2012-11-21 15:37:11 [INFO] [DeathMsg] Enabling DeathMsg v0.2
2012-11-21 15:37:11 [INFO] [DeathMsg] Death Messages Are Now Enabled On You Server
2012-11-21 15:37:11 [INFO] [FalseBookChat] Enabling FalseBookChat v0.93.1alpha
2012-11-21 15:37:11 [INFO] [ FalseBook Chat ] FalseBookChat v0.93.1alpha by GeMo enabled
2012-11-21 15:37:11 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn vDev2.9.90
2012-11-21 15:37:11 [INFO] [FalseBookBlock] Enabling FalseBookBlock v0.93.1alpha
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] 0 Doors successfully loaded.
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] 0 Areas loaded.
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] 0 Bridges successfully loaded.
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] No Cauldrons loaded!
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] No Books loaded!
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] 3 protected gateblocks successfully loaded.
2012-11-21 15:37:11 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo enabled
2012-11-21 15:37:11 [INFO] [CreativeGates] Enabling CreativeGates v1.3.5
2012-11-21 15:37:11 [INFO] [CreativeGates v1.3.5] === ENABLE START ===
2012-11-21 15:37:12 [INFO] [CreativeGates v1.3.5] === ENABLE DONE (Took 155ms) ===
2012-11-21 15:37:12 [INFO] [FalseBookIC] Enabling FalseBookIC v0.93.1alpha
2012-11-21 15:37:12 [INFO] [ FalseBook IC ] Error while reading file: plugins/FalseBook/FalseBookIC.properties
2012-11-21 15:37:12 [INFO] [ FalseBook IC ] FalseBookIC v0.93.1alpha by GeMo enabled
2012-11-21 15:37:12 [INFO] [ChestShop] Enabling ChestShop v3.46
2012-11-21 15:37:12 [INFO] [ChestShop] Essentials version 2.8.2 loaded.
2012-11-21 15:37:13 [INFO] [EssentialsChat] Enabling EssentialsChat vDev2.9.90
2012-11-21 15:37:13 [INFO] [FalseBookExtra] Enabling FalseBookExtra v0.93.1alpha
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 7 protected blocks in 'world' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_nether' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_the_end' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Prdel' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 14 protected blocks in 'Parkis' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Ptak' loaded.
2012-11-21 15:37:13 [INFO] [ FalseBook Extra ] FalseBookExtra v0.93.1alpha by GeMo enabled
2012-11-21 15:37:13 [INFO] Server permissions file permissions.yml is empty, ignoring it
2012-11-21 15:37:14 [INFO] Done (14.580s)! For help, type "help" or "?"
2012-11-21 15:37:14 [INFO] Starting GS4 status listener
2012-11-21 15:37:14 [INFO] Starting remote control listener
2012-11-21 15:37:14 [INFO] Query running on 93.91.240.153:37333
2012-11-21 15:37:14 [WARNING] Unable to initialise rcon on 93.91.240.153:36333 : Address already in use
2012-11-21 15:37:15 [INFO] /212.79.106.7:52080 lost connection
2012-11-21 15:37:15 [INFO] /213.181.130.126:2691 lost connection
2012-11-21 15:37:15 [INFO] /81.200.59.4:56979 lost connection
2012-11-21 15:37:15 [INFO] /88.102.215.89:12684 lost connection
2012-11-21 15:37:16 [INFO] [ FalseBook IC ] Loaded selftriggered ICs: 0 done
2012-11-21 15:37:16 [INFO] [ FalseBook IC ] Failed selftriggered ICs: 0 failed
2012-11-21 15:37:17 [INFO] Nimbalo[/83.208.89.152:51084] logged in with entity id 1458 at ([world] 2574.98995530661, 40.0, 742.3261784897402)
2012-11-21 15:37:20 [INFO] New Version Found: v5.2 (You have: v5.1)
2012-11-21 15:37:20 [INFO] Visit: http://bit.ly/creativecontrol/
2012-11-21 15:37:22 [INFO] klofan8[/212.79.106.7:52093] logged in with entity id 1732 at ([world] 2578.8073719039044, 26.0, 762.2964982548888)
2012-11-21 15:37:26 [INFO] klofan8 issued server command: /login poklop
2012-11-21 15:37:26 [INFO] [AuthMe] §4Hracklofan8§f logged in!
2012-11-21 15:37:27 [INFO] Nimbalo issued server command: /login Nimbalo Nimbalo
2012-11-21 15:37:27 [INFO] [AuthMe] §4HracNimbalo§f logged in!
2012-11-21 15:37:31 [FINE] [TimedMessages] <PluginUpdater> Fetching resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
2012-11-21 15:37:31 [FINE] [TimedMessages] <PluginUpdater> Saving resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
2012-11-21 15:37:31 [FINE] [TimedMessages] <PluginUpdater> Local version: 1.2.2.
2012-11-21 15:37:31 [FINE] [TimedMessages] <PluginUpdater> Remote version: 1.2.2.
2012-11-21 15:37:33 [INFO] Alcoholic[/213.181.130.126:2708] logged in with entity id 1842 at ([world] 75.263913186357, 63.0, 851.6665664634164)
2012-11-21 15:37:40 [INFO] [world]<HracNimbalo> neeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
2012-11-21 15:37:40 [INFO] [world]<Hracklofan8> to si delas *****
2012-11-21 15:37:40 [INFO] Alcoholic issued server command: /login 123456
2012-11-21 15:37:40 [INFO] [AuthMe] §4VIPAlcoholic§f logged in!
2012-11-21 15:37:43 [INFO] Alcoholic issued server command: /home
2012-11-21 15:37:43 [INFO] [PLAYER_COMMAND] Alcoholic: /home 
2012-11-21 15:37:44 [INFO] AterCZ[/81.201.63.59:58081] logged in with entity id 1873 at ([world] 2577.9676717278853, 26.0, 763.8345649237314)
2012-11-21 15:37:48 [INFO] AterCZ issued server command: /login Kleslo123
2012-11-21 15:37:48 [INFO] [AuthMe] §4AdminAterCZ§f logged in!
2012-11-21 15:37:53 [INFO] [world]<Hracklofan8> atere to pr** proc
2012-11-21 15:37:59 [INFO] [world]<HracNimbalo> atere co si to udelal
2012-11-21 15:38:01 [INFO] 4Majitel [world]<AdminAterCZ> co jsi ztratil?
2012-11-21 15:38:05 [INFO] meltyV[/81.200.59.4:2071] logged in with entity id 5874 at ([world] -1313.7534882247544, 64.0, 605.3614110246602)
2012-11-21 15:38:05 [INFO] [world]<Hracklofan8> dia
2012-11-21 15:38:08 [INFO] 4Majitel [world]<AdminAterCZ> vsichni pojdte na spawn
2012-11-21 15:38:12 [INFO] 4Majitel [world]<AdminAterCZ> odskodnim vas
2012-11-21 15:38:12 [INFO] [world]<VIPAlcoholic> 16 dia
2012-11-21 15:38:12 [INFO] klofan8 issued server command: /spawn
2012-11-21 15:38:12 [INFO] [PLAYER_COMMAND] klofan8: /spawn 
2012-11-21 15:38:12 [INFO] AterCZ issued server command: /spawn
2012-11-21 15:38:12 [INFO] [PLAYER_COMMAND] AterCZ: /spawn 
2012-11-21 15:38:13 [INFO] meltyV issued server command: /login Vesemirs1.
2012-11-21 15:38:13 [INFO] [AuthMe] §7HracmeltyV§f logged in!
2012-11-21 15:38:14 [INFO] [world]<HracNimbalo> ten seznam je dlouhej
2012-11-21 15:38:15 [INFO] [world]<HracmeltyV> AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
2012-11-21 15:38:17 [INFO] Alcoholic issued server command: /spawn
2012-11-21 15:38:17 [INFO] [PLAYER_COMMAND] Alcoholic: /spawn 
2012-11-21 15:38:18 [INFO] [world]<HracmeltyV> AUuuuuuuuuuuuuuuuuuuuuuu
2012-11-21 15:38:26 [INFO] [world]<HracmeltyV> ZABĂ­t!!!!!!!
2012-11-21 15:38:28 [INFO] [world]<HracmeltyV> zabyt
2012-11-21 15:38:31 [INFO] [world]<HracmeltyV> Zabyt
2012-11-21 15:38:32 [INFO] AterCZ issued server command: /s nimbalo
2012-11-21 15:38:32 [INFO] [PLAYER_COMMAND] AterCZ: /s nimbalo
2012-11-21 15:38:35 [INFO] Slasi[/81.200.59.4:2657] logged in with entity id 8634 at ([world] -1269.2920962055964, 63.0, 645.0721317906426)
2012-11-21 15:38:39 [INFO] [world]<HracmeltyV> UABIIIIIIIIIIIIIIIIIIIIT SVABI NA SLASIHO :D
2012-11-21 15:38:41 [INFO] Slasi issued server command: /login slasi
2012-11-21 15:38:41 [INFO] [AuthMe] §4AdminSlasi§f logged in!
2012-11-21 15:38:43 [INFO] [world]<Hracklofan8> brambory a mrkve
2012-11-21 15:38:47 [INFO] Medry[/88.102.215.89:12748] logged in with entity id 8877 at ([world] -523.6999999880791, 38.53584062504456, 888.6002513257594)
2012-11-21 15:38:48 [INFO] [world]<HracNimbalo> asi 10 bloku v te mega mistnosti tak 30 dia 50 zlata
2012-11-21 15:39:06 [INFO] Medry issued server command: /login 1480136803
2012-11-21 15:39:06 [INFO] [AuthMe] §4VIPMedry§f logged in!
2012-11-21 15:39:09 [INFO] [world]<HracNimbalo> vykopes tu mistnost
2012-11-21 15:39:14 [INFO] [world]<Hracklofan8> mrkve a brambor by nebyl
2012-11-21 15:39:18 [INFO] 4Majitel [world]<AdminAterCZ> staci
2012-11-21 15:39:21 [INFO] [world]<Hracklofan8> j
2012-11-21 15:39:30 [INFO] klofan8 issued server command: /home
2012-11-21 15:39:30 [INFO] [PLAYER_COMMAND] klofan8: /home 
2012-11-21 15:39:34 [INFO] Nimbalo issued server command: /home
2012-11-21 15:39:34 [INFO] [PLAYER_COMMAND] Nimbalo: /home 
2012-11-21 15:39:36 [INFO] Connection reset
2012-11-21 15:39:36 [INFO] meltyV lost connection: disconnect.quitting
2012-11-21 15:39:36 [INFO] [mcjobs] Saving meltyV file
2012-11-21 15:39:44 [INFO] [world]<HracNimbalo> vykopes tu mistnost
2012-11-21 15:39:57 [INFO] Alcoholic issued server command: /home
2012-11-21 15:39:57 [INFO] [PLAYER_COMMAND] Alcoholic: /home 
2012-11-21 15:40:07 [INFO] [world]<Hracklofan8> a mrkev a bramobr
2012-11-21 15:40:46 [INFO] Connection reset
2012-11-21 15:40:46 [INFO] Slasi lost connection: disconnect.endOfStream
2012-11-21 15:40:46 [INFO] [mcjobs] Saving Slasi file
2012-11-21 15:41:04 [INFO] Medry issued server command: /home
2012-11-21 15:41:04 [INFO] [PLAYER_COMMAND] Medry: /home 
2012-11-21 15:41:16 [INFO] AterCZ issued server command: /plugins
2012-11-21 15:42:24 [INFO] AterCZ issued server command: /say RESTART
2012-11-21 15:42:24 [INFO] [AterCZ] RESTART
2012-11-21 15:42:24 [INFO] [Server] RESTART
2012-11-21 15:42:25 [INFO] AterCZ issued server command: /stop
2012-11-21 15:42:25 [INFO] AterCZ: Stopping the server..
2012-11-21 15:42:25 [INFO] Stopping server
2012-11-21 15:42:25 [INFO] [FalseBookExtra] Disabling FalseBookExtra v0.93.1alpha
2012-11-21 15:42:25 [INFO] [ FalseBook Extra ] FalseBookExtra v0.93.1alpha by GeMo disabled
2012-11-21 15:42:25 [INFO] [EssentialsChat] Disabling EssentialsChat vDev2.9.90
2012-11-21 15:42:25 [INFO] [ChestShop] Disabling ChestShop v3.46
2012-11-21 15:42:25 [INFO] [FalseBookIC] Disabling FalseBookIC v0.93.1alpha
2012-11-21 15:42:25 [INFO] [ FalseBook IC ] FalseBookIC v0.93.1alpha by GeMo disabled
2012-11-21 15:42:25 [INFO] [CreativeGates] Disabling CreativeGates v1.3.5
2012-11-21 15:42:25 [INFO] [CreativeGates v1.3.5] Disabled
2012-11-21 15:42:25 [INFO] [FalseBookBlock] Disabling FalseBookBlock v0.93.1alpha
2012-11-21 15:42:25 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo disabled
2012-11-21 15:42:25 [INFO] [EssentialsSpawn] Disabling EssentialsSpawn vDev2.9.90
2012-11-21 15:42:25 [INFO] [FalseBookChat] Disabling FalseBookChat v0.93.1alpha
2012-11-21 15:42:25 [INFO] FalseBookChat v0.93.1alpha by GeMo disabled
2012-11-21 15:42:25 [INFO] [DeathMsg] Disabling DeathMsg v0.2
2012-11-21 15:42:25 [INFO] [DeathMsg] Death Messages Have Now Been Disabled
2012-11-21 15:42:25 [INFO] [Residence] Disabling Residence v2.6.6
2012-11-21 15:42:25 [INFO] [Residence] Disabled!
2012-11-21 15:42:25 [INFO] [Essentials] Disabling Essentials vDev2.9.90
2012-11-21 15:42:25 [INFO] [FalseBookCart] Disabling FalseBookCart v0.93.1alpha
2012-11-21 15:42:25 [INFO] [ FalseBook Cart ] FalseBookCart v0.93.1alpha by GeMo disabled
2012-11-21 15:42:25 [INFO] [MobDispenser] Disabling MobDispenser v1.0.0a3
2012-11-21 15:42:25 [INFO] [MobArena] Disabling MobArena v0.94.4.81
2012-11-21 15:42:25 [INFO] [MobArena] disabled.
2012-11-21 15:42:25 [INFO] [MonsterBox] Disabling MonsterBox v0.6
2012-11-21 15:42:25 [INFO] MonsterBox disabled!
2012-11-21 15:42:25 [INFO] [FalseBookCore] Disabling FalseBookCore v0.93.1alpha
2012-11-21 15:42:25 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo disabled!
2012-11-21 15:42:25 [INFO] [TimedMessages] Disabling TimedMessages v1.2.2
2012-11-21 15:42:25 [INFO] [DispenserFiller] Disabling DispenserFiller v1.0
2012-11-21 15:42:25 [INFO] [DispenserFiller] Disabled.
2012-11-21 15:42:25 [INFO] [ColorMe] Disabling ColorMe v3.4.1
2012-11-21 15:42:25 [INFO] ColorMe 3.4.1 has been disabled!
2012-11-21 15:42:25 [INFO] [Cestinator] Disabling Cestinator v1.0
2012-11-21 15:42:25 [INFO] Plugin Cestinator byl uspesne vypnut !
2012-11-21 15:42:25 [INFO] [AuthMe] Disabling AuthMe v2.6.3b7
2012-11-21 15:42:25 [INFO] [AuthMe] Authme 2.6.3b7 disabled
2012-11-21 15:42:25 [INFO] [iConomy] Disabling iConomy v7.0
2012-11-21 15:42:25 [INFO] [iConomy] Closing general data...
2012-11-21 15:42:25 [INFO] [iConomy] Disabled. (0 ms)
2012-11-21 15:42:25 [INFO] [EasyEnchant] Disabling EasyEnchant v1.2.2c
2012-11-21 15:42:25 [INFO] [HatMe] Disabling HatMe v2.0.0
2012-11-21 15:42:25 [INFO] [HatMe] Plugin Stopping...
2012-11-21 15:42:25 [INFO] [HatMe] Plugin Stopped.
2012-11-21 15:42:25 [INFO] [Shopkeepers] Disabling Shopkeepers v1.6.1
2012-11-21 15:42:25 [INFO] [TrollingNoobs] Disabling TrollingNoobs v1.3
2012-11-21 15:42:25 [INFO] [SpawnerAdjuster] Disabling SpawnerAdjuster v1.8.1
2012-11-21 15:42:25 [INFO] [Spectate] Disabling Spectate v1.9.1
2012-11-21 15:42:25 [INFO] Spectate is disabled!
2012-11-21 15:42:25 [INFO] [SignColours] Disabling SignColours v1.5
2012-11-21 15:42:25 [INFO] SignColours version 1.5 by ichingpow disabled.
2012-11-21 15:42:25 [INFO] [Naughty Blocks] Disabling Naughty Blocks v1.1
2012-11-21 15:42:25 [INFO] [DispenserRefill] Disabling DispenserRefill v1.0.0
2012-11-21 15:42:25 [INFO] [DispenserRefill] Saved 0 dispensers to database.
2012-11-21 15:42:25 [INFO] [DispenserRefill] DispenserRefill has been disabled.
2012-11-21 15:42:25 [INFO] [MobileAdmin] Disabling MobileAdmin v3.2.5
2012-11-21 15:42:25 [INFO] [MobileAdmin] Stopping server...
2012-11-21 15:42:25 [INFO] [MobileAdmin] Closing server socket
2012-11-21 15:42:25 [INFO] [MobileAdmin] Saving server stats.
2012-11-21 15:42:25 [INFO] [MobileAdmin] Saving chat log.
2012-11-21 15:42:26 [INFO] [blXP] Disabling blXP v0.3.1
2012-11-21 15:42:26 [INFO] [LogBlock] Disabling LogBlock v1.60
2012-11-21 15:42:26 [INFO] [LogBlock] Waiting for consumer ...
2012-11-21 15:42:26 [INFO] [LogBlock] Remaining queue size: 10
2012-11-21 15:42:26 [INFO] [LogBlock] Remaining tries: 10
2012-11-21 15:42:26 [INFO] [SpawnMob] Disabling SpawnMob v3.0
2012-11-21 15:42:26 [INFO] [SpawnMob] Version 3.0 disabled.
2012-11-21 15:42:26 [INFO] [Stargate] Disabling Stargate v0.7.7.4
2012-11-21 15:42:26 [INFO] Closing all stargates.
2012-11-21 15:42:26 [INFO] [PermissionsEx] Disabling PermissionsEx v1.19.2
2012-11-21 15:42:26 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2012-11-21 15:42:26 [INFO] [PermissionsEx] v1.19.2 disabled successfully.
2012-11-21 15:42:26 [INFO] [Multiverse-Core] Disabling Multiverse-Core v2.4-b527
2012-11-21 15:42:26 [INFO] [Multiverse-Core] - Disabled
2012-11-21 15:42:26 [INFO] [NoWeather] Disabling NoWeather v1.7.6
2012-11-21 15:42:26 [INFO] [mcjobs] Disabling mcjobs v3.1.8
2012-11-21 15:42:26 [INFO] [mcjobs] Canceling Tasks...
2012-11-21 15:42:26 [INFO] [mcjobs] MC Jobs has been disabled!
2012-11-21 15:42:26 [INFO] [CreativeControl] Disabling CreativeControl v5.1
2012-11-21 15:42:26 [INFO] [CreativeControl]: Closing the SQLite Connection
2012-11-21 15:42:26 [INFO] [CreativeControl] CreativeControl v5.1 Disabled
2012-11-21 15:42:26 [INFO] [FakaHedaMinequery] Disabling FakaHedaMinequery v1.1
2012-11-21 15:42:26 [INFO] Stopping FakaHedaMinequery server
2012-11-21 15:42:26 [INFO] [WorldEdit] Disabling WorldEdit v1120-f11e2ba
2012-11-21 15:42:26 [INFO] [LOL] Disabling LOL v1.1.1
2012-11-21 15:42:26 [INFO] LOL has been disabled!
2012-11-21 15:42:26 [INFO] [Waypoints] Disabling Waypoints v1.1-2
2012-11-21 15:42:26 [INFO] [LagMeter] Disabling LagMeter v1.9.0
2012-11-21 15:42:26 [INFO] [LagMeter 1.9.0] Disabled!
2012-11-21 15:42:26 [INFO] [ServerQueue] Disabling ServerQueue v0.3.0
2012-11-21 15:42:26 [INFO] [ServerQueue] is disabled!
2012-11-21 15:42:26 [INFO] [MagicCarpet] Disabling MagicCarpet v2.2.3 (FULL)
2012-11-21 15:42:26 [INFO] [MagicCarpet] Saving carpets...
2012-11-21 15:42:26 [INFO] [MagicCarpet] is now disabled!
2012-11-21 15:42:26 [INFO] Saving players
2012-11-21 15:42:26 [WARNING] DSCT: Socket closed
2012-11-21 15:42:26 [INFO] Closing listening thread
2012-11-21 15:42:26 [INFO] Saving worlds
2012-11-21 15:42:26 [INFO] Saving chunks for level 'world'/Overworld
2012-11-21 15:42:27 [INFO] Saving chunks for level 'world_nether'/Nether
2012-11-21 15:42:27 [INFO] Saving chunks for level 'world_the_end'/The End
2012-11-21 15:42:27 [INFO] Saving chunks for level 'Prdel'/Overworld
2012-11-21 15:42:28 [INFO] Saving chunks for level 'Parkis'/Overworld
2012-11-21 15:42:28 [INFO] Saving chunks for level 'Ptak'/Overworld
2012-11-21 15:42:43 [INFO] Starting minecraft server version 1.4.5
2012-11-21 15:42:43 [INFO] Loading properties
2012-11-21 15:42:43 [INFO] Default game type: SURVIVAL
2012-11-21 15:42:43 [INFO] Generating keypair
2012-11-21 15:42:44 [INFO] Starting Minecraft server on 93.91.240.153:37333
2012-11-21 15:42:44 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2012-11-21 15:42:44 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2012-11-21 15:42:44 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
2012-11-21 15:42:44 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2012-11-21 15:42:44 [INFO] This server is running CraftBukkit version git-Bukkit-1.4.5-R0.2-b2488jnks (MC: 1.4.5) (Implementing API version 1.4.5-R0.2)
2012-11-21 15:42:44 [INFO] ----- Bukkit Auto Updater -----
2012-11-21 15:42:44 [INFO] It appears that you're running a Beta Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
2012-11-21 15:42:44 [INFO] If you would like to be kept informed about new Beta Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'beta'.
2012-11-21 15:42:44 [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.
2012-11-21 15:42:44 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
2012-11-21 15:42:44 [INFO] ----- ------------------- -----
2012-11-21 15:42:45 [INFO] Starting FakaHedaMinequery server on 93.91.240.153:38333
2012-11-21 15:42:45 [INFO] [PermissionsEx] sql backend registered!
2012-11-21 15:42:45 [INFO] [PermissionsEx] file backend registered!
2012-11-21 15:42:45 [INFO] [PermissionsEx] PermissionEx plugin initialized.
2012-11-21 15:42:46 [INFO] [MagicCarpet] Loading MagicCarpet v2.2.3 (FULL)
2012-11-21 15:42:46 [INFO] [ServerQueue] Loading ServerQueue v0.3.0
2012-11-21 15:42:46 [INFO] [LagMeter] Loading LagMeter v1.9.0
2012-11-21 15:42:46 [INFO] [Waypoints] Loading Waypoints v1.1-2
2012-11-21 15:42:46 [INFO] [LOL] Loading LOL v1.1.1
2012-11-21 15:42:46 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.1
2012-11-21 15:42:46 [INFO] [WorldEdit] Loading WorldEdit v1120-f11e2ba
2012-11-21 15:42:46 [INFO] [CreativeControl] Loading CreativeControl v5.1
2012-11-21 15:42:46 [INFO] [mcjobs] Loading mcjobs v3.1.8
2012-11-21 15:42:46 [INFO] [NoWeather] Loading NoWeather v1.7.6
2012-11-21 15:42:46 [INFO] [Multiverse-Core] Loading Multiverse-Core v2.4-b527
2012-11-21 15:42:46 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.2
2012-11-21 15:42:46 [INFO] [PermissionsEx] Initializing file backend
2012-11-21 15:42:46 [INFO] [Stargate] Loading Stargate v0.7.7.4
2012-11-21 15:42:46 [INFO] [SpawnMob] Loading SpawnMob v3.0
2012-11-21 15:42:46 [INFO] [LogBlock] Loading LogBlock v1.60
2012-11-21 15:42:46 [INFO] [LogBlock] Connecting to gs_37333_1@jdbc:mysql://localhost:3306/gs_37333_1...
2012-11-21 15:42:46 [INFO] [blXP] Loading blXP v0.3.1
2012-11-21 15:42:46 [INFO] [MobileAdmin] Loading MobileAdmin v3.2.5
2012-11-21 15:42:46 [INFO] [DispenserRefill] Loading DispenserRefill v1.0.0
2012-11-21 15:42:46 [INFO] [Naughty Blocks] Loading Naughty Blocks v1.1
2012-11-21 15:42:46 [INFO] [SignColours] Loading SignColours v1.5
2012-11-21 15:42:46 [INFO] [SpawnerAdjuster] Loading SpawnerAdjuster v1.8.1
2012-11-21 15:42:46 [INFO] [TrollingNoobs] Loading TrollingNoobs v1.3
2012-11-21 15:42:46 [INFO] [Shopkeepers] Loading Shopkeepers v1.6.1
2012-11-21 15:42:46 [INFO] [HatMe] Loading HatMe v2.0.0
2012-11-21 15:42:46 [INFO] [EasyEnchant] Loading EasyEnchant v1.2.2c
2012-11-21 15:42:46 [INFO] [iConomy] Loading iConomy v7.0
2012-11-21 15:42:46 [INFO] [AuthMe] Loading AuthMe v2.6.3b7
2012-11-21 15:42:46 [INFO] [Cestinator] Loading Cestinator v1.0
2012-11-21 15:42:46 [INFO] [ColorMe] Loading ColorMe v3.4.1
2012-11-21 15:42:46 [INFO] [DispenserFiller] Loading DispenserFiller v1.0
2012-11-21 15:42:46 [INFO] [TimedMessages] Loading TimedMessages v1.2.2
2012-11-21 15:42:46 [INFO] [FalseBookCore] Loading FalseBookCore v0.93.1alpha
2012-11-21 15:42:46 [INFO] [MobArena] Loading MobArena v0.94.4.81
2012-11-21 15:42:46 [INFO] [FalseBookCart] Loading FalseBookCart v0.93.1alpha
2012-11-21 15:42:46 [INFO] [MobDispenser] Loading MobDispenser v1.0.0a3
2012-11-21 15:42:46 [INFO] [Essentials] Loading Essentials vDev2.9.90
2012-11-21 15:42:46 [INFO] [Residence] Loading Residence v2.6.6
2012-11-21 15:42:46 [INFO] [DeathMsg] Loading DeathMsg v0.2
2012-11-21 15:42:46 [INFO] [FalseBookChat] Loading FalseBookChat v0.93.1alpha
2012-11-21 15:42:46 [INFO] [EssentialsSpawn] Loading EssentialsSpawn vDev2.9.90
2012-11-21 15:42:46 [INFO] [FalseBookBlock] Loading FalseBookBlock v0.93.1alpha
2012-11-21 15:42:46 [INFO] [CreativeGates] Loading CreativeGates v1.3.5
2012-11-21 15:42:46 [INFO] [FalseBookIC] Loading FalseBookIC v0.93.1alpha
2012-11-21 15:42:46 [INFO] [ChestShop] Loading ChestShop v3.46
2012-11-21 15:42:46 [INFO] [EssentialsChat] Loading EssentialsChat vDev2.9.90
2012-11-21 15:42:46 [INFO] [FalseBookExtra] Loading FalseBookExtra v0.93.1alpha
2012-11-21 15:42:46 [INFO] Preparing level "world"
2012-11-21 15:42:46 [INFO] Preparing start region for level 0 (Seed: 8228320550495455083)
2012-11-21 15:42:47 [INFO] Preparing start region for level 1 (Seed: 5822997766481732027)
2012-11-21 15:42:47 [INFO] Preparing spawn area: 0%
2012-11-21 15:42:48 [INFO] Preparing start region for level 2 (Seed: 5822997766481732027)
2012-11-21 15:42:48 [INFO] [MagicCarpet] Enabling MagicCarpet v2.2.3 (FULL)
2012-11-21 15:42:48 [INFO] [MagicCarpet] Loading carpets...
2012-11-21 15:42:48 [INFO] [MagicCarpet] is now enabled!
2012-11-21 15:42:48 [INFO] [ServerQueue] Enabling ServerQueue v0.3.0
2012-11-21 15:42:48 [INFO] [ServerQueue] There are 0/10(10+0) Players online.
2012-11-21 15:42:48 [INFO] [ServerQueue] v0.3.0 is enabled!
2012-11-21 15:42:48 [INFO] [LagMeter] Enabling LagMeter v1.9.0
2012-11-21 15:42:48 [INFO] [LagMeter] Not using logs folder.
2012-11-21 15:42:48 [INFO] [LagMeter 1.9.0] Enabled!  Polling every 40 server ticks.  Logging to /hlserver/37333/plugins/LagMeter/lag.log
2012-11-21 15:42:48 [INFO] [Waypoints] Enabling Waypoints v1.1-2
2012-11-21 15:42:48 [INFO] This plugin sends minimal data back to www.mcstats.org. To opt-out, edit the config inside the folder "PluginMetrics"
2012-11-21 15:42:48 [INFO] [LOL] Enabling LOL v1.1.1
2012-11-21 15:42:48 [INFO] LOL v1.1.1 has been enabled!
2012-11-21 15:42:48 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.1
2012-11-21 15:42:48 [INFO] [WorldEdit] Enabling WorldEdit v1120-f11e2ba
2012-11-21 15:42:48 [INFO] WEPIF: Using the Bukkit Permissions API.
2012-11-21 15:42:49 [INFO] [CreativeControl] Enabling CreativeControl v5.1
2012-11-21 15:42:49 [INFO] [CreativeControl]: Loading Modules...
2012-11-21 15:42:49 [INFO] [CreativeControl]: Initializing configurations...
2012-11-21 15:42:49 [INFO] [CreativeControl]: Regions: 0
2012-11-21 15:42:49 [INFO] [CreativeControl]: Registring Events...
2012-11-21 15:42:49 [INFO] [CreativeControl]: Vault Plugin Not Found
2012-11-21 15:42:49 [INFO] [CreativeControl]: Defaulting to SuperPerms
2012-11-21 15:42:49 [INFO] [CreativeControl]: LogBlock hooked as logging plugin
2012-11-21 15:42:49 [INFO] [CreativeControl]: Connecting to the SQLite Database...
2012-11-21 15:42:49 [INFO] [CreativeControl]: SQLite Connected Successfuly!
2012-11-21 15:42:49 [INFO] [CreativeControl] CreativeControl v5.1 Enabled
2012-11-21 15:42:49 [INFO] [mcjobs] Enabling mcjobs v3.1.8
2012-11-21 15:42:49 [INFO] [mcjobs] Using builtin logging methods.
2012-11-21 15:42:49 [INFO] [mcjobs] No economy bridge found!  Going to XP economy.
2012-11-21 15:42:49 [INFO] [mcjobs] LOADED JOBS: digger miner builder carpenter soldier tinkerer woodsman farmer toolmaker weaponsmith armorer fisherman baker alchemist brewer enchanter theurgist conjurer bulldozer taxes
2012-11-21 15:42:49 [INFO] [mcjobs] MC Jobs has been enabled!
2012-11-21 15:42:49 [INFO] [NoWeather] Enabling NoWeather v1.7.6
2012-11-21 15:42:49 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
2012-11-21 15:42:49 [INFO] [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
2012-11-21 15:42:49 [INFO] [AllPay] - Version 10.0 - hooked into iConomy 6 for Multiverse-Core v2.4-b527
2012-11-21 15:42:50 [INFO] [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 8228320550495455083
2012-11-21 15:42:50 [INFO] [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: 5822997766481732027
2012-11-21 15:42:50 [INFO] [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: 5822997766481732027
2012-11-21 15:42:50 [INFO] [Multiverse-Core] Loading World & Settings - 'Prdel' - Env: NORMAL - Type: NORMAL & seed: 445090542971762080
2012-11-21 15:42:50 [INFO] Preparing start region for level 3 (Seed: 445090542971762080)
2012-11-21 15:42:51 [INFO] [Multiverse-Core] Loading World & Settings - 'Parkis' - Env: NORMAL - Type: NORMAL & seed: -2883727916950807412
2012-11-21 15:42:51 [INFO] Preparing start region for level 4 (Seed: -2883727916950807412)
2012-11-21 15:42:51 [INFO] [Multiverse-Core] Loading World & Settings - 'Ptak' - Env: NORMAL - Type: NORMAL & seed: 576158442630924665
2012-11-21 15:42:51 [INFO] Preparing start region for level 5 (Seed: 576158442630924665)
2012-11-21 15:42:52 [INFO] Preparing spawn area for Ptak, 89%
2012-11-21 15:42:53 [INFO] [Multiverse-Core] 6 - World(s) loaded.
2012-11-21 15:42:53 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.2
2012-11-21 15:42:53 [INFO] [PermissionsEx] Superperms support enabled.
2012-11-21 15:42:53 [INFO] [PermissionsEx] v1.19.2 enabled
2012-11-21 15:42:53 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2012-11-21 15:42:53 [INFO] [Stargate] Enabling Stargate v0.7.7.4
2012-11-21 15:42:53 [INFO] Stargate v.0.7.7.4 is enabled.
2012-11-21 15:42:53 [INFO] [Stargate] Loaded 7 gate layouts
2012-11-21 15:42:53 [INFO] [Stargate::register] Network not in lookupNamesNet, adding
2012-11-21 15:42:53 [INFO] [Stargate::register] Network not in allPortalsNet, adding
2012-11-21 15:42:53 [INFO] [Stargate] {world} Loaded 6 stargates with 0 set as always-on
2012-11-21 15:42:53 [INFO] [Stargate] {world_nether} No stargates for world
2012-11-21 15:42:53 [INFO] [Stargate] {world_the_end} No stargates for world
2012-11-21 15:42:53 [INFO] [Stargate] {Prdel} Loaded 1 stargates with 0 set as always-on
2012-11-21 15:42:53 [INFO] [Stargate] {Parkis} No stargates for world
2012-11-21 15:42:53 [INFO] [Stargate] {Ptak} Loaded 1 stargates with 0 set as always-on
2012-11-21 15:42:53 [INFO] [SpawnMob] Enabling SpawnMob v3.0
2012-11-21 15:42:53 [INFO] Configuration files loaded.
2012-11-21 15:42:53 [INFO] [SpawnMob] Using ops.txt!
2012-11-21 15:42:53 [INFO] [SpawnMob] Version 3.0 enabled.
2012-11-21 15:42:53 [INFO] [LogBlock] Enabling LogBlock v1.60
2012-11-21 15:42:53 [INFO] [LogBlock] Scheduled consumer with bukkit scheduler.
2012-11-21 15:42:53 [INFO] [blXP] Enabling blXP v0.3.1
2012-11-21 15:42:53 [INFO] [MobileAdmin] Enabling MobileAdmin v3.2.5
2012-11-21 15:42:53 [INFO] [MobileAdmin] Loading server stats.
2012-11-21 15:42:53 [INFO] [MobileAdmin] Loading chat log.
2012-11-21 15:42:53 [INFO] [MobileAdmin] Loading users.
2012-11-21 15:42:53 [INFO] [MobileAdmin] Starting server...
2012-11-21 15:42:53 [INFO] [MobileAdmin] Version 3.2.5 is enabled!
2012-11-21 15:42:53 [INFO] [DispenserRefill] Enabling DispenserRefill v1.0.0
2012-11-21 15:42:53 [INFO] [MobileAdmin] Server listening on victor.fakaheda.eu:3733:36333
2012-11-21 15:42:53 [FINEST] [DispenserRefill] Hooking commands.
2012-11-21 15:42:53 [FINEST] [DispenserRefill] Creating data dirs.
2012-11-21 15:42:53 [INFO] [DispenserRefill] Loaded 0 dispensers from database.
2012-11-21 15:42:53 [FINEST] [DispenserRefill] Registering events.
2012-11-21 15:42:53 [INFO] [Naughty Blocks] Enabling Naughty Blocks v1.1
2012-11-21 15:42:53 [INFO] [SignColours] Enabling SignColours v1.5
2012-11-21 15:42:53 [INFO] SignColours version 1.5 by ichingpow enabled.
2012-11-21 15:42:53 [INFO] [SpawnerAdjuster] Enabling SpawnerAdjuster v1.8.1
2012-11-21 15:42:53 [INFO] [SpawnerAdjuster][1.8.1] Loading config ...
2012-11-21 15:42:53 [INFO] [SpawnerAdjuster][1.8.1] Creature storage array cleaning task set with ID: 18
2012-11-21 15:42:53 [INFO] [SpawnerAdjuster][1.8.1] Loading complete
2012-11-21 15:42:53 [INFO] [TrollingNoobs] Enabling TrollingNoobs v1.3
2012-11-21 15:42:53 [INFO] [Shopkeepers] Enabling Shopkeepers v1.6.1
2012-11-21 15:42:54 [INFO] [HatMe] Enabling HatMe v2.0.0
2012-11-21 15:42:54 [INFO] [HatMe] Start Plugin... (Version: 2.0.0)
2012-11-21 15:42:54 [INFO] [HatMe] Plugin Loaded!
2012-11-21 15:42:54 [INFO] [EasyEnchant] Enabling EasyEnchant v1.2.2c
2012-11-21 15:42:54 [INFO] [EasyEnchant] Version 1.2.2c Is Enabled!
2012-11-21 15:42:54 [INFO] [iConomy] Enabling iConomy v7.0
2012-11-21 15:42:54 [INFO] [iConomy - April Fools] Enabled (15 ms)
2012-11-21 15:42:54 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2012-11-21 15:42:54 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2012-11-21 15:42:54 [INFO] [AuthMe] Enabling AuthMe v2.6.3b7
2012-11-21 15:42:54 [INFO] [AuthMe] Loading Configuration File...
2012-11-21 15:42:54 [INFO] [AuthMe] Authme 2.6.3b7 enabled
2012-11-21 15:42:54 [INFO] [Cestinator] Enabling Cestinator v1.0
2012-11-21 15:42:54 [INFO] Plugin Cestinator byl uspesne zapnut !
2012-11-21 15:42:54 [INFO] Config byl nalezen.
2012-11-21 15:42:54 [INFO] [ColorMe] Enabling ColorMe v3.4.1
2012-11-21 15:42:55 [INFO] ColorMe 3.4.1 is enabled!
2012-11-21 15:42:55 [WARNING] Vault was NOT found! Running without economy!
2012-11-21 15:42:55 [WARNING] Running without Spout!
2012-11-21 15:42:56 [INFO] [DispenserFiller] Enabling DispenserFiller v1.0
2012-11-21 15:42:56 [INFO] [DispenserFiller] Enabled.
2012-11-21 15:42:56 [INFO] [TimedMessages] Enabling TimedMessages v1.2.2
2012-11-21 15:42:56 [CONFIG] [TimedMessages] Loading configuration: MessagesConfiguration.
2012-11-21 15:42:56 [CONFIG] [TimedMessages] Using path: plugins/TimedMessages/messages.yml.
2012-11-21 15:42:56 [CONFIG] [TimedMessages] Setting defaults.
2012-11-21 15:42:56 [CONFIG] [TimedMessages] Saving messages.yml.
2012-11-21 15:42:56 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.reload (default: op).
2012-11-21 15:42:56 [FINE] [TimedMessages] <CommandManager> Adding command: ReloadCommand
2012-11-21 15:42:56 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.start (default: op).
2012-11-21 15:42:56 [FINE] [TimedMessages] <CommandManager> Adding command: StartCommand
2012-11-21 15:42:56 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.status (default: op).
2012-11-21 15:42:56 [FINE] [TimedMessages] <CommandManager> Adding command: StatusCommand
2012-11-21 15:42:56 [FINE] [TimedMessages] <BukkitPermissionManager> Adding permission timedmessages.stop (default: op).
2012-11-21 15:42:56 [FINE] [TimedMessages] <CommandManager> Adding command: StopCommand
2012-11-21 15:42:56 [INFO] [FalseBookCore] Enabling FalseBookCore v0.93.1alpha
2012-11-21 15:42:56 [INFO] [ FalseBook Core ] using PermissionsEx for Permissions!
2012-11-21 15:42:56 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo enabled!
2012-11-21 15:42:56 [INFO] [MobArena] Enabling MobArena v0.94.4.81
2012-11-21 15:42:56 [INFO] [MobArena] No boss abilities found. Extracting defaults...
2012-11-21 15:42:56 [SEVERE] [MobArena] Couldn't extract the default boss abilities!
2012-11-21 15:42:56 [WARNING] [MobArena] Vault was not found. Economy rewards will not work!
2012-11-21 15:42:56 [WARNING] [MobArena] Invalid boss ability 'arrows' for wave 'boss1' in arena 'default'.
2012-11-21 15:42:56 [WARNING] [MobArena] Invalid boss ability 'root-target' for wave 'boss1' in arena 'default'.
2012-11-21 15:42:56 [WARNING] [MobArena] Invalid boss ability 'throw-nearby' for wave 'boss1' in arena 'default'.
2012-11-21 15:42:56 [INFO] [MobArena] v0.94.4.81 enabled.
2012-11-21 15:42:56 [INFO] [FalseBookCart] Enabling FalseBookCart v0.93.1alpha
2012-11-21 15:42:56 [INFO] 0 locked storagecarts loaded.
2012-11-21 15:42:56 [INFO] [ FalseBook Cart ] FalseBookCart v0.93.1alpha by GeMo enabled
2012-11-21 15:42:56 [INFO] [MobDispenser] Enabling MobDispenser v1.0.0a3
2012-11-21 15:42:56 [INFO] [MobDispenser] MobDispenser has been enabled
2012-11-21 15:42:56 [INFO] [Essentials] Enabling Essentials vDev2.9.90
2012-11-21 15:42:57 [INFO] Essentials: Using PermissionsEx based permissions.
2012-11-21 15:42:57 [INFO] [Essentials] Payment method found (iConomy version: 6)
2012-11-21 15:42:57 [INFO] [Residence] Enabling Residence v2.6.6
2012-11-21 15:42:57 [INFO] [Residence] Permissions plugin NOT FOUND!
2012-11-21 15:42:57 [INFO] [Residence] Scanning for economy systems...
2012-11-21 15:42:57 [INFO] [Residence] Vault NOT found!
2012-11-21 15:42:57 [INFO] [Residence] BOSEconomy NOT found!
2012-11-21 15:42:57 [INFO] [Residence] Successfully linked with Essentials Economy!
2012-11-21 15:42:58 [INFO] [Residence] Found WorldEdit
2012-11-21 15:42:58 [INFO] [Residence] Enabled! Version 2.6.6 by bekvon
2012-11-21 15:42:58 [INFO] [DeathMsg] Enabling DeathMsg v0.2
2012-11-21 15:42:58 [INFO] [DeathMsg] Death Messages Are Now Enabled On You Server
2012-11-21 15:42:58 [INFO] [FalseBookChat] Enabling FalseBookChat v0.93.1alpha
2012-11-21 15:42:58 [INFO] [ FalseBook Chat ] FalseBookChat v0.93.1alpha by GeMo enabled
2012-11-21 15:42:58 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn vDev2.9.90
2012-11-21 15:42:58 [INFO] [FalseBookBlock] Enabling FalseBookBlock v0.93.1alpha
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] 0 Doors successfully loaded.
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] 0 Areas loaded.
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] 0 Bridges successfully loaded.
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] No Cauldrons loaded!
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] No Books loaded!
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] 3 protected gateblocks successfully loaded.
2012-11-21 15:42:58 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo enabled
2012-11-21 15:42:58 [INFO] [CreativeGates] Enabling CreativeGates v1.3.5
2012-11-21 15:42:58 [INFO] [CreativeGates v1.3.5] === ENABLE START ===
2012-11-21 15:42:58 [INFO] [CreativeGates v1.3.5] === ENABLE DONE (Took 89ms) ===
2012-11-21 15:42:58 [INFO] [FalseBookIC] Enabling FalseBookIC v0.93.1alpha
2012-11-21 15:42:58 [INFO] [ FalseBook IC ] Error while reading file: plugins/FalseBook/FalseBookIC.properties
2012-11-21 15:42:58 [INFO] [ FalseBook IC ] FalseBookIC v0.93.1alpha by GeMo enabled
2012-11-21 15:42:58 [INFO] [ChestShop] Enabling ChestShop v3.46
2012-11-21 15:42:58 [INFO] [ChestShop] iConomy version 6 loaded.
2012-11-21 15:42:59 [INFO] [EssentialsChat] Enabling EssentialsChat vDev2.9.90
2012-11-21 15:42:59 [INFO] [FalseBookExtra] Enabling FalseBookExtra v0.93.1alpha
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 7 protected blocks in 'world' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_nether' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 0 protected blocks in 'world_the_end' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Prdel' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 14 protected blocks in 'Parkis' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] 0 protected blocks in 'Ptak' loaded.
2012-11-21 15:42:59 [INFO] [ FalseBook Extra ] FalseBookExtra v0.93.1alpha by GeMo enabled
2012-11-21 15:42:59 [INFO] Server permissions file permissions.yml is empty, ignoring it
2012-11-21 15:43:01 [INFO] Done (14.510s)! For help, type "help" or "?"
2012-11-21 15:43:01 [INFO] Starting GS4 status listener
2012-11-21 15:43:01 [INFO] Starting remote control listener
2012-11-21 15:43:01 [WARNING] Unable to initialise rcon on 93.91.240.153:36333 : Address already in use
2012-11-21 15:43:01 [INFO] Query running on 93.91.240.153:37333
2012-11-21 15:43:02 [INFO] /83.208.89.152:26509 lost connection
2012-11-21 15:43:03 [INFO] [ FalseBook IC ] Loaded selftriggered ICs: 0 done
2012-11-21 15:43:03 [INFO] [ FalseBook IC ] Failed selftriggered ICs: 0 failed
2012-11-21 15:43:03 [FINE] [TimedMessages] <PluginUpdater> Fetching resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
2012-11-21 15:43:04 [FINE] [TimedMessages] <PluginUpdater> Saving resource: http://repository.james.richardson.name/releases/name/richardson/james/bukkit/timed-messages/maven-metadata.xml.
2012-11-21 15:43:04 [FINE] [TimedMessages] <PluginUpdater> Local version: 1.2.2.
2012-11-21 15:43:04 [FINE] [TimedMessages] <PluginUpdater> Remote version: 1.2.2.
Chcete si zahrát na super serveru se super komunitou a super adminy :)? Máme 18 slotů, admini jsou často online a rádi Vám se vším pomůžou.
survival.czept.cz:37333


Zpět na „Minecraft, Tekkit“

Kdo je online

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