Essential Plugin Problem..

Discussion in 'Plugin Development' started by Fruitkiller_fr, Sep 26, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    Fruitkiller_fr

    I downloaded Essential and it works perfectly, the commands seems to work good for exemple, /forestgen, /warp , etc.. unless when I try to make a Sign code, for exemple, Sign colors, [Heal], [Buy], [Sell], [Warp], it clearly doesn't work, I'm wondering what's the problem.. anyway thank you in advance.
     
  2. Offline

    james137137

  3. Offline

    HyrulesLegend

    This should be posted in Bukkit Help.
     
  4. Offline

    Fruitkiller_fr

    wait, that thing? so what happen next? what do I have to do ?
    http://ess.khhq.net/cfg/

    No Bukkit help ain't for plugins.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 4, 2016
  5. Offline

    HyrulesLegend

    Yes, it is. This is for developers when that have an issue developing, or coding plugins. You are not coding or developing anything in this.
     
  6. Offline

    The_Doctor_123

    Fruitkiller_fr
    This is plugin development, which is a section to help people with programming their Bukkit plugins. What you want is far from that.

    Look in the Essentials config and you'll see a place where you can enable signs by removing the "#" from each line of the ones you want to enable.
     
  7. Offline

    Fruitkiller_fr

    Yeah you're probably right, I just noticed.. but I really need an answer quick :k..

    What do you mean by Essentials config? I can't see that..

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 4, 2016
  8. Offline

    The_Doctor_123

    Fruitkiller_fr
    Boy.. you really need to look in the Essentials documentation.

    Your Essentials config is located at:
    Code:
    ROOT_SERVER_FOLDER\plugins\Essentials\config.yml
    If you scroll down to line 250, you will find this:
    Code:
    # Essentials Sign Control
    # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
    # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
    # Essentials Colored sign support will be enabled when any sign types are enabled.
    # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
     
    enabledSigns:
      #- color
      #- balance
      #- buy
      #- sell
      #- trade
      #- free
      #- disposal
      #- warp
      #- kit
      #- mail
      #- enchant
      #- gamemode
      #- heal
      #- info
      #- spawnmob
      #- repair
      #- time
      #- weather
    To enable all the signs, delete the "#"'s:
    Code:
    # Essentials Sign Control
    # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
    # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
    # Essentials Colored sign support will be enabled when any sign types are enabled.
    # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
     
    enabledSigns:
      - color
      - balance
      - buy
      - sell
      - trade
      - free
      - disposal
      - warp
      - kit
      - mail
      - enchant
      - gamemode
      - heal
      - info
      - spawnmob
      - repair
      - time
      - weather
     
  9. Offline

    Fruitkiller_fr

    Work's perfectly thank you.
     
Thread Status:
Not open for further replies.

Share This Page