Armor with effects

  • 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 community!

    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.

ChocoAura

Member
Jul 3, 2019
38
0
6
Could someone tell me how to add effects to armor pieces?

For example, I want to make iron boots that apply jump boost 3(or 1 if that isn't possible) to the wearer until they aren't wearing the boots.

Could someone tell me what the code would be for that?
 
Try this, I haven't tested it though:

Code:
on armor equip:
    if event-item is iron boots:
        apply jumpboost 3 to player for 9999 days
        while player's boots is iron boots:
            wait 1 tick
        remove speed from player

If it doesn't work, send me the errors/problems
 
Status
Not open for further replies.