|
In the past I've seen various ways of checking the current number of online players, but all that I've seen have a fatal flaw. Depending on how the server was turned off (or more specifically, if it crashes) the player count gets messed up. Here's the one I'm talking about:
+ C. ^* J* n5 U: h* LCode:! S$ |6 g3 ~3 J3 a1 u; Y
$mssql = mssql_query("SELECT * FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE isuse='J'");5 ^" t; u9 R5 k( v3 h* l& U* \
echo mssql_num_rows($mssql);Here's a more proper code, which will automatically reset the current online count whenever the world server program is opened:
( H l& l' U; r5 J) v: t$ s0 TCode:
8 f' k. v- c) Z. A" @! V: [/ d# R# [$mssql = mssql_query("SELECT * FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE MultiServer='1'");
* i. Y+ b8 q- m' H1 w2 |, O/ h' Hecho mssql_num_rows($mssql);4 R2 R" j4 Q7 g
; M) p; Z+ v2 P4 z
|
|