|
|
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:
; T6 w0 D7 g2 I( y5 ?) l" g% OCode:; a6 l2 u% M& O3 }, A, M
$mssql = mssql_query("SELECT * FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE isuse='J'");
1 `: M. |" x- O! p5 Y0 Vecho 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:
3 t# t' M y9 G6 q% [4 A: T! ?9 QCode:/ {9 [) F, ]0 x$ q7 F- u- T& Y/ I
$mssql = mssql_query("SELECT * FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE MultiServer='1'");+ E: _( W5 {- V4 l0 \- |9 S
echo mssql_num_rows($mssql);! ^( f2 ^4 x6 p1 }" Q' T& \; X
4 A( C; F1 m% M$ K8 J
|
|