Simple quick help

Kevie

King Kevie
Joined
Jul 7, 2008
Messages
143
I noticed that the experience gained from fighting barbarians was 5 (unless defending against them)
Is there a way where I can normally (+1) when I attack the barbs for experience? Basically, no cap for barb experience.


And if you can, could you give me a complete step by step? I don't wanna ruin anything. Thanks :goodjob:
 
If all you care about is removing/increasing the cap, just change the XML global defines:
Code:
	<Define>
		<DefineName>ANIMAL_MAX_XP_VALUE</DefineName>
		<iDefineIntVal>5</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>BARBARIAN_MAX_XP_VALUE</DefineName>
		<iDefineIntVal>10</iDefineIntVal>
	</Define>
Standard modding caveats apply: backup the original file first and/or copy it to CustomAssets and make your changes there.
 
Back
Top Bottom