Sending text line to connected Client, Extended version of ClientPrint) You can set:
NB: This text sending only to client, not to server!
Pascal
procedure ClientPrintEx(SenderID: Cardinal; Color: Word; Font: Word; Text: String);
Python
ClientPrintEx(SenderID, Color, Font, Text)
Example Pascal
PROGRAM Test;
begin
//some preparation
ClientPrintEx(SelfID, 0, 0, 'Script loaded :)');
//main script body
end.