Stealth 6.7.1.
Code: Select all
Program SendMsg;
begin
    if not ICQConnected then
        ICQConnect('uin', 'pw');
        wait(35000);
    if ICQConnected then
        ICQSendText('uin2', 'msg')
    else
        AddToSystemJournal('No icq connection, failed to send message!');
end.