|
|
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:
% L% w$ a, ?* v+ O7 p' b9 `1 t0 LCode:0 A! J. i+ w3 R( A
$mssql = mssql_query("SELECT * FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE isuse='J'");
, |; l8 o- X8 s& T* \3 {( H/ L: Jecho 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:- U; k" e( M/ j* X( s/ z7 v
Code:
9 Q8 l' C" J/ R5 t# ~# K4 m8 m$mssql = mssql_query("SELECT * FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE MultiServer='1'");& S7 Q3 g" U; W! F3 S
echo mssql_num_rows($mssql);; y2 e8 U2 G$ |8 y9 e4 t4 j
' o1 _3 g- i* u' I1 ?6 Y8 W |
|