A set of simple helper functions I wrote for my mods, including:
- YakScheduler, simple task scheduler (like Chronos and Metrognome); add tasks with commands like
YakScheduler:In(5, "PrintHello", function() yak_print("Hello") end )
...would print "Hello" in 5 seconds. Also supports "At" (at a particular time) and "Every" (every X seconds).
Very low memory usage, etc.; a good way to consolidate OnUpdate commands.
- Simple iterators for each party/raid id/name
- Simple functions for printing to the chat window
- Simple Logging class to turn on/off log messages
- Basic implementation of Subject/Observer pattern
Basic stuff, but I was using it over and over and figured it'd be cleaner to package separately than duplicate code across all my mods.

