Thread: GoD expansion
View Single Post
  #2  
Old 09-10-2004, 01:45 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Do this.

Open up MySQL. and insert this:
Code:
select value from variables where varname='expansions';
If you do NOT see 255, but another number, insert this:
Code:
 update variables set value=255 where varname like 'expansions';
By the way, this is EASILY found with Search.
__________________
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.