Server Callbacks
Allows for callbacks initiated from the client used to return information to a client from the server.
TriggerServerCallback(name, callback, ...)
TriggerServerCallback(name, callback, ...)FOM.TriggerServerCallback('test', function(s, n)
print(s)
print(n)
end, 'hello', 'there')Last updated