View Single Post
  #4  
Old 03-30-2009, 04:20 AM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

1 recommendation from me: dynamically create an eqhost.txt file to make it easier to switch between servers:

PHP Code:
<?php

header
('Content-Description: File Transfer');
header('Content-Type: text/plain');
header('Content-Disposition: attachment; filename=eqhost.txt');
ob_clean();
flush();

echo 
"[LoginServer]\r\n";
echo 
"#" $name "\r\n";
echo 
"Host=" $host ":" $port "\r\n\r\n";

?>
Which could result in this:
Code:
[LoginServer]
#Cripps Nug Blazers
Host=68.4.48.127:5999
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote