Colorful Glow-Skript

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

KleinLuzi

New Member
Oct 26, 2020
6
0
1
22
Glow.sk

Thanks for visiting this page =)
This simple, yet very useful and light-weight Skript adds colorful glow-effect to your server.
I have been looking for a working system like this for months, and never was able to find anything like this, so I made it myself.


Dependencies:
- Skript-Reflect (Download here)
- GlowAPI (Download here)
- PacketListenerAPI (Download here)
- SkBee (Download here)

Permissions:
- glow.use (enables you to use /glow on/off)
- glow.admin (gives you permission to all other sub-commands of /glow such as changecolor)

Commands:
Command-Overview.png

- /glow
- /glow on/off
- /glow changecolor %color%
- /glow colorlist


Screenshots:
auto-complete function of the changecolor command for more convinience:
Screenshot_glow_changecolor_showcase.png


default glow color on enabling:
Screenshot_1_glow_on.png


changed glow-color to gold:
Screenshot_36.png



API:
- This Skript provides usage of 2 functions which makes this Skript a whole lot easier:
Java:
EnableGlowing(%entity%, %color%)
and
Java:
DisableGlowing(%entity%)


Usage of both functions in a skript:
Java:
on right click:
    if clicked entity is set:
        EnableGlowing(clicked entity, "green")
      
on right click:
    if clicked entity is set:
        DisableGlowing(clicked entity)