DayZ-Stat-Server/config.php

67 lines
2.1 KiB
PHP
Raw Normal View History

2021-01-31 13:16:02 +01:00
<?php
2021-02-01 14:30:33 +01:00
2021-02-04 20:54:45 +01:00
// ini_set("allow_url_fopen", 1);
2021-01-31 13:16:02 +01:00
2021-02-05 00:18:56 +01:00
// Need to Edit this
2021-02-02 16:03:26 +01:00
/*
2021-02-02 23:34:59 +01:00
$ipserv = "103.58.149.102" ; // IP server game
2021-02-04 22:14:31 +01:00
$servport = "2302" ; // Game Server Port
2021-02-02 13:15:00 +01:00
$modport = "2312" ; // Mod port omega (+10)
$queryport= "27016" ; // Queryport
2021-02-04 18:00:02 +01:00
2021-02-02 12:51:55 +01:00
*/
2021-02-04 18:00:02 +01:00
$ipserv = "82.64.214.194" ; // IP server game
2021-02-04 22:14:31 +01:00
$servport = "3201" ; // Game Server Port
2021-02-04 18:00:02 +01:00
$modport = "3211" ; // Mod port omega (+10)
$queryport= "27001" ; // Queryport
2021-02-02 23:34:59 +01:00
2021-02-01 14:38:33 +01:00
$title = "DayZ Stat SERVER Clan | by TOX" ; // Web title page
$descript = "Your Clan/server desciption"; // Your clan/server description
2021-02-05 00:18:56 +01:00
// $namemap = "chernarusplus"; // choose between: chernarusplus / livonia / namalsk/
2021-02-02 11:44:54 +01:00
$logoteam = "logoteam.png";
$imagemap = "chernarus.jpg";
2021-02-04 18:00:02 +01:00
2021-02-05 00:18:56 +01:00
// Don't touch below
2021-02-04 18:00:02 +01:00
2021-02-05 00:18:56 +01:00
// Don't touch below (or you know what you do)
$urlserv = $ipserv.":".$servport ;
// need to fix if mod = 0
$json = file_get_contents("http://".$ipserv.":".$modport."/"); // get info from server
$objhigher = json_decode($json); //converts to an object
$objlower = $objhigher[0]; // if the json response its multidimensional this lowers it
$objlower = json_decode($json); //converts to an array of objects
2021-02-04 18:00:02 +01:00
2021-02-05 00:18:56 +01:00
// librarie SQ - info serv game
require 'SQ_/bootstrap.php';
use xPaw\SourceQuery\SourceQuery;
define( 'SQ_SERVER_ADDR', "${ipserv}" ); // IP server
define( 'SQ_SERVER_PORT', "${queryport}" ); // YOUR QUERY PORT
define( 'SQ_TIMEOUT', 3 );
define( 'SQ_ENGINE', SourceQuery::SOURCE );
$Timer = MicroTime( true );
$Query = new SourceQuery( );
$Info = Array( );
$Players = Array( );
try
{
$Query->Connect( SQ_SERVER_ADDR, SQ_SERVER_PORT, SQ_TIMEOUT, SQ_ENGINE );
$Info = $Query->GetInfo( );
$Players = $Query->GetPlayers( );
}
catch( Exception $e )
{
$Exception = $e;
}
$Query->Disconnect( );
2021-02-04 20:54:45 +01:00
2021-02-05 00:18:56 +01:00
$Timer = Number_Format( MicroTime( true ) - $Timer, 4, '.', '' );
$InfoGT = $Info['GameTags'];
2021-01-31 13:16:02 +01:00
?>