Blockland Forums > Modification Help
RTB Development
Tom:
--- Quote from: Pew446 on August 17, 2010, 02:59:49 AM ---TGE doesn't support voice chat.
--- End quote ---
Badspot has the source code. He could make it support voice chat if he wanted.
Kalphiter:
--- Quote from: Pew446 on August 16, 2010, 09:22:06 PM ---Hehe.
One thing I noticed about IRC (I KNOW YOUR NOT USING IRC SIGASNGIANH) is that when typing a smiley face ":D"
The other person will see it as "D"
No ":"
I just wanna know why this is. Not asking for a fix.
--- End quote ---
I'm going to assume because the IRC protocol involves colons, this might be a parsing error as Chrono mentioned.
Chrono:
--- Quote from: Kalphiter on August 17, 2010, 05:06:43 PM ---I'm going to assume because the IRC protocol involves colons, this might be a parsing error as Chrono mentioned.
--- End quote ---
I've gone through testing and it's not actually a problem with the receiving part, but instead the sending part.
I was able to see the beginning colon when sending a private message through mIRC.
The sending part was the problem, in RTBIC_sendSessionMessage
IRC doesn't seem to care whether or not you put the required : before your message, seeing how both
RTBIC_SC.sendLine("PRIVMSG Spy2 lolstuff"); and
RTBIC_SC.sendLine("PRIVMSG Spy2 :lolstuff");
gave the same result, "lolstuff", but
RTBIC_SC.sendLine("PRIVMSG Spy2 ::lolstuff");
has shown the initial colon. ":lolstuff"
RTB doesn't send this : for normal PM messages, seen here:
RTBIC_SC.sendLine("PRIVMSG "@%sess.username SPC %message);
where %message should have a colon behind it.
Kalphiter:
--- Quote from: Ephialtes on August 13, 2010, 01:40:06 PM ---IRC is defunct. I won't be fixing issues with it.
--- End quote ---
Chrono:
I figured as much, but I had fun figuring it out.