Hmm. Ive tried numerous ways of trying to summon the corpse but for some reason it either blantly doesnt work, or the mob crashes.
I'm not sure what to tell you. Ill look into the summon corpse spell info later.
__________________
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.
|