JOBS

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Fifal
Příspěvky: 411
Registrován: 17 bře 2013, 19:24
Reputation: 0

JOBS

#1 Příspěvekod Fifal » 20 led 2015, 20:52

IP: 93.91.250.135:27677

Dobrý den,
Prosím vás mám na serveru plugin Jobs, vše mám nastavené. Hráč si v pořádku přijme úkol například Horník, ale když začne těžit žádné peníze mu to nepřidá, nevíte proč?
GeneralConfig
Spoiler: zobrazit

Kód: Vybrat vše

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

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

JobConfig
Spoiler: zobrazit

Kód: Vybrat vše

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

Jobs:
  Woodcutter:
    fullname: Drevorubec
    shortname: D
    description: Dostava penize za kaceni stromu a sazeni novych.
    ChatColour: GREEN
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      LOG:
        income: 5.0
        experience: 5.0
    Place:
      SAPLING:
        income: 1.0
        experience: 1.0
      WOOD:
        income: 2.0
        experience: 2.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Woodcutter:
        income: 10.0
        experience: 10.0
    permissions:
      aaaaaatest.node:
        value: true
        level: 0
      aaaaaatest.node2:
        value: true
        level: 10
  Miner:
    fullname: Hornik
    shortname: H
    description: Dostava penize za kopani rud.
    ChatColour: DARK_GRAY
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      STONE:
        income: 2.0
        experience: 2.0
      COAL_ORE:
        income: 3.0
        experience: 3.0
      GLOWING_REDSTONE_ORE:
        income: 3.0
        experience: 3.0
      IRON_ORE:
        income: 4.0
        experience: 4.0
      GOLD_ORE:
        income: 5.0
        experience: 5.0
      LAPIS_ORE:
        income: 5.0
        experience: 5.0
      DIAMOND_ORE:
        income: 6.0
        experience: 6.0
      OBSIDIAN:
        income: 7.5
        experience: 7.5
      MOSSY_COBBLESTONE:
        income: 6.0
        experience: 6.0
    Place:
      RAILS:
        income: 2.0
        experience: 2.0
      IRON_ORE:
        income: -5.0
        experience: -5.0
      GOLD_ORE:
        income: -6.0
        experience: -6.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Miner:
        income: 10.0
        experience: 10.0
  Builder:
    fullname: Stavitel
    shortname: S
    description: Dostava penize za vystavbu budov.
    ChatColour: WHITE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Place:
      COBBLESTONE:
        income: 1.0
        experience: 1.0
      WOOD:
        income: 1.5
        experience: 1.5
      FENCE:
        income: 1.5
        experience: 1.5
      WOOL:
        income: 1.5
        experience: 1.5
      STONE:
        income: 2.25
        experience: 2.25
      GLOWSTONE:
        income: 3.0
        experience: 3.0
      SANDSTONE:
        income: 2.0
        experience: 2.0
      GLASS:
        income: 3.0
        experience: 3.0
      BRICK:
        income: 4.0
        experience: 4.0
      LAPIS_BLOCK:
        income: 5.0
        experience: 5.0
      DOUBLE_STEP:
        income: 2.0
        experience: 2.0
      STEP:
        income: 2.0
        experience: 2.0
      BOOKSHELF:
        income: 3.0
        experience: 3.0
      WOOD_STAIRS:
        income: 2.0
        experience: 2.0
      COBBLESTONE_STAIRS:
        income: 2.0
        experience: 2.0
      MOSSY_COBBLESTONE:
        income: 5.0
        experience: 5.0
      DIAMOND_BLOCK:
        income: 5.0
        experience: 5.0
      GOLD_BLOCK:
        income: 5.0
        experience: 5.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Builder:
        income: 10.0
        experience: 10.0
  Digger:
    fullname: Kopac
    shortname: K
    description: Dostava penize za kopani zakladnich bloku.
    ChatColour: GOLD
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      DIRT:
        income: 2.0
        experience: 2.0
      GRASS:
        income: 2.0
        experience: 2.0
      GRAVEL:
        income: 2.0
        experience: 2.0
      SAND:
        income: 2.0
        experience: 2.0
      CLAY:
        income: 2.0
        experience: 2.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Digger:
        income: 10.0
        experience: 10.0
  Farmer:
    fullname: Farmar
    shortname: F
    description: Dostava penize za pestovani plodin.
    ChatColour: BLUE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Break:
      CROPS-7:
        income: 4.0
        experience: 4.0
      CARROT:
        income: 5.0
        experience: 4.0
      POTATO:
        income: 4.0
        experience: 4.0
    Place:
      CROPS-0:
        income: 3.0
        experience: 3.0
      CARROT:
        income: 3.0
        experience: 3.0
      POTATO:
        income: 3.0
        experience: 3.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Farmer:
        income: 10.0
        experience: 10.0
  Hunter:
    fullname: Lovec
    shortname: L
    description: Dostava penize za zabijeni zvirat a monster.
    ChatColour: RED
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Kill:
      Chicken:
        income: 2.5
        experience: 2.5
      Cow:
        income: 2.5
        experience: 2.5
      Pig:
        income: 2.5
        experience: 2.5
      Sheep:
        income: 2.5
        experience: 2.5
      Wolf:
        income: 5.0
        experience: 5.0
      Creeper:
        income: 10.0
        experience: 10.0
      Skeleton:
        income: 10.0
        experience: 10.0
      Spider:
        income: 10.0
        experience: 10.0
      Zombie:
        income: 10.0
        experience: 10.0
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Woodcutter:
        income: 10.0
        experience: 10.0
      Miner:
        income: 10.0
        experience: 10.0
      Digger:
        income: 10.0
        experience: 10.0
      Farmer:
        income: 10.0
        experience: 10.0
      Builder:
        income: 10.0
        experience: 10.0
      Hunter:
        income: 20.0
        experience: 20.0
  Fisherman:
    fullname: Rybar
    shortname: R
    description: Dostava penize za rybareni.
    ChatColour: AQUA
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Fish:
      RAW_FISH:
        income: 4.0
        experience: 4.0
    Kill:
      Player:
        income: 7.5
        experience: 7.5
    custom-kill:
      Fisherman:
        income: 10.0
        experience: 10.0
  Weaponsmith:
    fullname: Kovar
    shortname: K
    description: Dostava penize za vyrobu a opravu mecu.
    ChatColour: DARK_PURPLE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Craft:
      WOOD_SWORD:
        income: 1.0
        experience: 1.0
      IRON_SWORD:
        income: 2.0
        experience: 2.0
      GOLD_SWORD:
        income: 3.0
        experience: 3.0
      DIAMOND_SWORD:
        income: 4.0
        experience: 4.0
    Repair:
      WOOD_SWORD:
        income: 1.0
        experience: 1.0
      IRON_SWORD:
        income: 2.0
        experience: 2.0
      GOLD_SWORD:
        income: 3.0
        experience: 3.0
      DIAMOND_SWORD:
        income: 4.0
        experience: 4.0
    Smelt:
      IRON_INGOT:
        income: 2.0
        experience: 2.0
      GOLD_INGOT:
        income: 2.0
        experience: 2.0
  Brewer:
    fullname: Carodej
    shortname: C
    description: Dostava penize za vareni elixiru.
    ChatColour: LIGHT_PURPLE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Brew:
      NETHER_STALK:
        income: 1.0
        experience: 1.0
      REDSTONE:
        income: 2.0
        experience: 2.0
      GLOWSTONE_DUST:
        income: 2.0
        experience: 2.0
      SPIDER_EYE:
        income: 2.0
        experience: 2.0
      FERMENTED_SPIDER_EYE:
        income: 2.0
        experience: 2.0
      BLAZE_POWDER:
        income: 2.0
        experience: 2.0
      SUGAR:
        income: 2.0
        experience: 2.0
      SPECKLED_MELON:
        income: 4.0
        experience: 4.0
      MAGMA_CREAM:
        income: 4.0
        experience: 4.0
      GHAST_TEAR:
        income: 4.0
        experience: 4.0
  Enchanter:
    fullname: Kouzelnik
    shortname: K
    description: Dostava penize za enchantovani itemu.
    ChatColour: DARK_BLUE
    chat-display: full
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Enchant:
      WOOD_SWORD:
        income: 4.0
        experience: 4.0
      IRON_SWORD:
        income: 6.0
        experience: 6.0
      GOLD_SWORD:
        income: 8.0
        experience: 8.0
      DIAMOND_SWORD:
        income: 10.0
        experience: 10.0
  None:
    fullname: None
    shortname: N
    ChatColour: WHITE
    chat-display: none
    leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
    income-progression-equation: baseincome*((1.05)^(joblevel-1))
    experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
    Kill:
      Player:
        income: 7.5
