Recent content by eult

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

  1. eult

    Addon skLambda

    eult updated skLambda with a new update entry: 1.3.0 Read the rest of this update entry...
  2. eult

    Addon skLambda - 1.3.0

    skLambda 1.3.0 Supports: Paper 1.21.1+ · Skript 2.15+ This release is about async. A lambda can run off the main thread, a trigger can wait for something without freezing the server, and a new watcher polls values and conditions for you so you don't have to write a loop. New sections Wait for...
  3. eult

    Addon skLambda - 1.2.0

    I've decided to keep working on skLambda, so I'm maintaining the project again. Here's 1.2.0. skLambda 1.2.0 Supports: Paper 1.21.1+ · Skript 2.15+ New expressions Scanned (%objects% scanned with %lambda%): like reduced, but keeps every running result instead of only the last one. Give it...
  4. eult

    Addon skLambda

    eult updated skLambda with a new update entry: 1.2.0 Read the rest of this update entry...
  5. eult

    Script [SKRIPT BSE] Better Shulkers Extension (BSB extensions) - ChangeLog 4.0

    Improvements Updated compatibility for Minecraft 1.21+ (shulkers new nbt) Updated compatibility for Skript 2.15+
  6. eult

    Script [SKRIPT BSE] Better Shulkers Extension (BSB extensions)

    eult updated [SKRIPT BSE] Better Shulkers Extension (BSB extensions) with a new update entry: ChangeLog 4.0 Read the rest of this update entry...
  7. eult

    Addon skLambda

    eult updated skLambda with a new update entry: 1.1.1 Read the rest of this update entry...
  8. eult

    Addon skLambda - 1.1.1

    skLambda 1.1.1 Supports: Paper 1.21.1+ · Skript 2.15+ Removed Duplicate list expressions: %objects% filtered where %objects% passes, count of %objects% where %objects% passes, and first of %objects% where %objects% passes have been removed. Skript core already ships its own filtered, count...
  9. eult

    Addon skLambda - 1.1.0

    skLambda 1.1.0 Supports: Paper 1.21.1+ · Skript 2.15+ New expressions Highest / Lowest By: highest of %objects% by %lambda% and lowest of %objects% by %lambda% give you back the one item with the biggest or smallest value. You write a small lambda that scores each item, and it hands you the...
  10. eult

    Addon skLambda

    eult updated skLambda with a new update entry: 1.1.0 Read the rest of this update entry...
  11. eult

    Script [SKRIPT BSB] Better Shulker Boxes (NBT) - Changelog 10.0

    Improvements Updated compatibility for Minecraft 1.21+ (shulkers new nbt) Updated compatibility for Skript 2.15+ Fixes Fixed several bugs Resolved duplication issues
  12. eult

    Addon skLambda

    eult updated skLambda with a new update entry: 1.0.0 Read the rest of this update entry...
  13. eult

    Addon skLambda - 1.0.0

    skLambda 1.0.0 Supports: Paper 1.21.1+ · Skript 2.15+ New expressions List loops can now be written as one-line operations instead of Skript loop blocks. Each one runs a lambda or predicate over a list. Mapped: %objects% mapped with %lambda% turns every element into something new. Filtered...
  14. eult

    [IMG] 13k on discord we miss you btw <3

    13k on discord we miss you btw <3
  15. eult

    Addon skLambda - Changelog 0.0.3-alpha

    Supports: Paper 1.21.1+ · Skript 2.15+ New expressions Inline Lambda: write a lambda on one line: lambda (p: player): {_p} is op. The body is either a condition, which acts as a predicate returning true/false, or an effect, which runs and returns nothing. Parameters become locals like {_p}...