Eggciting Easter  | Custom textures, Drops, Particles, Interactions, Commands, MUCH MORE icon

Eggciting Easter | Custom textures, Drops, Particles, Interactions, Commands, MUCH MORE -----

Enhance the gaming experience for the Easter event



[​IMG]


Description

Easter party on Minecraft never so much fun! Customize eggs with exclusive textures, unlock special drops and enjoy wonderful particles. What are you waiting for? Create your own party!


Help and Support
Please do not use a review to leave bug reports or errors.
I am not able to help you through a review.
Instead use GitHub!


Features
  • Add as many egg as you want
  • Custom head (egg) value
  • Interact with the egg (click on them) to retrive the gifts
  • Per egg permissionto retrive the gifts
  • 100% translatable via messages.yml
  • Custom plugin's prefix
  • Display any particles at the interaciton moment (per egg particles)
  • Execute any commands as console at the interaction moment (per egg commands)
  • Give the selected Easter egg, to a specific player
  • Give the selected Easter egg, to all online players.
  • Retrive the selected Easter egg, all for you


Shots
You can add as many egg as you want! With their own textures, particles, drops, commands...
[​IMG]


Commands
  • /eggcitingeaster reload: Reload the plugin
  • /eggcitingeaster help: View the generic help menu
  • /eggcitingeaster give <name> <eggID>: Gives a special egg to only one player
  • /eggcitingeaster give * <eggID>: Gives a special egg to all the online players
  • /eggcitingeaster retrive <eggID>: Retrives a special egg just for you


Command alias
  • easter
  • ea


Permissions
  • eggcitingeaster.completer: Access the use of the TabCompleter
  • eggcitingeaster.reload: Access the use of the /teleportbow reload command
  • eggcitingeaster.help: Access the use of the /eggcitingeaster help command
  • eggcitingeaster.give: Access the use of the /eggcitingeaster give <name> <eggID> command
  • eggcitingeaster.give.all: Access the use of the /eggcitingeaster give * <eggID> command
  • eggcitingeaster.retrive: Access the use of the /eggcitingeaster retrive <eggID> command


Files
Code (Text):

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# '-----------------------------------------------------------------------------------' #
# |                                                                                   | #
# |     ______                 _ _   _               ______          _                | #
# |    |  ____|               (_) | (_)             |  ____|        | |               | #
# |    | |__   __ _  __ _  ___ _| |_ _ _ __   __ _  | |__   __ _ ___| |_ ___ _ __     | #
# |    |  __| / _` |/ _` |/ __| | __| | '_ \ / _` | |  __| / _` / __| __/ _ \ '__|    | #
# |    | |___| (_| | (_| | (__| | |_| | | | | (_| | | |___| (_| \__ \ ||  __/ |       | #
# |    |______\__, |\__, |\___|_|\__|_|_| |_|\__, | |______\__,_|___/\__\___|_|       | #
# |            __/ | __/ |                    __/ |                                   | #
# |           |___/ |___/                    |___/                                    | #
# |                                                                                   | #
# '-----------------------------------------------------------------------------------' #
#                                                                                       #
#     Developed:                     My profile page:                                   #
#     By SadShrimpy#9190 with <3  -  https://www.spigotmc.org/members/shiry.583821/     #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

# Do not modify this value, it may CORRUPT the entire config file!
version: v1.0-Relase

egg-item: # You can add as may egg as you want
  the-greatest: # This is the ID, MUST BE UNIQUE
    name: "&eThe &e&lGreatest &dEgg"
    lore:
      - "&7Hey!!"
      - "&7I wanna &cplay &7with you :D"
      - "&7Go and found all the eggs through the map!"
      - "&e&lGood Luck!"
    # Custom head values can be found here (e.g): https://minecraft-heads.com/custom-heads/
    head-value: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTNmOWVlZGEzYmEyM2ZlMTQyM2M0MDM2ZTdkZDBhNzQ0NjFkZmY5NmJhZGM1YjJmMmI5ZmFhN2NjMTZmMzgyZiJ9fX0="
    permission-to-retrive: "easter.the-greatest" # Only the players with this permission, can retrive this egg
    commands: # Command to be executed when the player click on them - executed as console
      - "give %clicker% diamond_block 6"
      - "give %clicker% chicken_spawn_egg 16"
    click-event: # When a player click the egg...
      destroy-egg: true # If true the egg will be destroyed
      particles:
        # Format -> "PARTICLE:QUANTITY"
        - "EXPLOSION_HUGE:2"
        - "FIREWORKS_SPARK:4"
        - "VILLAGER_HAPPY:1"
        - "TOWN_AURA:6"
  the-stinky-one:
    name: "&eThe &8Stinky &dEgg"
    lore:
      - "&7Hey!!"
      - "&7I wanna &cplay &7with you :D"
      - "&7Go and found all the eggs through the map!"
      - "&e&lGood Luck!"
    head-value: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjlhNGVhYmVmOGViMDhhMmNlZGE0YmZhZDI4Zjg3OGY3NWMxYWY0OGFjZDc4OGQzNGNjMjFmMzMyYWYxZDEzYSJ9fX0="
    permission-to-retrive: "no-needed" # in this case, all the players can retrive
    commands:
      - "give %clicker% crimson_fungus 23"
      - "give %clicker% dirt 42"
      - "give %clicker% stone 64"
    click-event:
      destroy-egg: false
      particles:
        - "EXPLOSION_NORMAL:1"
        - "TOWN_AURA:6"
  # You can add more and more configurations...
 
