Jump to content

Skript or plugin which would apply potion effect to items player is currently wearing or holding


Dobroxx

Recommended Posts

There is a way to make it so when player is holding or wearing something it gives them a special effect. You just have to learn Skript.

If you don't know about docs, you can click here to check it out! It has lots of useful information to help your Skripting. 

  • Like 1

 

Owner of play.hiveminez.net

 

⊱------------------------------⊰

Joined Minehut on 1/28/2021 (Same day I got Minecraft)

[VIP] - 3/14/2021

[LEGEND] - 5/27/2021

⊱------------------------------⊰

Discord - NotKaizo#0001

In-game name - iKaizo_

If you need any help, feel free to contact me.

Link to comment
Share on other sites

Hey man. Yeah, I'd reccomend learning Skript. But here is a simple skript to get you started!

on load:
    if player's holding a nether star named "&f&lSpeed":
        apply swiftness for 5 seconds
        stop

 


😎 Certified Minehut OG since George Washington was alive. 😎

Beginner at Skripting. Already re-making Hypixel. 🤠

Sexy Hot Girl GIF by Cappa Video Productions


 

Link to comment
Share on other sites

  • 1 year later...

maybe this will help?

command /netherstar:
    trigger:
        give player 1 nether star named "&f&lSpeedy!"
every second:
    loop all players:
        if 1 of loop-player's tool = nether star named "&f&lSpeedy!":
            apply speed tier 2 to loop-player for 9999 days
            set {star::%loop-player%} to 1
        else:
            if {star::%loop-player%} is 1:
                remove speed from loop-player
                set {star::%loop-player%} to 0
command /speedhelmet:
    trigger:
        give player 1 netherite helmet named "&aSpeedy Helmet"
every second:
    loop all players:
        if loop-player's helmet slot is netherite helmet named "&aSpeedy Helmet":
            apply speed tier 2 to loop-player for 9999 days
            set {helmet::%loop-player%} to 1
        else:
            if {helmet::%loop-player%} is 1:
                remove speed from loop-player
                set {helmet::%loop-player%} to 0

 

Just a skripter who likes to have fun

I also think I'm pretty good at it

PS my discord is Enchanted#3933 incase idk anything?

Link to comment
Share on other sites

  • 4 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...