Pomohl Jsem? ?
Oplat karma + ;))

Uživatelský avatar
Bisyss
Příspěvky: 760
Věk: 9
Registrován: 07 lis 2014, 15:54
Reputation: 1
Bydliště: http://netsword.cz/
Kontaktovat uživatele:

Re: JOBS

#2 Příspěvekod Bisyss » 20 led 2015, 21:00

Za 1) Penize se přičítají až po nějaké době :)
Za 2) Máš na serveru plugin iConomy
Za 3) V creativu to nefunguje (myslim)
Konec .....

Fifal
Příspěvky: 411
Registrován: 17 bře 2013, 19:24
Reputation: 0

Re: JOBS

#3 Příspěvekod Fifal » 20 led 2015, 21:25

Ne peníze se nepřičítají a ano tento plugin mám na serveru.
Pomohl Jsem? ?
Oplat karma + ;))

Uživatelský avatar
Bisyss
Příspěvky: 760
Věk: 9
Registrován: 07 lis 2014, 15:54
Reputation: 1
Bydliště: http://netsword.cz/
Kontaktovat uživatele:

Re: JOBS

#4 Příspěvekod Bisyss » 20 led 2015, 22:18

Ok nějaké základní info:

seznam pluginu
verze serveru
je ten plugin spárovaní (když napišeš /pl svítí jakou barvou?)
log při startu .......

