HomeJavaModsEnder's Snow
Ender's Snow
2016-12-02_13.05.11.png

Features:

Works for Minecraft 1.8 and above. If your version of Minecraft is not currently supported, please request it and I will gladly add it.

Creating Snow Regions:

With World Guard:
  1. Stand in the World Guard region that you want to make a snow region.
  2. Run /snow-create-region <Snow Region Name> WG
  3. Make sure to sent set Spawn Type to PLAYER_REGION if it is not already set with /snow-spawntype PLAYER_REGION.
With World Edit:
  1. Use World Edit to make a selection.
  2. Run /snow-create-region <Snow Region Name> AREA
  3. Make sure to sent set Spawn Type to PLAYER_REGION if it is not already set with /snow-spawntype PLAYER_REGION.

Default Config:
Code (Text):

# Which language file to use.
# language_file: english.yml
#
# Specifies if the snow flakes spawn in regions or around the players.
# Valid values are
# PLAYER - Snow flakes spawns around the player every where the player goes.
# PLAYER_REGION - Snow flakes only spawn around a player when the player
#                 is in a specified region.
spawn_type: PLAYER

# The radius around the player that the particle snow flakes will be spawned.
player_spawn_radius:
    horizontal_radius: 5
    vertical_radius: 5

# List of regions to spawn snow.
# Region section names (Spawn, WG_Region) can be anything you want
# but they must be unique.
# region_type can be on of the following:
#      AREA - Specify the corner XYZ locations of a region/area
#             that snow will spawn for players in that region/area.
#      WG - Specify the wg_region_name for World Guard region
#           that snow will spawn for players in that region/area.
#           Will only work if World Guard plugin is installed.
# Only used if spawn_type is set to PLAYER_REGION.
regions:
   Spawn:
       region_type: AREA
       world: world
       x1: -100
       y1: 70
       z1: -100
       x2: 100
       y2: 80
       z2: 100
   WG_Region:
       region_type: WG
       world: hub_world
       wg_region_name: spawn

# The amount of particle snow flakes to spawn at a time.
# The larger the number the more visible the snow particles but
# the more lag it can cause. Increase slowly if you modify this
# option.
snow_flake_amount: 1

# How often to spawn a snow flake in ticks. 20 ticks = 1 second.
# Increase this option to reduce lag when increasing the snow_flake_amount.
spawn_interval: 1

# The particle effect to use for the snow flake.
# Can use any particle name from the following link:
# https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Particle.html
# Recommended values to try for different snow fall:
# FIREWORKS_SPARK
# SNOWBALL
# SNOW_SHOVEL
snow_flake_particle: FIREWORKS_SPARK

# How fast the snow flakes fall. Best values are between 0.0 and 1.0.
# Numbers higher that 1.0 can be used they don't seem to look good.
# 0.0 is for the slowest fall speed and higher numbers increase the
# fall speed of the flakes.
flake_fall_speed: 0.0

# Enables/disables if snow flakes spawning in locations that are under blocks.
spawn_under_blocks: false

# player_data - Where player data is stored. Do not modify this section.
#     disabled_list - List of UUIDs for players that have toggled spawning
#                     snow flakes off.
 

