Jump to content

About explevel.txt


The WHAM Burglar

Recommended Posts

From my limited knowledge I can safely tell the following:

 

This file, located in 'gamedata.vfs\strategic\configs\stratgame\character\', dictates what amount of experience is required for a solder to reach a certain level. The maximum possible level is level 43. An obligatory code sample is below:

 

SubExpLevel RECORD
     level INT 43
     experience INT 170000000
   END_OF_SubExpLevel
 END_OF_ListOfExpLevel

 

level INT [a number] dictates a level

experience INT [a number] dictates the experience needed to reach the level INT above

 

Technically you can add levels, an example would be:

 

    SubExpLevel RECORD
     level INT 44
     experience INT 200000000
   END_OF_SubExpLevel
 END_OF_ListOfExpLevel

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...