OnClientChatOpen

From Wiki G1R-MP G1 Remake Multiplayer
Revision as of 22:31, 14 August 2026 by QCherry (talk | contribs) (Update Lua event reference)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

onClientChatOpen

Triggered when the built-in client chat input becomes active.

Availability

This event is available in client-side scripts.

Callback signature

onClientChatOpen()

Parameters

This event does not pass parameters to its handler.

Examples

Handle the event:

addEventHandler("onClientChatOpen", root, function()
    outputDebugString("Chat input opened")
end)

Notes

  • This reports input state; it does not contain a submitted message.