Players online 0, Isuse always "O"
hello guys, im having this problem.
it says ever players online: 0
i was injected 3 days ago, seems someone bugged it.
ill checked on db's and its bugged. the Isuse stay ever in "O" , never change to "J".. anyonw know how to fix this bug on my ACCOUNT_TBL_DETAIL.
Re: Players online 0, Isuse always "O"
If you have v15, use this query instead:
Code:
SELECT [m_idPlayer] FROM [CHARACTER_TBL] WHERE MultiServer != 0
Re: Players online 0, Isuse always "O"
Quote:
Originally Posted by
Treachery
If you have v15, use this query instead:
Code:
SELECT [m_idPlayer] FROM [CHARACTER_TBL] WHERE MultiServer != 0
it works <3, what About Server Peak? it says Server Peak: Array
its bugged ;<
Re: Players online 0, Isuse always "O"
I think that is just a mistake in your query.
Try using this one:
Code:
<?php
$peakquery = mssql_query("SELECT TOP 1 number FROM [LOGGING_01_DBF].dbo.[LOG_USER_CNT_TBL] ORDER BY [number] DESC");
$peak = mssql_fetch_row($peakquery);
echo "Peak: ".$peak[0];
?>