View Single Post
  #27  
Old 09-02-2004, 07:29 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by samandhi
Quote:
Okay do this:

Save this as eqhost.bat in your EQ Directory:

Code:
@echo off
echo Generating eqhost...
if exist eqhost.txt del eqhost.txt
if not exist eqhost.txt echo COULD NOT FIND EQHOST.TXT, but creating anyway...
echo [Loginserver]>eqhost.txt
echo Host=eqemulator.net:5996>>eqhost.txt
Echo Done.
pause
exit


Then go into your EverQuest directory where you saved this and run it. If it brings up Notepad, you didnt save it under the right name. If it brings up a dos window and says "Done" at the 2nd to last line, then hit enter and start EQ.

Yeesh.
ROFL
Bah you quoted be faster than I could delete the post, because for some reason it created spaces after the lines on my 2nd machine (not my first)...curious...
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.