mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-21 12:19:15 +12:00
Implement /account.php
This commit is contained in:
parent
d09a92ef9f
commit
db82b96faa
5 changed files with 148 additions and 14 deletions
|
@ -317,6 +317,19 @@ function getNoPlayersOnlineGlobal()
|
|||
return $playersOn;
|
||||
}
|
||||
|
||||
function userExistAny($playerId)
|
||||
{
|
||||
include('servers.php');
|
||||
for($i = 0; $i < count($server_list); $i++)
|
||||
{
|
||||
if(userid_exists($server_list[$i]['database'], $playerId)){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
function getNoSubbedPlayersOnlineGlobal()
|
||||
{
|
||||
include('servers.php');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue