Quote:
	
	
		| 
					Originally Posted by reddogut  I am setting up a server for my young son and I to play EQ on. The problem is there is no way that the two of us by ourselves can take on a large percentage of the game. Is there a way to edit the npc_type database to lower the HP of all mobs by a certain percentage? | 
	
 update npc_type set hp = hp * 0.8 where id => 1;
that will reduce all npcs to 80% of their hitpoints, change the 0.8 to another decimal value for different percentages if you want it lower or higher.