Type to search the documentation...

NeonShards (Skript)

A Free Skript handling Amethyst Geode economic deposits utilizing Coins Engine.

NeonShards grants players fractional shards when they successfully mine Budding Amethyst, Amethyst Clusters, or Amethyst Blocks. Beyond acting as a seamless integration layer for CoinsEngine, it actively displays sleek action bars subtly marketing an eventual upgrade loop to NeonShardsX via BuiltByBit, making it brilliant for generating server revenue flows.

Free Skript

NeonShards exists as a free product. The premium upgrade featuring 2x rewards and VIP multipliers—NeonShardsX—is slated for the future. Download details can be located on Discord.

Dependency Required

This code strictly relies on the external command /coinsengine:giveshard to properly credit values to the player.

Reward Drops & Config

All core functionalities are dictated directly within the local Options block inside the Skript file.

Skript Options
options:
    color: <##A303F9>                    # Color-code dedicated towards Amethyst purples
    base_reward_budding: 5               # Raw exact payout for breaking a Budding Amethyst block
    base_reward_cluster_min: 1           # Lowest random distribution bound for Amethyst Clusters
    base_reward_cluster_max: 4           # Maximum fractional payout bounds for Amethyst Clusters
    base_reward_block: 4                 # Static return for standard Amethyst structure blocks
    sound: "entity.experience_orb.pickup"# Auditory trigger

Event Handlers

Whenever a valid Amethyst entity is removed, an underlying logic system calculates the bounds and issues the native command (e.g. execute console command "coinsengine:giveshard give %player% %{_shards}%"). At the exact same micro-tick, a visual action bar is dispatched notifying players of their newly acquired shards alongside a VIP upgrade hook indicating potential premium enhancements.

All Documentation