There's no loop that matches 'loop-values's name

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

Uniquiex

New Member
May 18, 2020
5
0
0
[16:48:45 INFO]: [Skript] Reloading genel.sk...
[16:48:45 ERROR]: There's no loop that matches 'loop-value at volume 1' (genel.s
k, line 21: play "ENTITY_EXPERIENCE_ORB_PICKUP" to loop-value at volume 1')
[16:48:45 INFO]: [Skript] Encountered 1 error while reloading genel.sk!

I've this error on my console while I'm reloading my genel.sk

Java - 8.1
Minecraft version; 1.15.2 PaperSpigot
Skript version - Skript 2.5 ALPHA3

Code:
on chat:
    loop all players:
        if message contains loop-values's name:
            wait 1 tick
            play "ENTITY_EXPERIENCE_ORB_PICKUP" to loop-values at volume 1
            send title "&bYou got mentioned in chat!" with subtitle "&aGo check it out!" to loop-value for 1 second
 
loop-value(s) ? ? ?
Code:
on chat:
    loop all players:
        if message contains loop-player:
            play "ENTITY_EXPERIENCE_ORB_PICKUP" to loop-player at volume 1
            send title "&bYou got mentioned in chat!" with subtitle "&aGo check it out!" to loop-player for 1 second
 
loop-value(s) ? ? ?
Code:
on chat:
    loop all players:
        if message contains loop-player:
            play "ENTITY_EXPERIENCE_ORB_PICKUP" to loop-player at volume 1
            send title "&bYou got mentioned in chat!" with subtitle "&aGo check it out!" to loop-player for 1 second
Just i tried it This is not working I'm seeing same error on console
[doublepost=1589822774,1589822641][/doublepost]so ;

Code:
[20:25:34 INFO]: [Skript] Reloading genel.sk...
[20:25:34 ERROR]: There's no loop that matches 'loop-player at volume 1' (genel.
sk, line 20: play "ENTITY_EXPERIENCE_ORB_PICKUP" to loop-player at volume 1')
[20:25:35 INFO]: [Skript] Encountered 1 error while reloading genel.sk!
 
invalid use of the play sound.
Here is the correct way
Code:
on chat:
    loop all players:
        if message contains loop-player:
            play "ENTITY_EXPERIENCE_ORB_PICKUP" with volume 1 (at/to) loop-player
            send title "&bYou got mentioned in chat!" with subtitle "&aGo check it out!" to loop-player for 1 second
 
invalid use of the play sound.
Here is the correct way
Code:
on chat:
    loop all players:
        if message contains loop-player:
            play "ENTITY_EXPERIENCE_ORB_PICKUP" with volume 1 (at/to) loop-player
            send title "&bYou got mentioned in chat!" with subtitle "&aGo check it out!" to loop-player for 1 second
I have fixed it 2 hours ago But Thank you very much!
 
Status
Not open for further replies.