[REQ] No items drop on death

Discussion in 'Archived: Plugin Requests' started by d4rkpow3r, Jul 27, 2011.

  1. Hi, i been looking around and i find many plugins for death and items and all, but what i need is one where no one, EVER drops items on death, no filters, just a simple one, can anyone do that?

    just disabling all drops on death for all players DX
     
  2. I'll take a look at this.
     
  3. thanks =)
     
  4. @d4rkpow3r Here you go! Should disable any item drops from dead players. Let me know if you need any additional behaviour.
     
  5. sweet thanks a lot, testing soon

    hum this is not quite right. i dont drop the items, but i dont keep them either XD
    i wanted it to keep the items all safe in the inventory =P

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 18, 2016
  6. @d4rkpow3r I am not a clairvoyant ;) I will try to find some time for fixing this.
     
  7. Offline

    Perdog

    Try this out, I think it may be what you are looking for
     
  8. i guess i gotta learn to work with the permisions, i have no clue how it works DX
     
  9. Offline

    Perdog

    Its not too hard, once you learn it it's easy
    Code:
    groups:
        Guest:
            default: true
            permissions:
            - modifyworld.*
        Admin:
            options:
                rank: '0'
            default: false
            - modifyworld.*
        Perdog:
            options:
                group: admin
    
    That's what Permissionspex looks like, although other permissions plugins may be different. Too add a permission you would put a "-" infront of the node, so say I wanted to add "example.permissions" to the Admin group, it would look something like this
    Code:
    groups:
        Guest:
            default: true
            permissions:
            - modifyworld.*
        Admin:
            options:
                rank: '0'
            default: false
            - modifyworld.*
            - example.permissions
        Perdog:
            options:
                group: admin
    any other permissions you want to add, do them in the same manner, if you have any problems or need any other help feel free to message me :)
     
  10. ah i think i got the basics of it now, thx
     

Share This Page