OnClientChatOpen

From Wiki G1R-MP G1 Remake Multiplayer
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.