Geik Farmer V6 AutoHarvest çalışmıyor lütfen yardım

aybars427

Oduncu
Katılım
24 Tem 2025
Mesajlar
1
Beğeni
0
Puanları
20
Arkadaşlar geik in çiftçisini kullanıyorum spawnerkiller çalışıyor ama autoharvest düzgün çalışmıyor mesela buğdayı oto hasat ediyor ama şeker kamışı kaktüs falan bunları etmiyor modülede ekledim bunları sırasıyla modules.yml - items.yml ve autoharvest klasörünün içindeki config

Kod:
Voucher:
  # if you don't want to use voucher system
  # which is place farmer with a voucher only console
  # and players with farmer.admin permission can give voucher.
  # you can disable buy feature and give farmer with command
  status: true
  # if you want to use voucher system with override method
  # you can enable this setting. it will override voucher to farmer
  # which replace farmer level same as voucher level when voucher level
  # is higher than farmer level.
  useWhenFarmerExist: false
  # if you want to give voucher when farmer removed
  # you can enable this setting. it will give voucher to player
  giveVoucherWhenRemove: false
AutoHarvest:
  # auto harvest crops addon harvest crops automatically
  # if you want this module to be enabled, you can set this to true
  status: true
  # if you want to make a little difficult to players, you can set this to true
  # also it can do 1 check for each crop can impact performance small amount, but it can be a problem if you have a lot of crops
  # if you set this to true, the crops will be harvested only if the piston is top direction of the crops
  # if you set this to false, the crops will be harvested immediately even there is no piston
  requirePiston: false
  # this setting required requirePiston to be true to work
  # recommended to set this to false if you have performance issues. (does 5 block check for each crop)
  # if you set this to false, the crops will be harvested only if the piston is top direction of the crops
  # if you set this to true, the crops will be harvested if the piston in any direction of the crops
  checkAllDirections: false
  # Harvest crops without farmer
  withoutFarmer: false
  # when stock is full, the crops cannot drop to ground
  # recommended to set this to false if you have performance issues. (does 5 block check for each crop)
  # if you set this to false, the crops will grow even if the stock is full.
  # and the crops will be harvested and dropped on the ground.
  checkStock: true
  # default value of autoharvest module
  defaultStatus: false
  # there is perm for use this module default: autoharvest.harvest
  customPerm: ciftci.player
  # write the crops you want to harvest here
  # *IMPORTANT* Write only base item of crops. for example, if you want to harvest wheat, you must write WHEAT here
  # if you want to harvest all crops, you must write all items here (*if you remove this setting, it can cause errors*)
  # also you must write the crop names same as items.yml items.
  # Available harvests: WHEAT, CARROT, POTATO, PUMPKIN, MELON, BEETROOT, NETHER_WART, SUGAR_CANE, COCOA_BEANS
  items:
  - WHEAT
  - CARROT
  - POTATO
  - PUMPKIN
  - SUGAR_CANE
Geyser:
  # if you want to use geyser module
  # set feature to true.
  status: false
SpawnerKiller:
  # if you want to use spawner killer system
  # set feature to true.
  # and players with farmer.admin permission can give spawner killer.
  # you can disable buy feature and give farmer with command
  status: true
  # if you want to kill mobs without farmer set it false
  requireFarmer: true
  # cook foods on spawner drop
  cookFoods: false
  # remove mob can't see mob only spawn item.
  removeMob: true
  # default status for spawner killer when farmer place
  # if set true, farmer will be enable spawner killer by default
  # if set false, farmer will be disable spawner killer by default
  defaultStatus: true
  # custom perm for spawner killer status changer
  customPerm: ciftci.player
  # set whitelist mobs for spawner killer
  # if you want to kill only whitelist mobs, set mode to whitelist
  # if you want to kill all mobs except blacklist mobs, set mode to blacklist
  mode: blacklist
  # You can add remove blacklist section
  # if you want to remove mobs from blacklist
  whitelist:
  - VILLAGER
  # You can add remove blacklist section
  # if you want to remove mobs from blacklist
  blacklist:
  - VILLAGER
AutoSeller:
  # if you want to enable it, set this to true
  # this setting will enable the auto-seller
  # and players with farmer.admin permission can give auto seller.
  # you can disable buy feature and give farmer with command
  status: true
  # if you want to enable the auto-seller for all players, set this to true
  # if you want to enable the auto-seller for specific players, set this to false (perm-check)
  # which replace farmer level same as auto seller level when auto seller level
  # is higher than farmer level.
  defaultStatus: false
  # custom perm only used if defaultStatus is false
  # only players with this perm will be able to use the auto-seller
  customPerm: ciftci.autosell
  # all the items that will be sold by the auto-seller
  # you can add as many items as you want
  # the items must be same as the ones in the items.yml of the Farmer
  # you can also remove this section for enable it to all items
  items: []
# Production Module
Production:
  # if you don't want to calculate
  # average production on farmer items
  # set it to false
  status: true
  # if you want to kill mobs without farmer set it false
  reCalculate: 15
  # if you want to calculate average production
  # write the items you want to calculate
  # write the items in the items.yml file with same name
  # you can also remove this section, and it will calculate all items in the items.yml file
  items:
  - CACTUS
  - PUMPKIN
  - MELON_SLICE
  - SUGAR_CANE
  - BAMBOO
  - MELON_SEEDS
  - PUMPKIN_SEEDS
