• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

status serwera dla dwóch światów

Meferot

New Member
Joined
Jan 28, 2008
Messages
57
Reaction score
1
Poszukuje scryptu, lub jakiegoś poradnika jak przerobić scrypt acc gesiora, tak aby pokazywał mi status dla dwóch lub większej ilość serwerów, przykładowo tak jak jest na wom24.pl.
 
Code:
$serv1 = array("localhost", 7171);
$serv2 = array("chujhost", 7171);
$status[1] = "offline";
$status[2] = "offline";

if (fsockopen($serv1[1], $serv1[2], $errno, $errstr, 1))
	$status[1] = "online";

if (fsockopen($serv2[1], $serv2[2], $errno, $errstr, 1))
	$status[2] = "online";

echo "Server 1: ".$status[1]."<br/>Server 2: ".$status[2];

Nara trole.
 
Back
Top