Last active
April 11, 2025 16:45
-
-
Save DamianDominoDavis/1947be33ff00d7b20bc13c4a1e603905 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // identify skillbooks in inventory for which you DO NOT already know the skill | |
| foreach it in $items[] | |
| if (it.available_amount() + it.storage_amount() + it.display_amount() > 0 | |
| && it.string_modifier('Skill') != '' | |
| && !it.string_modifier('Skill').to_skill().have_skill()) | |
| print(`{it}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment