Jump to content

camelot10

Elite user
  • Posts

    838
  • Joined

  • Last visited

Posts posted by camelot10

  1. 3 hours ago, Droidz said:

    Hello, the more easy way is to dispose fightclass:

    
    wManager.Wow.Helpers.CustomClass.DisposeCustomClass();
    
    wManager.Wow.Helpers.CustomClass.LoadCustomClass();

    You can also try to cancel spell state (but this will works only with xml fightclasses): 

    
            robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable)
            {
                try
                {
                    var s = state as wManager.Wow.Bot.States.SpellState;
                    if (s != null)
                    {
                        if (s.Spell.Name.StartsWith("Call Pet"))
                            cancelable.Cancel = true;
                    }
                } catch { }
            };

     

    main problem is there is mob in void who can agro your character and required fightclass. if load fc on fightstart then it start summoning pet, void kill pet, repeat summoning pet.

    wManager.Wow.Helpers.CustomClass.LoadCustomClass();

     

     

     

  2. 3 hours ago, Skunkz said:

    12:06:36 - [World Quests]  quests=6 for zone=1033 continent=1007 : 44801,44799,42781,41697,43932,44939
    12:06:53 - [Fight] Player Attacked by Scinde-âme garde-courroux (lvl 110)
    12:06:59 - [Fight] Player Attacked by Maître de guerre de la Garde crépusculaire (lvl 110)
    12:07:04 - [Looting] Loot Scinde-âme garde-courroux
    12:07:11 - [Fight] Player Attacked by Loyaliste de Suramar (lvl 110)
    12:07:21 - [Looting] Loot Loyaliste de Suramar
    12:07:37 - [World Quests]  quests=6 for zone=1033 continent=1007 : 44801,44799,42781,41697,43932,44939
    12:08:37 - [World Quests]  quests=6 for zone=1033 continent=1007 : 44801,44799,42781,41697,43932,44939
    12:09:01 - [Fight] Player Attacked by Goinfre langue-de-wyrm (lvl 110)
     

    Kep bloqued here too ...

    what? dont understand whats problem is. pm me

  3. @Droidz

    i know i can disable fight by code Conditions.ForceIgnoreIsAttacked = true;

    but, this will ignore fighting with mobs. fightclass still running and sometimes contains spells/casts that can break questing behaviour, especialy "out of combat" spells.

    example this quest http://www.wowhead.com/quest=42834/intense-concentration any mount or stealth or form will remove quest item and you need to gather it again.

    is there any possibility to disable fighclass and/or fightclass state from running ? and enable it again

     

×
×
  • Create New...