Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::General > Archive::General Discussion

Archive::General Discussion Archive area for General Discussion's posts that were moved here after an inactivity period of 90 days.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #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
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 10:53 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3