Paste #110883: script

Date: 2023/06/09 10:34:32 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13


recipeTask_inventoryfiller:
    type: task
    debug: false
    definitions: inventory[InventoryTag]|items[ListTag]
    description: Nahradi prazdne sloty v inventari danymi itemami.
    script:
        - define items_count 1
        - foreach <[inventory].list_contents> as:item:
            - foreach stop if:<[items_count].is_more_than[<[items].size>]>
            - foreach next if:!<[item].equals[<item[air]>]>
            - inventory set destination:<[inventory]> slot:<[loop_index]> origin:<[items].get[<[items_count]>]>
            - define items_count:+:1