Sethos
Practical config
Use sethos in configs. Aliases: None listed.
Code
sethos char lvl=90/90 cons=0 talent=9,9,9;
sethos add weapon="favoniussword" refine=5 lvl=90/90;
sethos add set="emblemofseveredfate" count=4;
sethos add stats hp=4780 atk=311 atk%=0.466 cr=0.311 cd=0.622 er=0.110;Combo recipes
Safe basic loop
This is the safest starter pattern. It checks if skill/burst are ready before pressing them, then uses attacks as filler. Use it when you do not know a character combo yet.
if .character.skill.ready
This reads the cooldown. If it says ready, the action can be used now. If it is false, the sim skips that action.
attack:3
`attack:3` means three normal attacks in a row. Change the number while you test.
No infinite loop here
This helper runs once when you call it. Put the repeated rotation outside, in your main `for` loop.
Code
fn sethos_basic_loop() {
if .sethos.skill.ready {
sethos skill;
}
if .sethos.burst.ready {
sethos burst;
}
sethos attack:3;
}Use attack[travel=...]
Projectile travel time. Default 10 frames.
attack[travel=...]
Action params go inside brackets on the exact action you are casting.
Code
sethos attack[travel=10];Use aim[hold=...]
0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot.
aim[hold=...]
Action params go inside brackets on the exact action you are casting.
Code
sethos aim[hold=1];Actions you can write
attack usable directly
Code
sethos attack:3;aim usable directly
Code
sethos aim[weakspot=1,travel=10];skill usable directly
Code
sethos skill;burst usable directly
Code
sethos burst;dash usable directly
Code
sethos dash;jump usable directly
Code
sethos jump;walk usable directly
Code
sethos walk;swap usable directly
Code
sethos swap;Special action params
attack[travel=...] - Projectile travel time. Default 10 frames.
Code
sethos attack[travel=10];aim[hold=...] - 0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot.
Code
sethos aim[hold=1];aim[travel=...] - Projectile travel time. Default 10 frames.
Code
sethos aim[travel=10];aim[weakspot=...] - Hit weakspot with aimed shot. Default 0 (false), 1 for true.
Code
sethos aim[weakspot=1];Fields for conditions
No special entries documented.
Frames
Count: Sheet (credit: ange1o5)
Hitlag Data
- Aimed Shot
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| Aim-Head | 0.12 | 0.01 | false | true |
| FullAim-Head | 0.12 | 0.01 | false | true |
| ShadowpiercingShot-Head | 0.12 | 0.01 | false | true |
AoE Data
- Normal
- Aimed Shot
- Skill
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| N1 | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| N2-1 | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| N2-2 | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| N3 | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| Q-N1 | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| Q-N2-1 | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| Q-N2-2 | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| Q-N3 | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| Aim | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| Aim-Head | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| FullAim | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| FullAim-Head | Box | PrimaryTarget | - | -0.5 | - | - | 0.1 | 1 | - |
| ShadowpiercingShot | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| ShadowpiercingShot-Head | Box | Player | - | - | - | - | 0.1 | 15 | This is an approximation because we do not actually know the real AoE. This attack is a line going from the Player to the direction of the Primary Target. |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| E | Circle | Player | - | - | 4.5 | - | - | - | - |
Known issues
Names
- sethos
Legal Actions
| Ability | Legal | Notes |
|---|---|---|
attack | ✔ | - |
charge | ❌ | - |
aim | ✔ | - |
skill | ✔ | - |
burst | ✔ | - |
low_plunge | ❌ | - |
high_plunge | ❌ | - |
dash | ✔ | - |
jump | ✔ | - |
walk | ✔ | - |
swap | ✔ | - |
Params
| Ability | Param | Description |
|---|---|---|
attack | travel | Projectile travel time. Default 10 frames. |
aim | hold | 0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot. |
aim | travel | Projectile travel time. Default 10 frames. |
aim | weakspot | Hit weakspot with aimed shot. Default 0 (false), 1 for true. |