Beacon-like effects with 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

ketchup_god

New Member
Jan 1, 2020
6
0
0
74
Is there a way to create beacon-like potion effects in skript? For example, instead of stacking effects, a player would constantly have an effect then have it fade out (currently, giving a player speed for 2 seconds twice gives the player speed for 4 seconds instead of 2 twice). Is there a way to do this?
 
yeah, something like that, just in skript.
Here if you wanna give them an infinite amount of time:
Code:
apply swiftness to player for 9999 seconds

Here if you wanna give them swiftness for 2 seconds every 2 second:
Code:
every 2 seconds:
    loop all players:
        apply swiftness to loop-player for 2 seconds
 
Status
Not open for further replies.