I can't filter items from the list.

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

Gravity_Fall

Member
Feb 26, 2017
4
0
1
33
Code:
command /filter.test:
    trigger:
        set {_data::*} to stone and dirt, 3, 4, sand, 7, 8, diamond
        set {_item::*} to {_data::*} where [ input is item ]
        set {_integer::*} to {_data::*} where [ input is integer ]
        send "{_item::*} = %{_item::*}%"
        send "{_integer::*} = %{_integer::*}%"


2020-05-02_13.56.20.png



How can I filter items?
 
Code:
command /filter.test:
    trigger:
        set {_data::*} to stone and dirt, 3, 4, sand, 7, 8, diamond
        loop {_data::*}:
            if loop-value is a item:
                add loop-value to {_item::*}
            else if loop-value is a integer:
                add loop-value to {_integer::*}
        send "{_item::*} = %{_item::*}%"
        send "{_integer::*} = %{_integer::*}%"
Try that?
 
Status
Not open for further replies.