Fire

Discussion in 'Archived: Plugin Requests' started by Buzzhawke, Feb 20, 2013.

  1. Offline

    Buzzhawke

    Ok i need a plugin for my server "Man vs. Minecraft" what i need is a plugin that where you can take flint and steel and you set up a camp fire 1 netherack on the ground so the fire burns on the netherack btw the netherack should appear when you click on the flint and steel. Also maybe you can set it so you have like a % chance of creating a fire. Thanks for reading this.

    [fire][fire] [fire][fire][tnt]
     
  2. Offline

    Lars1011

    So you want it to be when you right click on grass with flint and steel the grass should change to Netherack and it should burn?
     
  3. Offline

    Buzzhawke

    Yes But you would have a % chance of it happening thought and a message would say in red My grass is probaly too wet to start a fire. that sort of thing and you can change the messasage to

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

    1SmallVille1

    What percentage do you want? 50-50?
     
  5. Offline

    Lars1011

    I have an idea, don't know if its good, but if there is water in a 2 block radius of where you want to make the fire then it says its too wet also!
     
  6. Offline

    Zarius

    Probably better to have a dedicated plugin but I like trying to see what I can do with OtherDrops so here's an example using that:

    Code:
      GRASS:
        - action: RIGHT_CLICK
          tool: FLINT_AND_STEEL
          message: "Sorry, it's too wet."  # default message
     
        - action: RIGHT_CLICK
          tool: FLINT_AND_STEEL
          chance: 50%
          weather: clear
          flags: UNIQUE  # make sure it overrides the default message
          message: "You've lit a fire."
          dropgroup:
            - replacementblock: NETHERRACK  # set the grass to NETHERRACK
     
            - loc-offset: 0/1/0  # shift location up 1 & set fire
              replacementblock: FIRE 
    
    I don't know how long the fire would last (I assume it would correctly burn forever on the netherrack).
     

Share This Page