Code (Text):
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# '-----------------------------------------------------------------------------------' #
# |                                                                                   | #
# |     ______                 _ _   _               ______          _                | #
# |    |  ____|               (_) | (_)             |  ____|        | |               | #
# |    | |__   __ _  __ _  ___ _| |_ _ _ __   __ _  | |__   __ _ ___| |_ ___ _ __     | #
# |    |  __| / _` |/ _` |/ __| | __| | '_ \ / _` | |  __| / _` / __| __/ _ \ '__|    | #
# |    | |___| (_| | (_| | (__| | |_| | | | | (_| | | |___| (_| \__ \ ||  __/ |       | #
# |    |______\__, |\__, |\___|_|\__|_|_| |_|\__, | |______\__,_|___/\__\___|_|       | #
# |            __/ | __/ |                    __/ |                                   | #
# |           |___/ |___/                    |___/                                    | #
# |                                                                                   | #
# '-----------------------------------------------------------------------------------' #
#                                                                                       #
#     Developed:                     My profile page:                                   #
#     By SadShrimpy#9190 with <3  -  https://www.spigotmc.org/members/shiry.583821/     #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

# Plugin's related messages
prefix: "&7[&dEggciting&cEaster&7] &8> &7" # Prefix of the plugin
reloaded:
  correctly: "&7Plugin reloaded &acorrectly&7."
  incorrectly: "&7Plugin reloaded &cincorrectly&7."

# Player's related messages
player:
  config:
    # When a player try to execute a command without the right permission
    no-permission: "&7Hey &e%player-name%&7, you &cdon't have &7the permission &8(%permission%)&7, to execute: &b%command%&7."
    # When a player try to execute a command that isn't exist
    cmd-not-found: "&7Hey &e%player-name%&7, sorry but the requested command &b(%command%) &cisn't &7found&7."
  give:
    # When a player receive the easter egg
    received: "&7Hey &e%player-name%&7, you received a &deaster egg &8(%egg-name%) &7from &f%player-executor%&7."
    # When a player give the easter egg to another player
    executor: "&7Hey &e%player-name%&7, you just sent a &deaster egg &7to: &f%player-target%&7."
  found:
    # When a player find an egg
    valid-egg: "&7Hey &e%player-name%&7, &c&ocongratulations&7! You have found an &deaster egg&7!"
    # When a player find an egg
    expired-egg: "&7Hey &e%player-name%&7, sorry but this &deaster egg &7is &cexpired&7! &8:("
  placed:
    # When a player place an egg
    egg: "&7Egg placed corectly!"
  retrive:
    # When a player retrive an egg
    successfully: "&7Hey &e%player-name%&7, here your fantastic &deaster egg&7!"
    # When a console try to retrive an egg
    console: "&7Hey &eConsole&7, sorry but only a player can retrive an &deaster egg&7!"
  generic:
    # When the target player is not online
    no-online: "&7Hey &e%player-name%&7, sorry there are &cno &eplayers &7present in the server."
    # When the target player is not founded
    not-found: "&7Hey &e%player-name%&7, sorry but the player &f%player-target% &cisn't &7found&7."
    # When the target player try to get an egg that does not exist
    egg-not-found: "&7Hey &e%player-name%&7, sorry but the requested egg, with id &c%egg-id%&7, does &cnot &fexist!&7."
    # When the target has the inventory full, the egg will be dropped on the ground
    dropped: "Hey! You received an &deaster egg&7! It was dropped on the ground: your pockets are full!"
    # When a player try to interact with an easter egg, without the right permission
    no-permission: "&7Hey &e%player-name%&7, you &cdon't have &7the permission &8(%permission%)&7, to retrive the gifts &c:( &7."

help:
  generic: # Message shown through the help command (/eggcitingeaster help)
    - "&7&m------------------&7[ &dEggciting&cEaster &7]&m------------------"
    - "&6/eggcitingeaster help &8- &7view the generic help menu (this)."
    - "&6/eggcitingeaster give <player/*> <eggID> &8- &7give a special egg (with the configured ID), ready to be founded."
    - "&6/eggcitingeaster retrive <eggID> &8- &7retrive a special egg (with the configured ID), ready to be founded."
    - "&6      -> Place this in the surroundings, and wait to be founded :)."
    - "&6/eggcitingeaster reload &8- &7reload the plugin."
    - "&6Plugin alias &8- &7ea &8- &7easter."
    - "&7&m------------------&7[ &dEggciting&cEaster &7]&m------------------"
 


Open source

You can find the code (not my library) here (GitHub).
Resource Information
Author:
----------
Total Downloads: 156
First Release: Mar 16, 2023
Last Update: Mar 16, 2023
Category: ---------------
All-Time Rating:
0 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings