Zum Hauptinhalt springen

Sethos

Praktische Config

Nutze sethos in configs. Aliase: Keine Aliase eingetragen.

Starter kopieren

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

Sichere Basis-Schleife

Das ist der sicherste Start. Die Schleife prueft erst, ob Skill oder Burst bereit sind, und nutzt danach Angriffe als Fuellung. Nutze sie, wenn du die echte Combo noch nicht kennst.

if .character.skill.ready

Liest den Cooldown. Wenn ready wahr ist, kann die Aktion jetzt benutzt werden. Wenn nicht, ueberspringt der Simulator sie.

attack:3

`attack:3` bedeutet drei normale Angriffe hintereinander. Aendere die Zahl beim Testen.

Keine Endlosschleife hier

Dieser Helper laeuft nur einmal, wenn du ihn aufrufst. Die Wiederholung der Rotation gehoert aussen in die Haupt-`for`-Schleife.

Combo kopieren

fn sethos_basic_loop() {
  if .sethos.skill.ready {
    sethos skill;
  }
  if .sethos.burst.ready {
    sethos burst;
  }
  sethos attack:3;
}

attack[travel=...] benutzen

Flugzeit des Projektils in Frames.

attack[travel=...]

Aktionsparameter stehen in Klammern an genau der Aktion.

Combo kopieren

sethos attack[travel=10];

aim[hold=...] benutzen

0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot.

aim[hold=...]

Aktionsparameter stehen in Klammern an genau der Aktion.

Combo kopieren

sethos aim[hold=1];

Schreibbare Aktionen

attack direkt nutzbar

Befehl kopieren

sethos attack:3;

aim direkt nutzbar

Befehl kopieren

sethos aim[weakspot=1,travel=10];

skill direkt nutzbar

Befehl kopieren

sethos skill;

burst direkt nutzbar

Befehl kopieren

sethos burst;

dash direkt nutzbar

Befehl kopieren

sethos dash;

jump direkt nutzbar

Befehl kopieren

sethos jump;

walk direkt nutzbar

Befehl kopieren

sethos walk;

swap direkt nutzbar

Befehl kopieren

sethos swap;

Spezielle Aktionsparameter

attack[travel=...] - Flugzeit des Projektils in Frames.

Befehl kopieren

sethos attack[travel=10];

aim[hold=...] - 0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot.

Befehl kopieren

sethos aim[hold=1];

aim[travel=...] - Flugzeit des Projektils in Frames.

Befehl kopieren

sethos aim[travel=10];

aim[weakspot=...] - 1 aktiviert diese Spezialvariante oder den Effekt, 0 deaktiviert ihn.

Befehl kopieren

sethos aim[weakspot=1];

Felder für Bedingungen

Keine speziellen Einträge dokumentiert.

Frames

Video-Credit: ange1o5
Zählung: Tabelle (Credit: ange1o5)

Hitlag-Daten

FähigkeitHaltezeitSkalierungDefense HaltDeployable
Aim-Head0.120.01falsetrue
FullAim-Head0.120.01falsetrue
ShadowpiercingShot-Head0.120.01falsetrue

AoE-Daten

FähigkeitFormZentrumOffset XOffset YRadiusFächerwinkelBox XBox YNotizen
N1BoxPrimaryTarget--0.5--0.11-
N2-1BoxPrimaryTarget--0.5--0.11-
N2-2BoxPrimaryTarget--0.5--0.11-
N3BoxPrimaryTarget--0.5--0.11-
Q-N1BoxPlayer----0.115This 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-1BoxPlayer----0.115This 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-2BoxPlayer----0.115This 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-N3BoxPlayer----0.115This 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.

Bekannte Probleme

Keine bekannten Probleme

Namen

  • sethos

Gültige Aktionen

FähigkeitErlaubtNotizen
attack-
charge-
aim-
skill-
burst-
low_plunge-
high_plunge-
dash-
jump-
walk-
swap-

Parameter

FähigkeitParameterBeschreibung
attacktravelProjectile travel time. Default 10 frames.
aimhold0 for Physical Aimed Shot, 1 for Fully-Charged Aimed Shot (default), 2 for Shadowpiercing Shot.
aimtravelProjectile travel time. Default 10 frames.
aimweakspotHit weakspot with aimed shot. Default 0 (false), 1 for true.

Felder

Keine Felder