Kod:
Items:
  POTATO:
    price: 0.65
  CARROT:
    price: 0.65
  WHEAT:
    price: 0.80
  MELON_SLICE:
    price: 0.14
  CACTUS:
    price: 0.18
  PUMPKIN:
    price: 0.5
  SUGAR_CANE:
    price: 0.35
  BAMBOO:
    price: 0.1
  COCOA_BEANS:
    price: 0.45
  WHEAT_SEEDS:
    price: 0.0
  POPPY:
    price: 0.05
  STRING:
    price: 0.2
  BLAZE_ROD:
    price: 0.8
  INK_SAC:
    price: 0.2
  BEEF:
    price: 0.25
  MUTTON:
    price: 0.25
  CHICKEN:
    price: 0.25
  PORKCHOP:
    price: 0.25
  COD:
    price: 0.4
  SALMON:
    price: 0.4
  TROPICAL_FISH:
    price: 7.0
  PUFFERFISH:
    price: 4.0
  LAPIS_LAZULI:
    price: 0.05
  COAL:
    price: 0.05
  REDSTONE:
    price: 0.10
  GLOWSTONE_DUST:
    price: 0.15
  GOLD_NUGGET:
    price: 0.18
  IRON_INGOT:
    price: 1.0
  GOLD_INGOT:
    price: 1.75
  DIAMOND:
    price: 3.0
  EMERALD:
    price: 2.0
  WHITE_WOOL:
    price: 0.5
  ORANGE_WOOL:
    price: 0.5
  MAGENTA_WOOL:
    price: 0.5
  LIGHT_BLUE_WOOL:
    price: 0.5
  YELLOW_WOOL:
    price: 0.5
  LIME_WOOL:
    price: 0.5
  PINK_WOOL:
    price: 0.5
  GRAY_WOOL:
    price: 0.5
  LIGHT_GRAY_WOOL:
    price: 0.5
  CYAN_WOOL:
    price: 0.5
  PURPLE_WOOL:
    price: 0.5
  BLUE_WOOL:
    price: 0.5
  BROWN_WOOL:
    price: 0.5
  GREEN_WOOL:
    price: 0.5
  RED_WOOL:
    price: 0.5
  BLACK_WOOL:
    price: 0.5
  STONE:
    price: 0.05
  COBBLESTONE:
    price: 0.03
  IRON_ORE:
    price: 0
  GOLD_ORE:
    price: 0
  FEATHER:
    price: 0.08
  LEATHER:
    price: 0.05
  ARROW:
    price: 0.1
  ROTTEN_FLESH:
    price: 0.3
  GUNPOWDER:
    price: 0.5
  SPIDER_EYE:
    price: 0.3
  ENDER_PEARL:
    price: 0.4
  BONE:
    price: 0.3
  NETHER_WART:
    price: 0.52
  PRISMARINE_SHARD:
    price: 0.35
  PRISMARINE_CRYSTALS:
    price: 0.35
  SWEET_BERRIES:
    price: 0.38
  BEETROOT:
    price: 0.6
  SUGAR:
    price: 0.25
  GLASS_BOTTLE:
    price: 0.15
  KELP:
    price: 0.15
  RAW_IRON:
    price: 0.0
  RAW_GOLD:
    price: 0.0
  MELON_SEEDS:
    price: 0.1
  PUMPKIN_SEEDS:
    price: 0.1
  BEETROOT_SEEDS:
    price: 0.1
  SAND:
    price: 0
  EGG:
    price: 0.06
  COOKED_BEEF:
    price: 0
Kod:
# auto harvest crops addon harvest crops automatically
# if you want this module to be enabled, you can set this to true
status: true
# if you want to make a little difficult to players, you can set this to true
# also it can do 1 check for each crop can impact performance small amount, but it can be a problem if you have a lot of crops
# if you set this to true, the crops will be harvested only if the piston is top direction of the crops
# if you set this to false, the crops will be harvested immediately even there is no piston
requirePiston: false
# this setting required requirePiston to be true to work
# recommended to set this to false if you have performance issues. (does 5 block check for each crop)
# if you set this to false, the crops will be harvested only if the piston is top direction of the crops
# if you set this to true, the crops will be harvested if the piston in any direction of the crops
checkAllDirections: false
# Harvest crops without farmer
withoutFarmer: false
# when stock is full, the crops cannot drop to ground
# recommended to set this to false if you have performance issues. (does 5 block check for each crop)
# if you set this to false, the crops will grow even if the stock is full.
# and the crops will be harvested and dropped on the ground.
checkStock: true
# default value of autoharvest module
defaultStatus: false
# there is perm for use this module default: autoharvest.harvest
customPerm: farmer.autoharvest
# write the crops you want to harvest here
# *IMPORTANT* Write only base item of crops. for example, if you want to harvest wheat, you must write WHEAT here
# if you want to harvest all crops, you must write all items here (*if you remove this setting, it can cause errors*)
# also you must write the crop names same as items.yml items.
# Available harvests: WHEAT, CARROT, POTATO, PUMPKIN, MELON, BEETROOT, NETHER_WART, SUGAR_CANE, COCOA_BEANS
items:
- WHEAT
- CARROT
- POTATO
- PUMPKIN
- SUGAR_CANE
 
Üst