Hele jo takhle zjištovat proč to nejde dokáže jen JOLANDA z karet :)
Konec .....

Fifal
Příspěvky: 411
Registrován: 17 bře 2013, 19:24
Reputation: 0

Re: JOBS

#5 Příspěvekod Fifal » 20 led 2015, 22:45

Plugy
Spoiler: zobrazit

Kód: Vybrat vše

 AuthMe
 AutoMessage
 Citizens
 ColorMe
 Essentials
 GAListener
 Jobs
 LWC
 LagMeter
 Multiverse-Core
 PermissionsEx
 PluginMetrics
 Residence
 SignShop
 TreeAssist
 Updater
 Votifier
 WorldEdit
 iConomy

Verze:
Spoiler: zobrazit

Kód: Vybrat vše

#20150102, development   1.8   Pátek 02. Leden 2015 12:59


Plugin svítí zeleně.

Log:
Spoiler: zobrazit

Kód: Vybrat vše

[FakaHeda] Succesfully authorized (rw)!
Loading libraries, please wait...
> [21:44:36 INFO]: Starting minecraft server version 1.8
> [21:44:36 INFO]: Loading properties
> [21:44:36 INFO]: Default game type: SURVIVAL
> [21:44:36 INFO]: Generating keypair
> [21:44:36 INFO]: Starting Minecraft server on 93.91.250.135:27677
> [21:44:37 INFO]: This server is running CraftBukkit version git-Bukkit-0899683 (MC: 1.8) (Implementing API version 1.8-R0.1-SNAPSHOT)
> [21:44:37 INFO]: [Citizens] Loading Citizens v2.0.14-SNAPSHOT (build 1195)
> [21:44:37 INFO]: [LagMeter] Loading LagMeter v1.16.0
> [21:44:37 INFO]: [Jobs] Loading Jobs v2.12.0
> [21:44:37 INFO]: [AutoMessage] Loading AutoMessage v2.5.2
> [21:44:37 INFO]: [WorldEdit] Loading WorldEdit v6.0;3342-78f975b9
> [21:44:37 INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.3
> [21:44:37 INFO]: [iConomy] Loading iConomy v7.0
> [21:44:37 INFO]: [PermissionsEx] Loading PermissionsEx v1.23.1
> [21:44:37 WARN]: [PermissionsEx] This server is in offline mode. Unless this server is configured to integrate with a supported proxy (see http://dft.ba/-8ous), UUIDs *may not be stable*!
> [21:44:37 INFO]: ultiverse-Core] Loading Multiverse-Core v2.5-b691
> [21:44:37 INFO]: [Votifier] Loading Votifier v1.9
> [21:44:37 INFO]: [LWC] Loading LWC v4.5.0-SNAPSHOT
> [21:44:37 INFO]: [TreeAssist] Loading TreeAssist v5.8.89
> [21:44:37 INFO]: [GAListener] Loading GAListener v1.3.1
> [21:44:37 INFO]: [Essentials] Loading Essentials vTeamCity
> [21:44:37 INFO]: [EssentialsProtect] Loading EssentialsProtect vTeamCity
> [21:44:37 INFO]: [EssentialsSpawn] Loading EssentialsSpawn vTeamCity
> [21:44:37 INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
> [21:44:37 INFO]: [ColorMe] Loading ColorMe v3.8.1
> [21:44:37 INFO]: [Residence] Loading Residence v2.6.6.6
> [21:44:37 INFO]: [AuthMe] Loading AuthMe v3.4
> [21:44:37 INFO]: [LWC] Enabling LWC v4.5.0-SNAPSHOT
> [21:44:37 INFO]: [LWC] Connecting to SQLite
> [21:44:38 WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
> [21:44:38 WARN]: The server will make no attempt to authenticate usernames. Beware.
> [21:44:38 WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
> [21:44:38 WARN]: To change this, set "online-mode" to "true" in the server.properties file.
> [21:44:38 INFO]: Preparing level "world"
> [21:44:38 INFO]: Preparing start region for level 0 (Seed: 4188247372283349767)
> [21:44:39 INFO]: Preparing start region for level 1 (Seed: 4188247372283349767)
> [21:44:39 INFO]: Preparing start region for level 2 (Seed: 4188247372283349767)
> [21:44:39 INFO]: [Citizens] Enabling Citizens v2.0.14-SNAPSHOT (build 1195)
> [21:44:40 INFO]: [Citizens] Unable to use economy handling. Has Vault been enabled?
> [21:44:40 INFO]: [LagMeter] Enabling LagMeter v1.16.0
> [21:44:40 INFO]: agMeter] Not using logs folder.
> [21:44:40 INFO]: agMeter] Enabled! Polling every 40 server ticks. Logging to /hlserver/27677/plugins/LagMeter/lag.log.
> [21:44:40 INFO]: agMeter] Chunks loaded:
> [21:44:40 INFO]: agMeter] World "world": 625.
> [21:44:40 INFO]: agMeter] World "world_nether": 625.
> [21:44:40 INFO]: agMeter] World "world_the_end": 625.
> [21:44:40 INFO]: agMeter] Total chunks loaded: 1875
> [21:44:40 INFO]: agMeter] Entities:
> [21:44:40 INFO]: agMeter] World "world": 586.
> [21:44:40 INFO]: agMeter] World "world_nether": 222.
> [21:44:40 INFO]: agMeter] World "world_the_end": 203.
> [21:44:40 INFO]: agMeter] Total entities: 1011
> [21:44:40 INFO]: [Jobs] Enabling Jobs v2.12.0
> [21:44:40 INFO]: [Jobs] Started database save task
> [21:44:40 INFO]: [Jobs] Started buffered payment thread
> [21:44:40 INFO]: [Jobs] Plugin has been enabled succesfully.
> [21:44:40 INFO]: [AutoMessage] Enabling AutoMessage v2.5.2
> [21:44:40 INFO]: [WorldEdit] Enabling WorldEdit v6.0;3342-78f975b9
> [21:44:40 INFO]: WEPIF: Using the Bukkit Permissions API.
> [21:44:40 INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R1 as the Bukkit adapter
> [21:44:40 INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.3
> [21:44:40 INFO]: Starting FakaHedaMinequery server on 93.91.250.135:28677
> [21:44:40 INFO]: [iConomy] Enabling iConomy v7.0
> [21:44:40 INFO]: [iConomy - April Fools] Enabled (10 ms)
> [21:44:40 INFO]: [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
> [21:44:40 INFO]: [iConomy - April Fools] Purged accounts with default balance.
> [21:44:40 INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.1
> [21:44:40 INFO]: [PermissionsEx] Initializing file backend
> [21:44:40 INFO]: [PermissionsEx] Permissions file successfully reloaded
> [21:44:40 INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
> [21:44:40 INFO]: ultiverse-Core] Enabling Multiverse-Core v2.5-b691
> [21:44:41 INFO]: ultiverse-Core] [AllPay] - Version 13.0 - hooked into iConomy 6 for Multiverse-Core v2.5-b691
> [21:44:42 INFO]: Preparing start region for level 3 (Seed: -6747531020635947101)
> [21:44:42 INFO]: Preparing start region for level 4 (Seed: 5939679097191980342)
> [21:44:42 INFO]: ultiverse-Core] 5 - World(s) loaded.
> [21:44:42 INFO]: ultiverse-Core] Version 2.5-b691 (API v18) Enabled - By Rigby, fernferret, lithium3141 and main--
> [21:44:42 INFO]: [Votifier] Enabling Votifier v1.9
> [21:44:42 INFO]: [Votifier] Votifier enabled.
> [21:44:42 INFO]: [TreeAssist] Enabling TreeAssist v5.8.89
> [21:44:42 INFO]: [TreeAssist] debugging: off
> [21:44:42 INFO]: [GAListener] Enabling GAListener v1.3.1
> [21:44:42 INFO]: [GAListener] GAListener v1.3.1 Enabled
> [21:44:42 INFO]: [Essentials] Enabling Essentials vTeamCity
> [21:44:42 INFO]: Bukkit version format changed. Version not checked.
> [21:44:42 INFO]: git-Bukkit-0899683 (MC: 1.8)
> [21:44:42 INFO]: 1.8-R0.1-SNAPSHOT
> [21:44:42 INFO]: Using locale en_US
> [21:44:42 INFO]: Using locale en_US
> [21:44:42 INFO]: Essentials: Using PermissionsEx based permissions.
> [21:44:42 INFO]: [Essentials] Payment method found (iConomy version: 6)
> [21:44:42 INFO]: [EssentialsProtect] Enabling EssentialsProtect vTeamCity
> [21:44:42 INFO]: [EssentialsSpawn] Enabling EssentialsSpawn vTeamCity
> [21:44:42 INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity
> [21:44:42 INFO]: [ColorMe] Enabling ColorMe v3.8.1
> [21:44:42 INFO]: [ColorMe] Vault was not found! Running without economy!
> [21:44:42 INFO]: [ColorMe] Running without Spout!
> [21:44:42 INFO]: [ColorMe] Using own group system!
> [21:44:42 INFO]: [ColorMe] SoftMode enabled. If other chat plugins are found, the chat won't be affected by ColorMe.
> [21:44:42 INFO]: [ColorMe] Found EssentialsChat. Will use it for chat!
> [21:44:42 INFO]: [ColorMe] Didn't found TagAPI!
> [21:44:42 INFO]: [Residence] Enabling Residence v2.6.6.6
> [21:44:42 INFO]: [Residence] Permissions plugin NOT FOUND!
> [21:44:43 INFO]: [Residence] Scanning for economy systems...
> [21:44:43 INFO]: [Residence] Vault NOT found!
> [21:44:43 INFO]: [Residence] BOSEconomy NOT found!
> [21:44:43 INFO]: [Residence] Successfully linked with Essentials Economy!
> [21:44:43 INFO]: [Residence] Found WorldEdit
> [21:44:43 INFO]: [Residence] Enabled! Version 2.6.6.6 by bekvon
> [21:44:43 INFO]: [AuthMe] Enabling AuthMe v3.4
> [21:44:43 INFO]: [AuthMe] Loading Configuration File...
> [21:44:43 INFO]: [AuthMe] Set Language: en
> [21:44:43 INFO]: [AuthMe] Hook with Multiverse-Core for SpawnLocations
> [21:44:43 INFO]: [AuthMe] Hook with Essentials plugin
> [21:44:43 INFO]: [AuthMe] Hook with EssentialsSpawn plugin
> [21:44:43 INFO]: [AuthMe] LICENSE : This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com
> [21:44:43 INFO]: [AuthMe] Authme 3.4 enabled
> [21:44:43 INFO]: Server permissions file permissions.yml is empty, ignoring it
> [21:44:43 INFO]: Done (5.834s)! For help, type "help" or "?"
> [21:44:43 INFO]: Starting GS4 status listener
> [21:44:43 INFO]: Starting remote control listener
> [21:44:43 INFO]: Query running on 93.91.250.135:27677
> [21:44:43 WARN]: No rcon password set in '/hlserver/27677/server.properties', rcon disabled!
> [21:44:43 ERROR]: ==================== Jobs ====================
> [21:44:43 ERROR]: Vault is required by this plugin for economy support!
> [21:44:43 ERROR]: Please install Vault first!
> [21:44:43 ERROR]: You can find the latest version here:
> [21:44:43 ERROR]: http://dev.bukkit.org/server-mods/vault/
> [21:44:43 ERROR]: ==============================================
> [21:44:43 INFO]: [GAListener] Connection established!
> [21:44:43 INFO]: [GAListener] Loading queued votes
> [21:44:43 INFO]: [GAListener] Loaded 1 queued votes
> [21:44:44 INFO]: [Citizens] Loaded 23 NPCs.
Pomohl Jsem? ?
Oplat karma + ;))

