Server Callbacks
Allows for callbacks initiated from the client used to return information to a client from the server.
RegisterServerCallback(name, func)
RegisterServerCallback(name, func)FOM.RegisterServerCallback('test', function(source, cb, s1, s2)
print(s1 .. ' ' .. s2)
cb('hello', 1)
end)Last updated