Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Delphi]Indy->Irc

Supreme Arcanarch
Loyal Member
Joined
Mar 23, 2007
Messages
931
Reaction score
10
Hello.

I have a problem with my program. I added the indy component (IRC) for irc network connection. I've done so far so good. But i have a problem...

When someone else is typing a message all i see is first word.
Example:
If i type:"Hello, how are you today?"
In my memo is only:"Hello,".

Code:
procedure TMainForm.IrcPrivateMessage(ASender: TIdContext; const ANicknameFrom,
  AHost, ANicknameTo, AMessage: string);
begin
IrcMemo.Lines.Add(AMessage)
end;

Hmm, maybe someone knows here delphi and indy and can help me with that? :sq_yellow
 
Initiate Mage
Joined
Mar 31, 2007
Messages
3
Reaction score
0
sage

Probably something wrong with the string parsing.

Also, "if you want it done right do it yourself" applies here. IRC is such a straightforward protocol, after reading the spec (below) you should be able to write a basic client in less than a day.

 
Supreme Arcanarch
Loyal Member
Joined
Mar 23, 2007
Messages
931
Reaction score
10
Re: sage

Probably something wrong with the string parsing.

Also, "if you want it done right do it yourself" applies here. IRC is such a straightforward protocol, after reading the spec (below) you should be able to write a basic client in less than a day.


It's not about indy :(
 
Supreme Arcanarch
Loyal Member
Joined
Mar 23, 2007
Messages
931
Reaction score
10
No, no worries. I have found my answer. I just replace the " " with "_" =)
 
Back
Top