NDCH ⋅ Lua tutorials
How to use masked functions.Lets create a send to operators custom function via permissions object.
Code
--// create a blank permissions objectisOpPerm = Hub.newPermissions();
--// set the is_operator mask
isOpPerm.is_operator = true;
--// create a custom function
sendToOps = function(text)
--// use the masked send to all function using our perm object.
Hub.mSendToAll(isOpPerm, text);
end;