Jump to content

Is there anyway I can edit Gamestage?


Recommended Posts

Go to gamestages.xml and you can make some minor adjustments


 

        daysAliveChangeWhenKilled="2"

        difficultyBonus="1.2"

        startingWeight ="1"
        diminishingReturns ="0.5"

        lootBonusEvery = "12"
        lootBonusMaxCount = "30"
        lootBonusScale = "25"
    />
    <!-- the DifficultyBonus parameters are now flat multipliers. 2.0 = 2x the gamestage. Simple. -->
    <!-- lootBonus changes blood moon drop rates every x zombies, up to max chances, by scale -->

 

To make more changes, you would need to do some c# changes to the base code
 

 

 

and here is more information on the gamestage calculation (if you care)

There is a metric which maps a player or group of players to a game stage number.


daysSurvived:
    This is a running total, kept for every individual player.

    Every 24 hours GAME time 1 (day) is added.
    On every death "daysAliveChangeWhenKilled" is subtracted from the total.

    After this the daysAlive is capped.
    It is low-capped at 0, high-capped at "your player level".
    At player level 41 you can have a daysSurvived value anywhere from 0 to 41.

gameStage = ( playerLevel + daysSurvived ) * difficultyBonus

 

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...