$$$ Anti greif for creative servers $$$

Discussion in 'Archived: Plugin Requests' started by jwnordquist, Dec 31, 2011.

  1. Offline

    jwnordquist

    Hello im willing to pay $5 for a plugin that will eliminate most forums of griefing on creative servers. out of running a server with no plugin's this is what i found -

    griefers tend to:
    • Nuke
    • make swastikas
    • spam water
    • spam lava
    • spam chat
    • trees/bonemeal
    • mushrooms/bonemeal
    • and making towers, or dicks
    So what i want this plugin to do is basically block these things. i know i wouldn't be able to get the swastika part out, however i think there is a way to do the rest.

    water, lava, trees, and mushrooms should be a simple item blocker. and every time they try to place that block they will get kicked.

    for the nuking, if someone breaks X blocks in 1 second, then it would instantly ban them

    and for spamming if they spam the chat, then it bans them.


    Tell me what you think,
    Jake.
     
  2. Offline

    ritonda66

    Get Nocheat(idk link search on forums)
    You can prevent placing of items with Worldguard, for example prevent of placing lava.
     
  3. Offline

    jwnordquist

    i do not want to combine several plugins on my server, I'm just looking to pay for a single plugin that will do it all for me.

    Anyways there is NO plugins out there that would be able to prevent nuking - with my theory it would be able to effectively remove them.

    ~jake
     
  4. Offline

    mindless728

    it is better to not have it all in one large plugin as then you have modularity, and if a plugin completely breaks you are only without that feature as opposed to everything else that might actually work
     
  5. Offline

    jwnordquist

    ehh, you got a point there, guess i could just limit it to the nuking plugin - however i also cant find one decent plugin that has litle bugs and actually BLOCKS lava/water buckets
     
  6. Offline

    ritonda66

    WorldGuard does
     
  7. Offline

    jwnordquist

    i do not have mysql for that server - therefore i can not use there blacklist
     
  8. Offline

    amunro

    I use worldguard to blacklist tnt, lava, water, buckets, ice and anything else grief-worthy from my creative server. I also use nocheat which blocks nuking. For everything else (e.g swastika's and fallical symbols) I use logblock and simply rollback any player creating offensive material. I find these 3 plugins are more than adequate to deal with griefers. Also by having them as seperate plugins, they are simpler to manage and more functional too!

    You do not need mysql, for example, here is my worldguard blacklist file:

    Code:
    #
    # WorldGuard blacklist
    #
    # The blacklist lets you block actions, blocks, and items from being used.
    # You choose a set of "items to affect" and a list of "actions to perform."
    #
    ###############################################################################
    #
    # Example to block some ore mining and placement:
    # [coalore,goldore,ironore]
    # on-break=deny,log,kick
    # on-place=deny,tell
    #
    # Events that you can detect:
    # - on-break (when a block of this type is about to be broken)
    # - on-destroy-with (the item/block held by the user while destroying)
    # - on-place (a block is being placed)
    # - on-use (an item like flint and steel or a bucket is being used)
    # - on-interact (when a block in used (doors, chests, etc.))
    # - on-drop (an item is being dropped from the player's inventory)
    # - on-acquire (an item enters a player's inventory via some method)
    #
    # Actions (for events):
    # - deny (deny completely, used blacklist mode)
    # - allow (used in whitelist mode)
    # - notify (notify admins with the 'worldguard.notify' permission)
    # - log (log to console/file/database)
    # - tell (tell a player that that's not allowed)
    # - kick (kick player)
    # - ban (ban player)
    #
    # Options:
    # - ignore-groups (comma-separated list of groups to not affect)
    # - ignore-perms (comma-separated list of permissions to not affect - make up
    #   your very own permissions!)
    # - comment (message for yourself that is printed with 'log' and 'notify')
    # - message (optional message to show the user instead; %s is the item name)
    #
    ###############################################################################
    #
    # For more information, see:
    # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
    #
    ###############################################################################
    #
    # Some examples follow.
    # REMEMBER: If a line has # in front, it will be ignored.
    #
    
    # Deny creative grief blocks
    [8,9,10,11,51,46,55,335,336,88]
    ignore-perms=creative.restrict
    ignore-groups=admins,mods
    on-use=deny,tell
    
    # Deny some ore
    #[coalore,goldore,ironore]
    #ignore-groups=admins,mods
    #on-break=notify,deny,log
    This SHOULD include all blocks that are grief-worthy for creative servers!

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

Share This Page