| 
				 Changing maximum levels 
 Quick question... I read the thread for changing maximum levels from 2004. What is the method to use when you want to set the maximum level for the 7.0 Titanium servers? I did find the exp file in the zone folder is this all I would have to change?
 int8 maxlevel = LEVEL_CAP + 1;
 
 Im assuming the standard level_cap is 64 then? If I do need to change the level_cap where is this located?
 
 Thanks for you help I will play around with it to see if i can get it to work, hopefully I can set the max level to 70 soon. I did see the area where it has been altered to support up to level 127?
 
 Edit: Another question about experience in the game. Doesnt the following statement cancel out everything except -add_exp = add_exp * 8/10;  ??
 
 case CON_BLUE:
 //if (lvldiff >= 12)
 //	add_exp = add_exp * 6/10;
 //else if (lvldiff > 5)
 add_exp = add_exp * 8/10;
 //else if (lvldiff > 3)
 //	add_exp = add_exp * 9/10;
 break;
 			 Last edited by soulshot; 07-09-2006 at 12:45 AM..
 |