like adam said...
it's best to run a cron job instead of letting everyone hitting your server thus hitting other servers.
cron job of like 10 minutes apart at least and write your data to file or or db.
gui/siggy/stats page would get info from those files or db and show users. that means...
just call it anywhere outside that function... before or after doesn't matter
I usually stick functions at the bottom and put codes before them.
checkLoginGate("127.0.0.1", 7000);
function etc....
This is what I have...
checks upto 3 times with a 5 second timeout.
it also waits 1 second to see if the connection holds.
function checkLoginGate($host, $port) {
for ($i = 0; $i < 3; $i++) {
$fp = @fsockopen($host, $port, $errno, $errstr, 5);
if (!$fp) {
$ret = "DOWN";
} else {...
and what about your login server's ini?
What did you change here? (can't you just leave them like that?)
GateAddr=127.0.0.1
GatePort=5500
ServerAddr=127.0.0.1
ServerPort=5600
PreOBT Begins
As we have announced, the PreOBT of Legend of Mir 3 has begun today at 18:00 (6:00PM) Korean time. After logging in, please select the server named “Crimson Peacôck” to continue to the character selection screen. Those who participated in the CBT can continue to play with their...
don't look at Parent. Look at Hardware Ids...
should be the 2nd one from the drop down list.
parent means what it's connected to.
Have you installed chipset drivers?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.