Uživatelský avatar
Bisyss
Příspěvky: 760
Věk: 9
Registrován: 07 lis 2014, 15:54
Reputation: 1
Bydliště: http://netsword.cz/
Kontaktovat uživatele:

Re: JOBS

#6 Příspěvekod Bisyss » 20 led 2015, 22:53

Hele nevim :)
Mě to funguje mam stejní verze pluginu Jobs a iConomy
Jediný rozdíl je v tom že já mam na serveru jen vybrané joby (leda ty potřebné :) )
Konec .....

Fifal
Příspěvky: 411
Registrován: 17 bře 2013, 19:24
Reputation: 0

Re: JOBS

#7 Příspěvekod Fifal » 20 led 2015, 23:12

Nevíte někdo proč to ty peníze nedává? :(
Pomohl Jsem? ?
Oplat karma + ;))

Uživatelský avatar
Frank_ACE
Příspěvky: 548
Registrován: 08 dub 2014, 21:10
Reputation: 0

Re: JOBS

#8 Příspěvekod Frank_ACE » 21 led 2015, 00:57

Ted nevim, nepotrebuje to nahodou plugin VAULT?

Uživatelský avatar
_Johny_
Příspěvky: 83
Registrován: 10 dub 2014, 21:18
Reputation: 0
Bydliště: Liptov

Re: JOBS

#9 Příspěvekod _Johny_ » 21 led 2015, 13:26

áno potrebuje
82.208.17.42:27137

Fifal
Příspěvky: 411
Registrován: 17 bře 2013, 19:24
Reputation: 0

Re: JOBS

#10 Příspěvekod Fifal » 22 led 2015, 16:07

Už to mám! Děkuji :)
Pomohl Jsem? ?
Oplat karma + ;))


Zpět na „Minecraft, Tekkit“

Kdo je online

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