Ejemplo n.º 1
0
 public static void SetSummonFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Summon;
 }
Ejemplo n.º 2
0
 public static void SetPushFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Push;
 }
Ejemplo n.º 3
0
 public static void SetShapeshiftFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Shapeshift;
 }
Ejemplo n.º 4
0
 public static void SetHeadTrue(FHit f)
 {
     f.CurFlags |= Flags.Head;
 }
Ejemplo n.º 5
0
 public static void SetHeadFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Head;
 }
Ejemplo n.º 6
0
 public static void SetResistFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Resist;
 }
Ejemplo n.º 7
0
 public static void SetParryTrue(FHit f)
 {
     f.CurFlags |= Flags.Parry;
 }
Ejemplo n.º 8
0
 public static void SetResistTrue(FHit f)
 {
     f.CurFlags |= Flags.Resist;
 }
Ejemplo n.º 9
0
 public static void SetDodgeFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Dodge;
 }
Ejemplo n.º 10
0
 public static void SetStunTrue(FHit f)
 {
     f.CurFlags |= Flags.Stun;
 }
Ejemplo n.º 11
0
 public static void SetFatalityTrue(FHit f)
 {
     f.CurFlags |= Flags.Fatality;
 }
Ejemplo n.º 12
0
 public static void SetSummonTrue(FHit f)
 {
     f.CurFlags |= Flags.Summon;
 }
Ejemplo n.º 13
0
 public static void SetShapeshiftTrue(FHit f)
 {
     f.CurFlags |= Flags.Shapeshift;
 }
Ejemplo n.º 14
0
 public static void SetPushTrue(FHit f)
 {
     f.CurFlags |= Flags.Push;
 }
Ejemplo n.º 15
0
 public static void SetStunFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Stun;
 }
Ejemplo n.º 16
0
 public static void SetParryFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Parry;
 }
Ejemplo n.º 17
0
 public static void SetFatalityFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Fatality;
 }
Ejemplo n.º 18
0
 public static void SetBlockFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Block;
 }
Ejemplo n.º 19
0
 public static void SetDodgeTrue(FHit f)
 {
     f.CurFlags |= Flags.Dodge;
 }
Ejemplo n.º 20
0
 public static void SetCritFalse(FHit f)
 {
     f.CurFlags &= ~Flags.Critical;
 }
Ejemplo n.º 21
0
 public static void SetBlockTrue(FHit f)
 {
     f.CurFlags |= Flags.Block;
 }
Ejemplo n.º 22
0
 public static void SetCritTrue(FHit f)
 {
     f.CurFlags |= Flags.Critical;
 }