Config.yml Tutorial

# When enabled, update notifications will be sent to OP players on join.
update_notification: true

# List of gamemodes on which players will not be able to right-click 
# on searches blocks/entities to find it.
# Gamemodes: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/GameMode.html
blocked_gamemodes:
- SPECTATOR
- ADVENTURE

# This is the max distance in blocks players will be able to
# see the display particles of an object.
max_distance_particle_display: 20

# The plugin constantly checks if an object from a Search is removed by unknown
# reasons (WorldEdit for example). Here you can define the time
# (in seconds) of this repetitive check task.  
objects_check_time: 4

# This option defines the time (in seconds) to automatically save player data.
data_auto_save_time: 300

# When enabled, the plugin will check for a valid location when teleporting to a 
# search object, preventing to spawn inside a block.
fix_teleport: true

# When enabled, if the player tries to click on a search object and the event was
# already cancelled by another plugin, then nothing will happen.
# Used mainly when you are having compatibility issues with other plugins.
ignore_cancelled_events: false

# MySQL information if you want to share player data between
# multiple servers.
mysql_database:
  enabled: false
  host: localhost
  port: 3306
  username: root
  password: root
  database: database

Last updated