Skip to content

Releases: Charlie-Zheng/gcsim

Sub

02 Jan 05:41
Compare
Choose a tag to compare
Sub Pre-release
Pre-release

This is the v2.17.2, but with an updated Substat Optimizer.

Notes on using the new Substat Optimizer:

When using a

if .char.burst.ready { 
    char burst;
}

The ER calculation will attempt to give ER so that character can burst every time. If the desired behavior is to burst when there is energy but not otherwise, the user needs to add an actual energy check

if .char.burst.ready && .char.energy == .char.energymax { 
    char burst;
}

If the desired behavior is enough ER to burst every other rotation, then actually write the config such that the character bursts every other rotation:

for let i = 0; i < 4; i += 1 {
    ...
    if i == 1 || i == 3 {
        char burst;
    }
   ...
}

v2.12.5 with Updated Substat Optimizer

17 Dec 23:19
3426518
Compare
Choose a tag to compare
Pre-release

This is the v2.12.5, but with an updated Substat Optimizer.

Notes on using the new Substat Optimizer:

When using a

if .char.burst.ready { 
    char burst;
}

The ER calculation will attempt to give ER so that character can burst every time. If the desired is to actually burst when there is energy but not otherwise, the user needs to add an actual energy check

if .char.burst.ready && .char.energy == .char.energymax { 
    char burst;
}

If the desire is enough ER to burst every other rotation, then actually write the config such that the character bursts every other rotation:

for let i = 0; i < 4; i += 1 {
    ...
    if i == 1 || i == 3 {
        char burst;
    }
   ...
}

Release v2.7.5 with Updated Substat Optimizer

10 Oct 03:14
025edfe
Compare
Choose a tag to compare

This is the v2.7.5, but with an updated Substat Optimizer.

Notes on using the new Substat Optimizer:

When using a

if .char.burst.ready { 
    char burst;
}

The ER calculation will attempt to give ER so that character can burst every time. If the desired is to actually burst when there is energy but not otherwise, the user needs to add an actual energy check

if .char.burst.ready && .char.energy == .char.energymax { 
    char burst;
}

If the desire is enough ER to burst every other rotation, then actually write the config such that the character bursts every other rotation:

for let i = 0; i < 4; i += 1 {
    ...
    if i == 1 || i == 3 {
        char burst;
    }
   ...
}

nightly

30 Dec 01:59
411fc2e
Compare
Choose a tag to compare
nightly Pre-release
Pre-release

Commits

Read more