Quote:
Originally Posted by sotonin
well it seems to work fine.... i use ""'s on all of my summonitems and they put the item on your cursor.
isn't that how summonitem is supposed to work? I tested all the quests and they all use quotes.
|
I always do quest::summonitem(0000); and it puts it on the cursor fine. If it doesnt there's a problem with the code above it.
__________________
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.
|