Exemplo n.º 1
0
 private void SpellDetector_OnSpellStopCast(BattleRight.SDK.EventsArgs.SpellStopArgs args)
 {
     if (Game.IsInGame && LocalPlayer.Instance.CharName == "Jumong")
     {
         LocalPlayer.EditAimPosition = false;
     }
 }
Exemplo n.º 2
0
 private static void SpellDetector_OnSpellStopCast(BattleRight.SDK.EventsArgs.SpellStopArgs args)
 {
     if (args.Caster.Name != LocalPlayer.Instance.Name)
     {
         return;
     }
     _isCasting = false;
     _castingId = 0;
     if (_shouldUse)
     {
         LocalPlayer.EditAimPosition = false;
     }
 }