|
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:
! r; s7 f* o- O' `* z0 H) t4 i: R3 T7 ZCode:0 M9 y4 u$ b2 v$ I1 t+ z
$mssql = mssql_query("SELECT * FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE isuse='J'");0 c$ Q, x3 I; Y! B4 N m* B
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:1 E0 k) Y& T- ~
Code:
- |) z4 K& s% l, Y3 `- }! N) `% a$mssql = mssql_query("SELECT * FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE MultiServer='1'");
+ T( N- e3 t+ W+ S/ ~echo mssql_num_rows($mssql);
* a1 E3 @. Y8 C5 h! T! p! h6 G% d7 E. b4 y+ l! _
|
|