[ADMIN/MECH/FIX]NoSnow 1.1 - Stop snow golems from being made[1510]

Discussion in 'Inactive/Unsupported Plugins' started by iidunno, Nov 26, 2011.

  1. Offline

    iidunno

    NoSnow - Removes snowgolems:

    BukkitDev: link

    Version: v1.2

    This plugin was pulled out of this thread. What it does is it stops players from placing snow blocks.

    Features:
    * Stops snow golems from leaving snow trails.
    * More will be added just say what you want added in the comments.
    * Has permissions

    Permissions:

    * NoSnow.allow - Allows them to place snow blocks and snow.

    <Edit by Moderator: Redacted mediafire url>

    Source Code (Will be coming)

    Changelog:

    Show Spoiler
    Version 1.2:
    * Add permissions to it.

    Version 1.1:
    * Cleaned up the code and made it so snow and snowblocks can't be placed.

    Version 1.0:

    * Created the plugin and released it!
     
    Last edited by a moderator: Nov 12, 2016
    worstboy32 likes this.
  2. Offline

    Shooty

    I looking for a plugin like that, thanks you @iidunno

    EDIT Oh noes can't you let players place snowblock :s ?
     
  3. Offline

    iidunno

    @Shooty No but I'll make it so you can add a permission node to their name and when the snowmen are added to bukkit I'll change it so they don't leave a trail.
     
  4. Offline

    Refalm

    Don't mean to be a dick or anything, but this plugin has the same name:
    http://dev.bukkit.org/server-mods/nosnow/

    It's at version 1.4, so it's probably not the same author.

    But while I'm here, could you add a command to melt the snow in a 15 block radius?
    Apart from it being a really great tool to remove snow (MCEdit is a bitch to work with), I'd feel like a snow slapping pimp.
     
  5. Offline

    iidunno

    @Refalm I'll change the name to ISnow? or Something but I'll look into the melting thing. I know it's in worldedit aleady and to use it you type /thaw
     
  6. Offline

    Refalm

    A few suggestions:

    Snow Lite
    Snow Terminator
    SnowAway
     
  7. Offline

    iidunno

    @Refalm I like SnowAway I'll be changing it soon.
     
    Refalm likes this.
  8. Offline

    Refalm

    Thanks, I didn't know WorldEdit could do that :)
    I just removed all the snow from my world.

    What also would be cool is MultiVerse support. So we can stop snow on a creative world for example, but let it snow like Christmas on a survivor world.

    I really appreciate your hard work and response to forum members' comments. Thanks again a bunch!
     
  9. Offline

    iidunno

    Lol I have been where you guys have also do you have skype @Refalm I need help with something.

    Also I'm working on doing the multi world right now.

    Version 1.2 is out!

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

    Kane

    - NoSnow.allow

    Does not seem to work any all :(

    Only if I do *.* or op with op off *.* works but - NoSnow.allow does not same with NoSnow.*

    Using pex.
     
  11. Offline

    iidunno

    I didn't test it with PEX but I'll check to see how to get it working. Also I would love to see godcraft if you wanna whitelist iidunno @Kane
    EDIT: also did you give that to admins or players. because your meant to give that to admins so they can place snow not players.

    Also re-download it I add a message to players so that should help.

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

    user_43347

    Have you considered changing the new to NoGolems? NoSnow might confuse some users, just a suggestion, and thanks, saved me from coding one :p
     
  13. Offline

    iidunno

    Yea I'll do that on the next release when I add a config and multiworld
     
  14. Offline

    Borch

    Instead of preventing players from placing snow blocks in general, you should do so for pumpkins, but only if the two blocks below are snow blocks.
     
  15. Offline

    iidunno

    Well soon I'll make it so when the entity trys to spawn it'll be killed.
     
  16. Offline

    user_43347

    Did the work for you :p
    Code:
    public void onCreatureSpawn (CreatureSpawnEvent event) {
       if (event.getEntity() instanceof SnowGolem) {
          e.remove(); //Or you could do event.setCancelled(true); but this is a cleaner way
       }
    }
     
  17. Offline

    iidunno

    Well bukkit doesn't have snowgolems yet so that's why I denied snow from being built.
     
  18. Offline

    Amaranth

    CraftBukkit now follows the spawn-animals config for allowing snow golems to spawn. Not sure if this plugin is of much use since that is fixed.
     
  19. Offline

    iidunno

    Ok well that's fine it was just a plugin where I tested things on.
     

Share This Page