[SEC/MECH/FUN] PreciousStones - Block Area Proteciton System [BukkitDev]

Discussion in 'Archived: Plugin Releases' started by phaed, Jan 18, 2011.

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

    phaed

  2. Offline

    Axrael999

    dont think it did. perhaps you could make a persistent /ps clean function every so often to automatically delete orphaned zones.
     
  3. Offline

    phaed

    That's not a bad idea. Done. Now it cleans orphans before every automatic save. Next release will have the code.

    Wow someone in my server just hit 18K altitude with a cannon that has a bouncer stone every few blocks. Insane.

    Edit:

    Wow he has reached 100k :O. Dunno how I think you reach a certain height with a certain velocity and you cross the gravity threshold :O

    Screenshot: http://i1191.photobucket.com/albums/z476/compactmustache/PhaedLauncher.png

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

    Axrael999

    I was just thinking of how awesome it would be to have a teleportation block maybe using slowsand or netherrack. Also making it toggle on/off with redstone would be amazing as well. Hope to hear your thoughts.
     
  5. Offline

    LSky

    Another issue that the players on my server are so keen to work around. I added chests to the list of unprotectable blocks, but smart people as they are, people now dig to the bottom and place their chests between bedrock, then put a forcefield on top of it. The other option is to surround the chests with 6 forcefields, creating a secure area in the center. I guess I'll have to live with this.
     
  6. Offline

    Axrael999

    Yeah, my users are also doing exactly this as well. What you could do is change the entry bouncer to something harder to get than lapis. Lapis, while rare, drops alot of loot per ore, making it pretty abundant. I think phaed made it when the lapis dropped a little less. Entry bouncer is a very powerful block.
     
  7. Offline

    dwatring

    Code:
    bypass-blocks: [39,40,51,59]             # mushrooms, fire, crops
    unbreakable-blocks: [41]                 # gold
    unprotectable-blocks: [41]      # chest, workbench, furnaces
    force-field-blocks:
        -
          title: "Jack-o-Death"
          block: 91
          radius: 5
          slow-damage: true
          no-conflict: true
        -
          title: "Air of Atlantis"
          block: 18
          radius: 10
          give-air: true
          no-conflict: true
        -
          title: "Glow of Life"
          block: 89
          radius: 5
          slow-heal: true
          no-conflict: true
        -
          title: "Protection"
          block: 84
          radius: 8
          custom-height: 126
          prevent-fire: true
          prevent-place: true
          prevent-destroy: true
          prevent-explosions: true
          prevent-unprotectable: false
          guard-dog: true
          nameable: true
          welcome-message: true
          farewell-message: true
        -
          title: "Peace Keeper"
          block: 19
          radius: 10
          prevent-pvp: true
          prevent-fire: true
          prevent-place: true
          prevent-destroy: true
          prevent-explosions: true
          nameable: true
          welcome-message: true
          farewell-message: true
    log:
        entry: false
        fire: true
        pvp: false
        place: false
        destroy: false
        destroy-area: false
        unprotectable: true
        bypass-pvp: true
        bypass-delete: true
        bypass-destroy: true
        bypass-unprotectable: true
        conflict-place: true
    notify:
        place: true
        destroy: true
        bypass-place: true
        bypass-destroy: true
        bypass-unprotectable: true
        guard-dog: true
    warn:
        entry: true
        fire: true
        pvp: true
        place: true
        destroy: true
        destroy-area: true
        unprotectable: true
        instant-heal: true
        slow-heal: true
        slow-damage: true
        give-air: true
    settings:
        public-block-details: true
        allowed-can-break-pstones: true
        sneaking-bypasses-damage: true
        drop-on-delete: true
        disable-alerts-for-admins: true
        disable-bypass-alerts-for-admins: false
        off-by-default: false
    saving:
        frequency-minutes: 5
        purge-backups-after-days: 7
    Code:
    ##
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix:
                build: true
            inheritance:
            permissions:
                - 'mcmmo.commands.party'
                - 'mcmmo.commands.setmyspawn'
                - 'mcmmo.motd'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'mcmmo.skills.*'
                - 'preciousstones.benefit.*'
                - 'essentials.msg'
                - 'essentials.spawn'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'herosneak.auto'
                - 'essentials.list'
                - 'essentials.warp'
                - 'preciousstones.whitelist.*'
        Moderator:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.me'
                - 'essentials.tpahere'
                - 'essentials.tpa'
                - 'mcmmo.commands.ptp'
                - 'essentials.warp'
                - 'essentials.setwarp'
                - 'essentials.nick'
        Admin:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
    ##
    #
    ##
    users:
        dwatring:
            group: Admin
            info:
                prefix: '[&3Mr. Owner!&f]&4'
                suffix: '&f'
            permissions:
        AC2:
            group: Admin
            info:
                prefix: '[Moo]&4'
                suffix: '&f'
            permissions:
        samxkim:
            group: Admin
            info:
                prefix: '[&3Head Admin&f]&4'
                suffix: '&f'
            permissions:
        Teraz:
            group: Moderator
            info:
                prefix: '[&3OverLord&f]'
                suffix: '&f'
            permissions:
        sockhead125:
            group: Moderator
            info:
                prefix: '[&3Super Saiyan&f]'
                suffix: '&f'
            permissions:users:
        ronaksheth97:
            group: Admin
            info:
                prefix: '[&3Indian&f]&4'
                suffix: '&f'
            permissions:
        Bolonia01:
            group: Moderator
            info:
                prefix: '[&dMs. Neff&f]'
                suffix: '&f'
            permissions:
        winman954:
            group: Moderator
            info:
                prefix: '[&4Mr. Neff&f]'
                suffix: '&f'
            permissions:
        zyxzo:
            group: Moderator
            info:
                prefix: '[&4Kool Kid&f]'
                suffix: '&f'
            permissions:
        TheBBQTeam:
            group: Moderator
            info:
                prefix: '[&bMr. Bacon!&f]'
                suffix: '&f'
            permissions:
        ovhan:
            group: Moderator
            info:
                prefix: '[&aMtn. King&f]'
                suffix: '&f'
            permissions:
        hansssa:
            group: Admin
            info:
                prefix: '[Moo]&4'
                suffix: '&f'
            permissions:
        fluffymetroid:
            group: Moderator
            info:
                prefix: '[&6Touch It&f]'
                suffix: '&f'
            permissions:
        eddygzz9:
            group: Admin
            info:
                prefix: '[&3Co-Owner&f]&4'
                suffix: '&f'
            permissions:
        Pickoremine:
            group: Moderator
            info:
                prefix: '[&5Ninja&f]'
                suffix: '&f'
            permissions:
        soldier135:
            group: Moderator
            info:
                prefix: '[&3Ze Doctor&f]'
                suffix: '&f'
            permissions:
        drolla:
            group: Moderator
            info:
                prefix: '[&4LvB on yo head&f]'
                suffix: '&f'
            permissions:
        x3ndless:
            group: Moderator
            info:
                prefix: '[&aDirector&f]'
                suffix: '&f'
            permissions:
        lopgan121:
            group: Admin
            info:
                prefix: '[&dMr. Pimp&f]&4'
                suffix: '&f'
            permissions:
        KingZarlock:
            group: Admin
            info:
                prefix: '[&5Z&f]&4'
                suffix: '&f'
            permissions:
        zackmndz:
            group: Admin
            info:
                prefix: '[&aThe Omnipotent&f]&4'
                suffix: '&f'
            permissions:
        Goodgamer100:
            group: Admin
            info:
                prefix: '[&cExcecutive Producer]&4'
                suffix: '&f'
            permissions:
    My craftbukkit is latest, this is the permissions plugin I am using: http://forums.bukkit.org/threads/ad...ow-with-real-multiworld-permissions-556.5974/

    The problem I am having, is when a player tries to place the "Protection" block. They place it, and whatever they try to place it on it says "Cannot protect "x"" Such as "Cannot protect Grass" if grass is what they tried to place it on. It works for me, but it says I bypass "X" . Is that enough info?
     
  8. Offline

    LSky

    In what sense does that help with the chest thing then? I must admit that I haven't used the entry bouncer yet. I use only a golden block at the moment, which just offers basic protection.
     
  9. Offline

    Shalobee

    so now with the way the water and i guess lava works all my farms that have levers to turn the water on and off don't work anymore same with my friends dungeon that has a lava trap that is controlled by craftbooks gates:( is there anyway this can be fixed? or maybe put block flow as an option in the block so that we can make a custom block or just stop them from placing a bucket of water/lava and leave farms and lava traps alone.
     
  10. Offline

    hamilton23

    You should split the explosion suppression option in two: one for TNT and one for creeper explosions. Many of my players would like to protect their structures from creeper damage, while still having the option of using TNT offensively.
     
  11. Offline

    IOn Vash

    This plugin is for some reason creating way too much lag when it saves the server locks up for around a whole minute. it really makes the server unplayable as you sometimes time out.
     
  12. Offline

    chickenmove

    when i set the city protection block it doesnt work because other player can also destroy the stones in this area :/
    HELP PLS
     
  13. Offline

    piousminion

    Feature Request:

    "Home protection block" which allows the player to configure the protected size up to a configured limit. This would allow players to protect various size areas without taking much more or less space than they need.
     
  14. Offline

    Axrael999

    I like that alot, sometimes you don't need all that space.
     
  15. Offline

    phaed

    Change log
    Version 2.9.2
    • Added Proximity Mine pstone!!!
    • Removed default entry and farewell messages "Entering xxx domain". Did more harm than good. You can still set the name using /ps setname.
    • Renamed Sky Bouncer to Sky Cannon
    • Fixed launcher deaths

    Hmm, i like it.

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

    dwatring

    any help?
     
  17. Offline

    Axrael999

    Not sure what version of Pstones you are using but maybe load the most recent version. I remember running into that same bug in an earlier version.
     
  18. Offline

    dwatring

    I was using the most recent version. I had just updated. This is getting frustrating.
     
  19. Offline

    phaed

    Try the default config file. Let me know if the problem still exists.
     
  20. Offline

    Magie

    Hi,
    I love your idea... But it's not very customizable for player. I think it'll be better, if the protected area is withnin four blocks of eg. Diamond block

    [air] [air] [air] [air] [air] [air] [air] [air]
    [air] [diamondblock] [cobble] [cobble] [cobble] [cobble] [diamondblock] [air]
    [air] [cobble] [cobble] [cobble] [cobble] [cobble] [cobble] [air]
    [air] [cobble] [cobble] [cobble] [cobble] [cobble] [cobble] [air]
    [air] [cobble] [cobble] [cobble] [cobble] [cobble] [cobble] [air]
    [air] [cobble] [cobble] [cobble] [cobble] [cobble] [cobble] [air]
    [air] [diamondblock] [cobble] [cobble] [cobble] [cobble] [diamondblock] [air]
    [air] [air] [air] [air] [air] [air] [air] [air] - Diamond block set the area -> Cobble stone is protected

    I think this'll be better
     
  21. Offline

    phaed

    Nice drawing, tho here you are assuming people will always place the blocks in a perfect square, in practice that will never be the case. Regardless this would change the whole architecture of pstones, I would basically have to rewrite it from scratch. Not gonna happen. What someone has already suggested which I will be adding soon, is the ability to shrink the protection area via command like /ps size 10x5x15 while aiming at a pstone.
     
  22. Offline

    Shalobee

    Quoting myself cause I'm afraid this was missed. Surely I'm not the only one who has players that doesn't like the no water flow problem. If it were an option to put in the blocks I could then make a small block just for that and not have it effect irrigation systems and lava traps.
     
  23. Offline

    ineed4pounds

    in an area even though its mine and i have bypass i just get spammed with protected Source [-197 77 994] :S
     
  24. Hey, thanks for this awesome plugin!

    I have been using this on my server and such and it is great :D

    If I may suggest, could you add a blacklist field, so that you can place the block, and the owner could Blacklist certain blocks from being placed or taken.

    EX.

    I place the block. Do something like /ps [name of field] [items to blacklist]
    So /ps [MitchellTown] [10, 11, 9, 8, 51, 46]
    It would make it so people could not place those blocks inside the field.

    This would be great, because people that become part of a town with a secret intent of griefing would not be able to still place these items once they are permissioned to place objects...

    If you could add this, this would be VERY much appreciated!
    Thanks for all your work!
    -MichaelMitchell
     
  25. Offline

    phaed

    The water flow works inside the fields. The only water flow stopped is the one coming from outside the fields.
     
  26. Offline

    Shalobee

    hmm im not so sure this is the case as it seems any new water get stopped which is why my irrigation worked fine until i cut it off so the reeds would pop then open the water flow again to wash them down and when the gates opened no water began to flow. I am going to test this right now to make sure that is the case but im pretty sure that existing water is fine but new water is effected even inside the zone... one way you can test this is go to water thats inside a protected zone and place a block in it and then break the block you will see the water doesn't fill in the hole where the block was.
     
  27. Offline

    phaed

    Are you using the latest version of PreciousStones? That problem was fixed a few versions ago.
     
  28. Offline

    Shalobee

    im using 2.9.1 ..... i will update to 2.9.2 right now see if that fixes it.
     
  29. Offline

    TSO

  30. Offline

    Shalobee

    yep its no longer doing it in 2.9.2 very cool :) thanks for all your awesome work :D
     
  31. Offline

    phaed

Thread Status:
Not open for further replies.

Share This Page