Developer Store
Support
Member Forums

Screenshots
FAQ
Documentation
License
Known Issues
Downloads

MMOWorkshop BACK!

PyTorque
TGB Web Browser


chayfo

hallsofvalhalla - Been A while
xapken - Wizards and Champions
J.C. Smith - The Repopulation - 0.5.2 Build Notes
EmpireGames - Elementals in Rise of Heroes
Empire Games - WarPath.
jaidurn - Warcall 0.0.1.0 build notes
medafor - Final detailing of models
Thamior - Presence system GONE! [May 25th 2009)]
... MORE BLOGS!

Building a MMO
Wow I had no idea....
Quest Remnants of Chaos
Checking to see if anyone is sti...
Well here I am again :)
T3D and MMOKit
afx 2.0
Terrain specularity [video]
Torque T3D MMO Kit
[3dFoin] Dragon Bug
//Sometimes we run into datablock issues because of mismatches...this should identify the issue...  Needs to be run on the client and server
ConsoleMethod( SimObject, spitOutDataBlocks, void, 2,2, "")
{
   int x = 0;
   for (x=0; x<= 1000; x++)
   {
      try
      {
		  SimObject *obj = Sim::findObject(x);
		  Con::errorf("%d %s", x, obj->getName());
	  }
	  catch(...)
	  {
		  continue;
	  }
   }
}