πCallbacks
Callbacks are really important in an API, as they provide flexibility and customization to an extension.
The list of callbacks you can use, with the trigger of their call as well as what argument does the callback come with:
Example:
function OnChatSend(message)
--Do anything with the message
end
function OnChatSend()
--The function will still be called
end