You can NOT use a spells_us.txt from the latest patch. You have to have a pre-dec 15 spells_us.txt in your eq directory AND your eqemu directory.
__________________
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.
|