OnConsoleInput

From Onset Developer Wiki
Revision as of 09:43, 7 October 2020 by BlueMountains (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnConsoleInput

Type: Event
Context: Server & Client
Introduced: v1.2.1

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)

See also