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.
Отправляет текстовое сообщение подключённому клиенту. Текст появляется в области журнала/чата клиента.
Сообщение отправляется только клиенту — оно не передаётся на сервер и не видно другим игрокам.
procedure ClientPrint(Text: String);
Parameters:
- Text — message text to display in the client.
def ClientPrint(Text: str) -> None: ...
begin
ClientPrint('Script loaded :)');
// main script body
end.
ClientPrint('Script loaded :)')