Commands:
Code (Text):

    snow-help:
        description: Display command help for the plugin.
        permission: snow.help
        usage: /snow-help

    snow-toggle:
        description: Toggles displaying snow flakes on and off for the player.
        permission: snow.player.toggle
        usage: /snow-toggle

    snow-reload:
        description: Reloads the the Snow configuration data.
        permission: snow.admin.reload
        usage: /snow-reload

    snow-amount:
        description: Sets the amount of snow to spawn at each interval.
        permission: snow.admin.set.amount
        usage: /snow-amount <amount>

    snow-interval:
        description: Sets the interval between the spawn of each snow flake.
        permission: snow.admin.set.interval
        usage: /snow-interval <Interval>

    snow-radius:
        description: Sets the radius around the player inwhich snow flakes will spawn.
        permission: snow.admin.set.radius
        usage: /snow-radius <HorizontalRadius> <VerticalRadius>

    snow-particle:
        description: Sets the particle to be used for snow flakes. Find particle names at https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Particle.html
        permission: snow.admin.set.particle
        usage: /snow-particle <particle>

    snow-speed:
        description: Sets the snow flake fall speed.
        permission: snow.admin.set.speed
        usage: /snow-speed <fall speed>

    snow-block:
        description: Sets if snow flakes can spawn if there is a block above the spawn location.
        permission: snow.admin.set.block
        usage: /snow-block <true/false>

    snow-spawntype:
        description: Sets the spawn type. Can be set to either PLAYER(snow always spawns around player) or PLAYER_REGION(snow only spawns around players when in specified world/regions).
        permission: snow.admin.set.spawn
        usage: /snow-spawntype {PLAYER or PLAYER_REGION}

    snow-create-region:
        description: Creates an snow region with a World Guard region or an area selected by World Edit for snow to spawn around players.
        permission: snow.admin.region.create
        usage: /snow-create-region {Snow Region Name} {Snow Region Type (AREA or WG)}

    snow-region-list:
        description: Displays the list of current snow regions by name.
        permission: snow.admin.region.list
        usage: /snow-region-list

    snow-remove-region:
        description: Removes a region for the list of snow regions. Use /snow-region-list to see snow regions.
        aliases: [snow-delete-region]
        permission: snow.admin.region.remove
        usage: /snow_remove-region {Snow Region Name}
 

Permissions:
Code (Text):

    snow.*:
        description: Gives all permissions for this plugin.
        default: op
        children:
            snow.admin: true
            snow.player: true

    snow.player:
        description: Gives access to all Player permissions.
        default: op
        children:
            snow.player.toggle: true
            snow.help: true
     
    snow.admin:
        description: Gives access to all Admin permissions.
        default: op
        children:
            snow.admin.reload: true
            snow.admin.set: true
            snow.admin.region: true
            snow.help: true
     
    snow.admin.set:
        description: Gives access to all Admin Set command permissions.
        default: op
        children:
            snow.admin.set.amount: true
            snow.admin.set.interval: true
            snow.admin.set.radius: true
            snow.admin.set.particle: true
            snow.admin.set.speed: true
            snow.admin.set.block: true
            snow.admin.set.spawntype: true

    snow.admin.region:
        description: Gives access to all Admin Region command permissions.
        default: op
        children:
            snow.admin.region.create: true
            snow.admin.region.list: true
            snow.admin.region.remove: true
     
    snow.help:
        description: Give access to the /snow-help command.
        default: op

    snow.player.toggle:
        description: Give access to the /snow-toggle command.
        default: op

    snow.admin.reload:
        description: Give access to the /snow-reload command.
        default: op

    snow.admin.set.amount:
        description: Give access to the /snow-amount command.
        default: op

    snow.admin.set.interval:
        description: Give access to the /snow-interval command.
        default: op

    snow.admin.set.radius:
        description: Give access to the /snow-radius command.
        default: op

    snow.admin.set.particle:
        description: Give access to the /snow-particle command.
        default: op

    snow.admin.set.speed:
        description: Give access to the /snow-speed command.
        default: op

    snow.admin.set.block:
        description: Give access to the /snow-block command.
        default: op

    snow.admin.set.spawntype:
        description: Give access to the /snow-spawntype command.
        default: op

    snow.admin.region.create:
        description: Give access to the /snow-create-region command.
        default: op

    snow.admin.region.list:
        description: Give access to the /snow-region-list command.
        default: op

    snow.admin.region.remove:
        description: Give access to the /snow-remove-region command.
        default: op

 

Commands

Plugin details

Read from the plugin's own plugin.yml.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Ender's Snow is a free Minecraft Java mod. Compatible with Minecraft 1.8, 1.9, 1.10, 1.11 and newer. Downloaded 3,920 times (via Spigot). Download it and open it directly in the game.

Explore more