Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

ClientPrint

Sends a text message to the connected client. The text appears in the client’s journal/chat area.

This message is sent only to the client — it is not transmitted to the server and is not visible to other players.

Отправляет текстовое сообщение подключённому клиенту. Текст появляется в области журнала/чата клиента.

Сообщение отправляется только клиенту — оно не передаётся на сервер и не видно другим игрокам.

Pascal

procedure ClientPrint(Text: String);

Parameters:

  • Text — message text to display in the client.

Python

def ClientPrint(Text: str) -> None: ...

Pascal Example

begin
  ClientPrint('Script loaded :)');
  // main script body
end.

Python Example

ClientPrint('Script loaded :)')

See Also

ClientPrintEx, UOSay, AddToSystemJournal