Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return function(msg,usr,chan)
- if not msg or msg == "" then
- msg = chan:sub(2):lower();
- end
- local ok,bad = MOD.GetStream(msg);
- if not ok then
- print("Stream: " .. tostring(msg) .. " was not found ("..bad..")");
- else
- for k,v in pairs(ok) do
- print(tostring(k) .. ": " .. tostring(v));
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement