Speed 1 is the same than speed 4

  • 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.

Wynandus

Member
Aug 23, 2017
15
0
0
24
So basicly when i give myself a pickaxe with speed 1 it is completly as fast as a speed 4 pickaxe
does anyone has a solution for this?


code_language.skript:
every 2 seconds in "main":
    loop all players:
        if lore of loop-player's tool contains "&7Haste I":
            apply potion of haste of tier 1 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Haste II":
            apply potion of haste of tier 2 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Haste III":
            apply potion of speed of tier 3 to loop-player for 2 seconds
            stop

        if lore of loop-player's tool contains "&7Speed I":
            apply potion of speed of tier 1 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Speed II":
            apply potion of speed of tier 2 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Haste III":
            apply potion of speed of tier 3 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Speed IV":
            apply potion of speed of tier 4 to loop-player for 2 seconds
            stop
        if lore of loop-player's tool contains "&7Speed V":
            apply potion of speed of tier 5 to loop-player for 2 seconds
            stop
 
Status
Not open for further replies.