A modular utility library for Mudlet that just works. No fuss, no muss.
-- Get some Glu in your life
local glu = Glu("MyPackage")
-- Iterate over a string? Easy.
for i, part in glu.string.walk("hello world") do
if math.random() > 0.5 then
part = string.title(part)
end
print(i, part)
end
-- prints (probably):
-- 1 "H"
-- 2 "e"
-- 3 "l"
-- 4 "l"
-- 5 "o"
-- 6 " "
-- 7 "W"
-- 8 "o"
-- 9 "r"
-- 10 "l"
-- 11 "D"
-- Dates giving you trouble? Not anymore.
local pretty_time = glu.date.shms(3665, true) -- "1h 1m 5s"
-- Need some table magic?
local data = {a=1, b=2, c=3}
local just_values = glu.table.values(data) -- {1, 2, 3}
Want to add your own stuff? Glu's got you covered:
Glu.glass.register({
name = "awesome",
class_name = "AwesomeClass",
setup = function(___, self)
function self.double_it(num)
___.v.type(num, "number", 1, false)
return num * 2
end
end
})
-- Now use it!
local doubled = glu.awesome.double_it(21) -- 42
Check out our Wiki for detailed documentation, guides, and examples.
IDGAF License - Do whatever you want with this code. Seriously.
- Use it ✅
- Modify it ✅
- Copy it ✅
- Translate it to Klingon ✅
- Turn it into a interpretive dance routine ✅
Just have fun and make cool stuff! 🚀