Filled [Plugin Request] Useful Rotten Flesh

Discussion in 'Archived: Plugin Requests' started by GregMC, Oct 20, 2013.

  1. Offline

    GregMC

    Plugin category : Misc.

    Suggested name : Useful RottenFlesh

    What I want : A feature that lets you cook rotten flesh to leather.

    Ideas for commands :

    - /urf reload
    Reloads the config.

    Ideas for permissions :

    - urf.reload
    Permission for /urf reload.

    When I'd like it by : Anytime. Maybe a week, if possible.
     
  2. Offline

    mactown21

    Wait, turn rottenflesh into leather without commands nore permissions? Um, I dont think you can do this without permissions, Unless it checks every certain amount of ticks, in the players inventory and change the amount of rottenflesh into leather
     
  3. Offline

    GregMC

    I said :
     
  4. Offline

    mactown21

    Yea I can make that, will it be for spout or without?
     
  5. Offline

    GregMC

    Without Spout.
     
  6. Offline

    Zarkopafilis

    I think you can make it for bukkit and spout if planned carefully...
     
  7. Offline

    mactown21

    Almost done just adding more things
    Is there anymore unwanted items that you want smelted?
    Code:java
    1. private void convertItem(ItemStack item, Player player) {
    2. switch (item.getType()) {
    3. case ROTTEN_FLESH:
    4. item.setType(Material.LEATHER);
    5. break;
     
  8. Offline

    GregMC

    Nothing.
    Anyway, this will happen in a furnace, right ?
     
  9. Offline

    bossomeness

    OtherDrops does this.
     
  10. Offline

    dan_

    Hello,
    I can make this plugin for you.
    Thanks!
    Daniel
     
  11. Offline

    GregMC

    Not drops.
    I'm asking for a plugin that adds a feature which you use to smelt/cook rotten flesh to leather.
    Thanks !
    But, mactown21 is currently making it.
    So, another time.
    If he decides to stop, you can make it.
     
  12. Offline

    mactown21

    Im making it now GregMC, Im uploading it now to bukkit, Calm your tits, ,,(little kids) -_- -- So annoying
     
  13. Offline

    bossomeness

    No, with OtherDrops, you can change the output of furnaces, so when you cook rotten flesh, leather is the result. You should at least look at the plugin first. Just keep this in mind in the future.
     
    whitehooder likes this.
  14. Offline

    Jade

    Considering he was just stating to the other person who was going to take it up that if you weren't going to, they could, his "tits" seem to be pretty calm. No need to tell someone who is on the internet, where you can't see/hear their emotions, to "calm their tits".
     
  15. Offline

    GregMC

    It doesn't want to work in my server.
     
  16. Offline

    mactown21

    Actually you can make a plugin that outputs another item in a furnace, ive tried different methods, but its not working, but im for sure that a 50% chance that your able to cook items in a furnace and let a player recieve it, This is what i was planning onto doing!

    What i was playing on doing was if they put the item in the furnace it will take it and wait certain amount of ticks, and each rotten flesh will pop out near you, (front) and give it to you, or drops the leather near the furnace that the flesh was accepted into to!
     
  17. Offline

    GregMC

    So, that means you can't get the leather from the furnace ?
     
  18. Offline

    BillyGalbreath

    Use a recipe plugin like Pl3xRecipes. lacks the ability to add furnace recipes (for now), but one of my defaults in the config is 9 rotten flesh craft into 1 leather.

    I'll go ahead and start working on adding furnace support. This thread has motivated me. ^_^

    Edit:

    Done. Build #2 #8 on my Jenkins has furnace recipes now. Will upload v1.1 to DBO later today after I add in some more features that were requested. Enjoy! ^_^

    [​IMG]
     
  19. Offline

    bossomeness

    Is there an error log? Maybe you configured it wrong?
     
    timtower likes this.
  20. Offline

    GregMC

    I downloaded it, customized the config file and it didn't work.
    I tried cooking rotten flesh to leather but it doesn't work.

    Why did that happen ?
     
  21. Offline

    whitehooder

    Just get this easy one over with. It's as simple as this:
    Code:java
    1. FurnaceRecipe fr = new FurnaceRecipe(new ItemStack(Material.LEATHER, 1), Material.ROTTEN_FLESH);
    2. getServer().addRecipe(fr);


    Packed in a jar
     
  22. Offline

    GregMC

    Thanks !
    I will shoot you a PM if I find something wrong.
    ;)
     
  23. Offline

    BillyGalbreath

    No idea why that happened. It works fine, as you seen in my screenshot.
     
  24. Offline

    bossomeness

    Just for future reference, post an error log (or your server's startup log) instead of saying "it just doesn't want to work.
     
    timtower and BillyGalbreath like this.

Share This Page