Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

server status

Coxiez
Banned
Joined
Aug 31, 2006
Messages
859
Reaction score
67
any one know how to make website server status can read the server channel online/offline and see how many ppl online? and how to use!
 
Trying to be developer ^^
Loyal Member
Joined
Jul 21, 2010
Messages
1,072
Reaction score
360
Check if svr online:
function checkLogin($host, $port, $timeout = 6) {
$fsock = fsockopen($host, $port, $timeout);
if (!$fsock) {
return FALSE;
} else {
return TRUE;
}
}
Host = ur svr IP, Port = WorldSvr_01_0x port.

About people online:
SELECT COUNT(*) FROM Server01.dbo.cabal_character_table WHERE Login=1 AND ChannelIdx= " . $ChannelIdx . "")
I wont teach u how to use it, if u want edit that im sure u know basic things in php :)
Good luck.
 
Upvote 0
Coxiez
Banned
Joined
Aug 31, 2006
Messages
859
Reaction score
67
i dont know anything in php html xml etc. thats why i make post here so someone teach me how to make one ^_^ but thanks for small info. its make a big deal to me to understand some code you gave :thumbup1:
 
Upvote 0
Initiate Mage
Joined
May 2, 2015
Messages
1
Reaction score
0
ACE_ASSERT: файл LoadItemConfig.cpp, строка 12 ошибка утверждения на '0'.Прерывание... народ что за ошибка может быть?
 
Upvote 0
Back
Top