So... still aimlessly trying to get IRC working in RMXP is me.
The following script, I am assuming, should work:
I get the typical error everyone used to get when using Netplay, that is, "No connection could be made because the target machine actively refused it."
I have worked out that the error is on my end. The error occurs when the ip address used is not my machine.
It works if I use:
But does not work if I use
I.e. localhost works, but not my external IP address.
This was a major problem with Netplay+ and as far as I can recall, nobody ever fixed it, hence the thousands of newbies giving up with the system and only a few people managing to get it to work.
I have since got a new PC which is why it isn't working now when it was before. But I have NO IDEA why it isn't working.
I have:
- AVG Antivirus
That is all :|
The following script, I am assuming, should work:
Code:
begin
@socket = TCPSocket.new("osprey.il.us.slacked.org", 6777)
@socket.send("/NICK botbot")
@socket.send("/USER botbotbot")
@socket.send("/JOIN #clockwork")
end
I get the typical error everyone used to get when using Netplay, that is, "No connection could be made because the target machine actively refused it."
I have worked out that the error is on my end. The error occurs when the ip address used is not my machine.
It works if I use:
Code:
begin
@socket = TCPSocket.new("127.0.0.1", 50000)
end
But does not work if I use
Code:
begin
@socket = TCPSocket.new("82.47.xx.xxx", 50000)
end
I.e. localhost works, but not my external IP address.
This was a major problem with Netplay+ and as far as I can recall, nobody ever fixed it, hence the thousands of newbies giving up with the system and only a few people managing to get it to work.
I have since got a new PC which is why it isn't working now when it was before. But I have NO IDEA why it isn't working.
I have:
- AVG Antivirus
That is all :|