|
You last visited: Today at 02:58
Advertisement
DarkOrbit PvP Server List
Discussion on DarkOrbit PvP Server List within the DarkOrbit forum part of the Browsergames category.
02/09/2015, 14:51
|
#1
|
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
|
DarkOrbit PvP Server List

Hello Friends! I made a simple site for you. I'm sure on this site you will find an appropriate server  Have fun
Quote:
=>
|
Updates
Online/Offline Status Added.
CloudFlare DDOS Protection enabled.
3 new languages added.
Russian language added.
New language system.
New Theme.
|
|
|
02/09/2015, 15:15
|
#2
|
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
|
Looks pretty nice. Good job there.
|
|
|
02/09/2015, 16:29
|
#3
|
elite*gold: 0
Join Date: Apr 2014
Posts: 295
Received Thanks: 49
|
Quote:
Originally Posted by alperen417
Hello Friends! I made a simple site for you. I'm sure on this site you will find an appropriate server  Have fun
=> 
|
Quote:
Originally Posted by Requi
Looks pretty nice. Good job there.
|
Haven't we got one of those?
|
|
|
02/09/2015, 16:36
|
#4
|
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
|
Quote:
Originally Posted by xXNinjAXxWii
Haven't we got one of those?
|
Of course. And we already have dozen of Bots and Private Servers. So we should stop creating them?
Also this is just a list and not a online checker
|
|
|
02/09/2015, 21:58
|
#5
|
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
|
Is your server know?
|
|
|
02/10/2015, 01:44
|
#6
|
elite*gold: 0
Join Date: Jan 2014
Posts: 466
Received Thanks: 446
|
Good Job But it don't if it's Offline Or Online  Just a Suggestion... So People can see if its on from there instead of wasting there time going to the site log in and see if spacemap it online
|
|
|
02/10/2015, 18:21
|
#7
|
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
|
Quote:
Originally Posted by Real.epvp
Good Job But it don't if it's Offline Or Online  Just a Suggestion... So People can see if its on from there instead of wasting there time going to the site log in and see if spacemap it online 
|
I'll try to add
|
|
|
02/10/2015, 18:55
|
#8
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
I released a function for this here. Obviously here $data["content"] isnt important.
$data["header"]["HTTP/1.0"]
gives you the status
Quote:
Originally Posted by UND3RW0RLD
Hey here is a little toy. If you want to piss off bp you can mirror their loginpage. This saves you much time, because you get their updates instantly
PHP Code:
function getWebContents($url)
{
$parse = parse_url($url);
if(!$parse || !isset($parse['host']))
{
return false;
}
$host = $parse['host'];
$port = isset($parse['port']) ? $parse['port'] : ($parse['scheme'] == 'http' ? 80 : 443);
$pfad = isset($parse['path']) ? $parse['path'] : '/';
if (isset($parse['query']))
{
$query = array();
$parse['query'] = explode("&",urldecode($parse['query']));
foreach ($parse['query'] as $entry)
{
$entry = explode("=",$entry);
$query[] = $entry[0]."=".urlencode($entry[1]);
}
$parse['query'] = implode("&",$query);
}
$ConnectionHandle = @fsockopen(($port != 443 ? $host : 'ssl://' . $host), $port, $errno, $errstr, 2);
if(!$ConnectionHandle) {
return false;
}
$request = array();
$request[] = "GET ".$pfad.(isset($parse['query'])?"?".$parse['query']:"")." HTTP/1.1";
$request[] = "Host: ".$host;
$request[] = "User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)";
$request[] = "Accept: text/html,text/plain";
$request[] = "Accept-Language: en-us,en;q=0.5";
$request[] = "Accept-Encoding: deflate";
$request[] = "Accept-Charset: ISO-8859-1";
$request[] = "Connection: close";
$request = implode("\r\n",$request)."\r\n\r\n";
fputs ($ConnectionHandle, $request);
$retr = "";
while (!feof($ConnectionHandle))
{
$retr .= fgets($ConnectionHandle, 128);
}
fclose($ConnectionHandle);
$pos = strpos($retr, "\r\n\r\n");
$header = substr($retr, 0, $pos);
$header = explode("\r\n", $header);
$status = explode(" ",$header[0]);
$http = $status[0];
unset($status[0]);
unset($header[0]);
$h = array();
$h[$http] = implode(" ",$status);
foreach($header as $i)
{
$i = explode(":",$i);
$h[trim($i[0])] = trim($i[1]);
}
$content = substr($retr, $pos + 4);
$content = str_replace(array("ö", "ä", "ü", "ß", "Ö", "Ä", "Ü", "é", "Â"),
array("ö", "ä", "ü", "ß", "Ö", "Ä", "Ü","é"),
$content);
return array("header" => $h, "content" => $content);
}
this generates an output like: (example google)
Code:
array(2) {
["header"]=>
array(8) {
["HTTP/1.0"]=>
string(6) "200 OK"
["Date"]=>
string(19) "Mo, 17 Nov 2014 19"
["Expires"]=>
string(2) "-1"
["Cache-Control"]=>
string(18) "private, max-age=0"
["Content-Type"]=>
string(24) "text/html; charset=UTF-8"
["Set-Cookie"]=>
string(164) "NID=51=R3n-Ek-42HTVUVUk7a4xm3VQA1p-TAt5ZRPCabzgiAAEJt1xcpay84rooJHsy8yGK1n5dg-ULoCsLKYqFHJjddtQRkC63aPXV-zS1AFgYmLGkgLDVaekiox0QsLF9Zhz; expires=Sat, 07-Apr-2015 19"
["Server"]=>
string(3) "gws"
["X-XSS-Protection"]=>
string(13) "1; mode=block"
}
["content"]=>
string(29765) "<!doctype html><html>... (ripped)"
}
if you call it like:
PHP Code:
$data = getWebContents("http://www.google.de");
PHP Code:
echo $data["content"];
to handle forms you can use str_replace. This ofc forces you to make own processingpages like "takesignup".
or if you want to mirror pages like "choosefaction" too you have to extend the array $request with
PHP Code:
// vBulletin-board-default setting
$request[] = "Cookie: bblastvisit=0; bblastactivity=0";
the possibities to use this script are endless not only for dark orbit. 
|
|
|
|
02/10/2015, 20:15
|
#9
|
elite*gold: 0
Join Date: Feb 2009
Posts: 1,718
Received Thanks: 2,382
|
Quote:
Originally Posted by UND3RW0RLD
I released a function for this here. Obviously here $data["content"] isnt important.
$data["header"]["HTTP/1.0"]
gives you the status
|
He needs to ping port 8080 to see if spacemap is online.
|
|
|
02/10/2015, 20:17
|
#10
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
yepp
getWebContents("http://www.domain.de:8080")
|
|
|
02/11/2015, 00:03
|
#11
|
elite*gold: 0
Join Date: May 2011
Posts: 244
Received Thanks: 39
|
Links is dead ... thx for update your link
|
|
|
02/11/2015, 11:20
|
#12
|
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
|
Quote:
Originally Posted by UND3RW0RLD
I released a function for this here. Obviously here $data["content"] isnt important.
$data["header"]["HTTP/1.0"]
gives you the status
|
I could not
Quote:
Originally Posted by Darkorbit GamerZ
Links is dead ... thx for update your link
|
 ?
