Skirk
Practical config
Use skirk in configs. Aliases: None listed.
Code
skirk char lvl=90/90 cons=0 talent=9,9,9;
skirk add weapon="favoniussword" refine=5 lvl=90/90;
skirk add set="emblemofseveredfate" count=4;
skirk add stats hp=4780 atk=311 atk%=0.466 cr=0.311 cd=0.622 er=0.110;Combo recipes
First rotation nuke toggle
Use a boolean to run the heavy first rotation once, then fall back to the normal route.
let first_rot_nuke = true
A variable you control. Flip it to false when you want the normal route only.
attack:5, dash
Comma chains actions in order. This is easier to read than one action per line.
Code
let first_rot_nuke = true;
if first_rot_nuke {
skirk burst;
skirk skill,
attack:5, dash,
attack:2, charge, dash,
attack:5, dash,
attack:5, dash,
attack:2, charge, dash,
attack:5, dash,
attack;
} else {
skirk skill;
skirk attack:5, dash, attack:2, charge;
}Serpent's Subtlety guard
If you need enough resource before bursting, wait with a timeout.
.skirk.serpents_subtlety < 50
Waits until Skirk has enough resource for the planned burst route.
timeout 180
If the resource never arrives, the script continues instead of freezing.
Code
let start = f();
while .skirk.serpents_subtlety < 50 && f() - start < 180 {
wait(1);
}
if .skirk.burst.ready {
skirk burst;
}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 skirk_basic_loop() {
if .skirk.skill.ready {
skirk skill;
}
if .skirk.burst.ready {
skirk burst;
}
skirk attack:3;
}Wait while .skirk.serpents_subtlety is active
Amount of Serpent's Subtlety.
Live state
This is not a setup value. It is the current simulator state at that frame.
Timeout
The frame limit stops the config from freezing if the state never changes.
Code
let start = f();
while .skirk.serpents_subtlety > 0 && f() - start < 300 {
skirk attack;
}Wait while .skirk.void_rifts is active
Number of Void Rifts on the field.
Live state
This is not a setup value. It is the current simulator state at that frame.
Timeout
The frame limit stops the config from freezing if the state never changes.
Code
let start = f();
while .skirk.void_rifts > 0 && f() - start < 300 {
skirk attack;
}Wait while .skirk.a4_stacks is active
Number of A4 stacks.
Live state
This is not a setup value. It is the current simulator state at that frame.
Timeout
The frame limit stops the config from freezing if the state never changes.
Code
let start = f();
while .skirk.a4_stacks > 0 && f() - start < 300 {
skirk attack;
}Start with start_serpents_subtlety
Set the starting amount of Serpent's Subtlety stacks. Default 100.
+params=[...]
Character params go on the `char` line.
Code
skirk char lvl=90/90 cons=0 talent=9,9,9 +params=[start_serpents_subtlety=1];Use skill[hold=...]
0 for Tap (default), value between 1 and 184 for Hold. The number determines the hold E duration in frames.
skill[hold=...]
Action params go inside brackets on the exact action you are casting.
Code
skirk skill[hold=1];Actions you can write
attack usable directly
Code
skirk attack:3;charge usable directly
Code
skirk attack, charge;skill usable directly
Code
skirk skill;burst usable directly
Code
skirk burst;dash usable directly
Code
skirk dash;jump usable directly
Code
skirk jump;walk usable directly
Code
skirk walk;swap usable directly
Code
skirk swap;Special action params
-[start_serpents_subtlety=...] - Set the starting amount of Serpent's Subtlety stacks. Default 100.
Code
skirk -[start_serpents_subtlety=1];skill[hold=...] - 0 for Tap (default), value between 1 and 184 for Hold. The number determines the hold E duration in frames.
Code
skirk skill[hold=1];Fields for conditions
.skirk.serpents_subtlety - Amount of Serpent's Subtlety.
Code
if .skirk.serpents_subtlety > 0 {
# action here
}.skirk.void_rifts - Number of Void Rifts on the field.
Code
if .skirk.void_rifts > 0 {
# action here
}.skirk.a4_stacks - Number of A4 stacks.
Code
if .skirk.a4_stacks > 0 {
# action here
}.skirk.c6_stacks - Number of C6 stacks.
Code
if .skirk.c6_stacks > 0 {
# action here
}Frames
- Video #1
- Video #2
Hitlag Data
- Normal
| Ability | Halt Time | Scale | Defense Halt | Deployable |
|---|---|---|---|---|
| N1 | 0.02 | 0.01 | false | false |
| N2 | 0.03 | 0.01 | false | false |
| N3-1 | 0.03 | 0.01 | false | false |
| N4 | 0.05 | 0.01 | false | false |
| N5 | 0.06 | 0.01 | false | false |
| E-N1 | 0.02 | 0.01 | false | false |
| E-N2 | 0.03 | 0.01 | false | false |
| E-N3-1 | 0.03 | 0.01 | false | false |
| E-N4-1 | 0.03 | 0.01 | false | false |
| E-N5 | 0.06 | 0.01 | false | false |
AoE Data
- Normal
- Charge Attack
- Burst
- Cons
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| N1 | Circle | Player | - | 0.3 | 2 | - | - | - | - |
| N2 | Circle | Player | - | -0.3 | 2.2 | - | - | - | - |
| N3-1 | Box | Player | - | -1.8 | - | - | 2.5 | 3.5 | - |
| N3-2 | Box | Player | - | -1.8 | - | - | 2.5 | 3.5 | - |
| N4 | Box | Player | - | -1 | - | - | 2.5 | 6 | - |
| N5 | Circle | Player | - | -0.3 | 3.2 | - | - | - | - |
| E-N1 | Box | Player | - | -0.4 | - | - | 7 | 5 | - |
| E-N2 | Box | Player | - | -0.4 | - | - | 7 | 3.5 | - |
| E-N3-1 | Box | Player | - | -0.4 | - | - | 6 | 3.5 | - |
| E-N3-2 | Box | Player | - | -0.2 | - | - | 6 | 3.5 | - |
| E-N4-1 | Box | Player | - | -0.5 | - | - | 5 | 6 | - |
| E-N4-2 | Box | Player | - | -0.5 | - | - | 5 | 6 | - |
| E-N5 | Box | Player | - | -0.4 | - | - | 11 | 6 | - |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| CA | Circle | PrimaryTarget | - | - | 2.8 | - | - | - | - |
| E-CA | Circle | PrimaryTarget | - | - | 3.3 | - | - | - | - |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| Q | Box | Player | - | -5 | - | - | 14 | 12 | - |
| Ability | Shape | Center | Offset X | Offset Y | Radius | Fan Angle | Box X | Box Y | Notes |
|---|---|---|---|---|---|---|---|---|---|
| Far to Fall (C1) | Box | Player | - | -3 | - | - | 4 | 8 | - |
| Havoc: Sever (C6) | Circle | Player | - | - | 5 | - | - | - | - |
Known issues
Names
- skirk
Legal Actions
| Ability | Legal | Notes |
|---|---|---|
attack | ✔ | - |
charge | ✔ | - |
aim | ❌ | - |
skill | ✔ | Cannot be used in Seven-Phase Flash. |
burst | ✔ | - |
low_plunge | ❌ | - |
high_plunge | ❌ | - |
dash | ✔ | - |
jump | ✔ | - |
walk | ✔ | - |
swap | ✔ | - |
Params
| Ability | Param | Description |
|---|---|---|
- | start_serpents_subtlety | Set the starting amount of Serpent's Subtlety stacks. Default 100. |
skill | hold | 0 for Tap (default), value between 1 and 184 for Hold. The number determines the hold E duration in frames. |
Fields
| Field | Description |
|---|---|
.skirk.serpents_subtlety | Amount of Serpent's Subtlety. |
.skirk.void_rifts | Number of Void Rifts on the field. |
.skirk.a4_stacks | Number of A4 stacks. |
.skirk.c6_stacks | Number of C6 stacks. |