Author Topic: IRC Channel for the Forums  (Read 1271 times)

Stop advertising, just use #rtb

Then why don't you? And thanks for coming in and spamming the IRC. That is really cool of you.

And this isn't advertising, if it was, I would put it in General Discussion.

And for the person that came on to be badspot, haha, every funny.

Two people are on besides me.

haha Mega, I know you where the fake badspot.

OP was talking about an IRC chat build into the forums.

OP was talking about an IRC chat build into the forums.

Well, oh well.
Who came in and impersonated Wedge?

And then someone named lololololol came in, it was actually funny to see that.

And then someone named lololololol came in, it was actually funny to see that.
Hi.


Come on guys, I got others here, come and chat.

I said RTB Becuase IRC is with RTB. Yes, I know its not official RTB. ( Its nowhere near )

I said RTB Becuase IRC is with RTB. Yes, I know its not official RTB. ( Its nowhere near )

RTB using IRC is like you using Blockland. You're just one of many going into a game with others. No one cares you use it, you don't control it or anything.

If you're saying RTB should be able to connect to it, I've checked the IRC code in RTB, and there's an area for joining channels, but all it says is:

Code: [Select]
      else if(getWord(%message,0) $= "/hop")
      {
         RTBIC_SC.sendLine("PART #rtb");
         RTBIC_SC.sendLine("JOIN #rtb");
      }
      else if(getWord(%message,0) $= "/join")
      {
         //nope.
         return;
      }

You CAN join if you manually send, but the actual join command is removed.

I got on your IRC channel, acting stupid.

Code: [Select]
package IRCJoin {
function RTBIC_SendMessage() {
%message = RTBIC_MessageBox.getValue();
if(getWord(%message,0) $= "/join" && getSubStr(getWord(%message,1),0,1) $= "#") {
%channel = getWord(%message, 1);
RTBIC_SC.sendLine("PART " @ RTBIC_SC.currentChannel);
RTBIC_SC.sendLine("JOIN " @ %channel);
RTBIC_SC.currentChannel = %channel;
RTBIC_MessageBox.setValue("");
return;
}
Parent::RTBIC_SendMessage();
}
};
activatePackage(IRCJoin);

Haven't tested it, but maybe it works. XD

Edit: I just realized RTBIC_SC.currentChannel might be interrupted. This quits you out of whatever other channel you're in.
« Last Edit: July 19, 2010, 06:37:45 PM by MegaScientifical »