Quote:
Updates
Online/Offline Status Added.
|
|
|
|
02/11/2015, 16:14
|
#13
|
elite*gold: 0
Join Date: May 2013
Posts: 454
Received Thanks: 114
|
Good job, Thank you :-)
|
|
|
02/11/2015, 16:28
|
#14
|
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
|
Quote:
Originally Posted by BlackieNL
Good job, Thank you :-)
|
Thank you. Do you have a suggestion?
Edit
Quote:
|
|
|
02/12/2015, 17:54
|
#15
|
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
|
Quote:
Originally Posted by UND3RW0RLD
yepp
getWebContents("http://www.domain.de:8080")
|
Or do it like I did and use fsockopen  . Default function in php.
|
|
|
Similar Threads
|
DarkOrbit - Private Server list 2014
07/30/2014 - DarkOrbit - 3 Replies
# Name Link Status Owner
1 Shock Servers Online Cryz35IceShock
2 One Ultimate Online olitis1
3 PvP Coolers Online Benoit
4 Old Warrior Online NoCheatImPGM
5 Skyuniverse Offline Requi
6 Explosive Space Online GabrielCool1
7 Extermino Total Online Mosiih
|
[LIST] WarRock Privat Server List! [LIST]
07/27/2013 - WarRock - 46 Replies
http://archiv.so/images/2013/03/01/bQaXx.png
Hallo elitepvpers Community!
Da es in letzter Zeit viele unnötige Threads, mit Fragen zu guten
Privat Servern gab, möchte ich es Neulingen (Newbies) etwas erleichern!
Und das ganze soll durch diese Liste an mir bekannten WarRock P-Servern
geschehen.
Sollten euch noch weitere Server bekannt sein, schreibt den
Thread-Link & Namen als Kommentar, damit ich diesen Server
eventueller Weise auch noch rein editieren kann.
|
All times are GMT +1. The time now is 02:59.
|
|