| 
 Hello,
 To play on EQEmu, all you need to do is click HOWTO: Play Guide found in the Tutorials section.
 
 To run an EQEMu server, I suggest following the step-by-step guide (its the one with 10 pages or so of replies) to running one, also in the tutorials section.
 
 Have fun!
 
				__________________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.
 |