Hacking and more...
HaCkinG CulT
|
Lista Forumurilor Pe Tematici
|
Hacking and more... | Reguli | Inregistrare | Login
POZE HACKING AND MORE...
Nu sunteti logat.
|
Nou pe simpatie: bruneta99
| Femeie 25 ani Satu Mare cauta Barbat 25 - 50 ani |
|
zapakitul
Elite Member
Inregistrat: acum 18 ani
Postari: 1158
|
|
As dori sa fac un banner rotativ in genul gelui de pe cstrike.ro! Care ma poate ajuta?
|
|
pus acum 17 ani |
|
gaby_dylyu
Old School Member
Inregistrat: acum 18 ani
Postari: 422
|
|
ce banner rotativ vezi u pe site?
_______________________________________ Always Expect The Unexpected!!!
|
|
pus acum 17 ani |
|
zapakitul
Elite Member
Inregistrat: acum 18 ani
Postari: 1158
|
|
Code:
You can add your server statistics on your site by using the following link:
http://www.cstrike.ro/GAME_server/SERVER-PORT.html where:
- GAME = game type (cstrike or cssource)
- SERVER = your server URL (eg. cs.yourserver.com)
- PORT = the server port (eg. 27015)
16.10.2006:
- The CS 1.6 servers section has been updated and the uptime is calculated for the last 30 days.
- The CS 1.5 server section has been updated and the uptime, is calculated for the last 30 days.
3.11.2006:
- cstrike.ro subdomains are available. |
Asta de aici, care se rorteste si scrie pe el port= server=
|
|
pus acum 17 ani |
|
gaby_dylyu
Old School Member
Inregistrat: acum 18 ani
Postari: 422
|
|
ala nu e banner rotativ... daca ai srv inregistrat la ei...il poti pune pe site-ul tau cu datele tale pe o poza de a ta...e ca si cum ai face un exchange :P
_______________________________________ Always Expect The Unexpected!!!
|
|
pus acum 17 ani |
|
zapakitul
Elite Member
Inregistrat: acum 18 ani
Postari: 1158
|
|
K dar sunt 2 probleme: 1-vrea sa stiu exact codul pentru a face asa ceva, 2. legat de server: Am server dar situl lor nu mil gaseste! Zice ca e offline al meu cand el e deschis si activ! Dar ca sa nu fac offtopic, as dori ca cineva sa psoteze codu lsursa! Am incercat viw source si am laut de acolo , dar nu prea inteleg, adik pe teemplatul facut de mine nu se potriveste, se imparte in 4 fragmente !
|
|
pus acum 17 ani |
|
gaby_dylyu
Old School Member
Inregistrat: acum 18 ani
Postari: 422
|
|
codul nu stiu daca poate sa ti-l dea cineva...cu view source nu prea o sa vezi nik... poti insa sa iti vezi statisticile cu chestia aia in care sa fie datele servarului tau...daca zici ca e off nu stiu cat o sa mearga
_______________________________________ Always Expect The Unexpected!!!
|
|
pus acum 17 ani |
|
Biwo
Membru nou
Inregistrat: acum 17 ani
Postari: 6
|
|
Uite aici rezultatul unei cautari... Este un script de interogare a serverului de cs (udp)
Code:
<?
class server
{
var $ip;
var $port;
var $err;
var $errno;
function __construct($ipin, $portin="27015") {
if($portin != NULL) { $this->port = $portin; } else { $this->port = "27015"; }
$this->ip = $ipin;
$this->command = "377377377377infostring ";
}
function connect() {
if($this->ip != NULL) {
$this->fp = fsockopen("udp://".$this->ip, $this->port, $errno, $errstr);
fwrite($this->fp, $this->command);
$JunkHead = fread($this->fp,24);
$CheckStatus = socket_get_status($this->fp);
if($CheckStatus["unread_bytes"] == 0){
$this->err = "Unable to connect to the server, ensure the IP and port is correct and that the server is running."; $this->errno = 2;
}
} else { $this->err = "There hasn't been entered any IP"; $this->errno = 1; }
}
function process() {
if(!$errno) {
$do = 1;
$HLServerStats= "";
while($do) {
$str = fread($this->fp,1);
$HLServerStats.= $str;
$status = socket_get_status($this->fp);
if($status["unread_bytes"] == 0) {$do = 0;}
}
fclose($this->fp);
$HLServerStats = explode("\", $HLServerStats);
$count = count($HLServerStats);
if($count % 2 == 0)
{
$i = 0;
while($count != $i)
{
$ServerData[$HLServerStats[$i]] = $HLServerStats[$i+1];
$i = $i + 2;
}
$this->data=$ServerData;
}
}
}
}
// Variabile
//
// address
// players
// max
// gamedir
// map
// type
// os
$server = new server("86.55.132.198", "27015");
$asd=$server->connect();
$server->process();
if(!$server->errno) {
// Afisarea informatiilor despre server
echo $server->data['map'];
echo $server->data['players'];
// si asa mai departe
} else {
echo "An error no. ".$server->errno." has been encountered: ".$server->err;
}
?> |
Poti sa le aranjezi cum vrei...
Sursa: error.ro
|
|
pus acum 17 ani |
|