View Single Post
  #7  
Old 11-13-2003, 07:35 PM
Wiz
Dragon
 
Join Date: Feb 2002
Posts: 583
Default Re: Want server to be EQ Classic

Quote:
Originally Posted by xicross
For the sake of simplicity and a realistic goal of having a finished Legit server, I was wondering if you could help me on modifying the following:

-Only the original 2 continents.
-EQ Classic races and classes only
-Level 50 cap

I want to keep it small to make for a more populated server feel.
Either grab the database addons and delete all items/spawns/NPCs not related to classic OR just source it all and only boot up classic zones.

You'll need to mess with the source for a proper way to prevent BSTs, have a level 50 cap and all that. Add this line under OP_CharacterCreate in world/client.cpp, ABOVE SendCharInfo();

Code:
			if (cc.class_ > 14 || cc.race > 12)
			{
				cerr << "database.CreateCharacter failed" << endl;
				APPLAYER *outapp = new APPLAYER(OP_ApproveName, 1);
				outapp->pBuffer[0] = 0;
				QueuePacket(outapp);
				delete outapp;
				ret = false;
				break;
			}
in client.cpp, change the following line in SetEXP()

Code:
int8 maxlevel = 66;
to

Code:
int8 maxlevel = 51;
Simple way of doing it.
Reply With Quote