OnConsoleInput
From Onset Developer Wiki
Description
Called when a new input in the console happened.
Read more about the client console here Debugging
Syntax
OnConsoleInput(input)
Parameters
- input
The text that was typed in the console.
Example
Server
AddEvent("OnConsoleInput", function(input)
print("OnConsoleInput "..input)
if input == "quit" or input == "exit" then
ServerExit("Exiting via console command")
end
end)
Client
AddEvent("OnConsoleInput", function(input)
print("OnConsoleInput "..input)
end)