Edit:
It seems as though you got this working on your own but posted your reply in a different thread. If so, feel free to ignore this.
-------------------------------
Is "fast" the server computer itself or your son's computer? I'm also a little confused about your IP choices here. You have the realmlist attempting to connect on 192.168.15.100 but you're setting your server's IP address to 192.168.3.3 (that's what that SQL command did). I may just be tired and missing something here (it is almost 3 AM after all so I'm sorry if that's the case) but if you could possibly post the following, it would be helpful.
Your computer's IP address (the one you play from)
Your son's computer's IP address (I'm assuming this is different than yours since the goal is for the two of you to be able to play together)
Your server's IP address (I'm also assuming this is different from your IP address though this may not be the case)
You can post the names of the computers as well though that would just help to clear up which computers are trying to connect to the database so it isn't entirely necessary.
Just as a little bit of reference info, I'll give you two scenarios here. First, you are connecting from the server computer and your son is connecting from another computer. For the sake of simplicity, I'll call the server (and you in this case) 192.168.0.1 and your son 192.168.0.2. This scenario implies that you have two computers on the network.
Your realmd table should have 192.168.0.1 as it's IP address (to change it in this case, you'd use the command UPDATE realmlist SET address = '192.168.0.1' WHERE id = 1; once you have the proper database selected which you can do by typing USE realmd; if you're doing this all on the command line). Your realmlist.wtf file should read:
set realmlist localhost
set patchlist localhost (though this line can be left out and doing so is another way to prevent the client from updating)
Also, where I have localhost, 192.168.0.1 may also work in if you're connecting from the server computer.
Your son's realmlist.wtf file should read:
set realmlist 192.168.0.1
set patchlist 192.168.0.1 (again, this line can be left out)
Now, for scenario two, we're going to assume that your server is a dedicated machine and that you have three computers on the network. To keep things simple, we'll still call the server 192.168.0.1 and your son's computer 192.168.0.2 and we'll add a third computer, yours, as 192.168.0.3.
Your realmlist on the server should still be set to 192.168.0.1 and both yours and your son's realmlist.wtf file should read:
set realmlist 192.168.0.1
set patchlist 192.168.0.1 (again, this line can be left out)
Remember that I made all of these IPs up though so don't use them. I can customize these scenarios more once I have the correct number of computers and their IPs. Let me know if you need anything better explained. I'm sure between me and daggo (who also really seems to know what he's talking about), we can get this working for you.
Posted 1 year ago » Permalink