Diamond notifier?

Discussion in 'Archived: Plugin Requests' started by Strahan, Jun 4, 2011.

  1. Offline

    Strahan

    Hi. I could have sworn I saw a plugin in the past that would announce when someone mines diamond, but I can't find it. Is there anything like that? The best would be if a plugin could write to a log the date/time/username every time a person mined diamond (or whatever else, could be configurable maybe).

    I have a user I suspect is using xray, that would be a good way to prove it short of wasting my time following the user whilst invisible.
     
  2. Offline

    rushone2009

    Get Essentials, and go into your config file. Find the line that says EssentialsProtect and edit this:


    Code:
      # For which block types would you like to be alerted?
      # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
      alert:
        # 10: lava
        # 11: still lava
        # 46: TNT
        on-placement: 10,11,46
        on-use:
        # 46: TNT
        on-break: 46
    To this:
    Code:
      # For which block types would you like to be alerted?
      # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
      alert:
        # 10: lava
        # 11: still lava
        # 46: TNT
        on-placement: 10,11,46
        on-use:
        # 46: TNT
        # 53: Diamond Ore
        on-break: 46,53
    This way when anyone breaks a diamond ore block, you will get a notification on the server. This goes for any block or item. Hope thats helps, and it works! :)
     
  3. Offline

    Trc202

  4. Offline

    Strahan

    Thanks!
     

Share This Page