Jump to content

Lord

Members
  • Posts

    133
  • Joined

  • Last visited

Posts posted by Lord

  1. For example; i'am trying to add the spell Light of T'uure to the fightclass.

    In first part i have that 

    Spoiler

            // Spells:

            private Spell _bodyandmind;
            private Spell _heal;
            private Spell _flasheal;
            private Spell _serenity;
            private Spell _resurrection;
            private Spell _massresurrection;
            private Spell _prayerofhealing;
            private Spell _purify;
            private Spell _prayerofmending;
            private Spell _renew;
            private Spell _sanctify;
            private Spell _DivineHymn;
            private Spell _Halo;
            private Spell _GuardianSpirit;
            private Spell _HolyFire;
            private Spell _Smite;
            private Spell _Chastise;
            private Spell _CircleofHealing;
            private Spell _Light of T'uure;

            public PriestHoly()
            {
                _bodyandmind = new Spell("Body and Mind");
                _serenity = new Spell("Holy Word: Serenity");
                _heal = new Spell("Heal");
                _flasheal = new Spell("Flash Heal");
                _resurrection = new Spell("Resurrection");
                _massresurrection = new Spell("Mass Resurrection");
                _prayerofhealing = new Spell("Prayer of Healing");
                _purify = new Spell("Purify");
                _prayerofmending = new Spell("Prayer of Mending");
                _sanctify = new Spell("Holy Word: Sanctify");
                _renew = new Spell("Renew");
                _DivineHymn = new Spell("Divine Hymn");
                _Halo = new Spell("Halo");
                _GuardianSpirit = new Spell("Guardian Spirit");
                _CircleofHealing = new Spell("Circle of Healing");
                _Light of T'uure = new Spell("Light of T'uure");
     

    Then : 

    Spoiler

    {
                if (!Conditions.InGameAndConnectedAndAlive || ObjectManager.Me.IsMounted || ObjectManager.Me.IsStunned || ObjectManager.Me.Silenced)
                {
                    return;
                }

                if (!ObjectManager.Me.InCombat && !ObjectManager.Me.IsMounted )
                {
                    BodyAndMind();
                    Resurrection();
                    PrayerofHealing();
                    FlashHeal();
                    Renew();
                    Purify();
                    CircleofHealing();
                    FollowTank();
                    return;
                }
                // if (!Conditions.InGameAndConnectedAndAlive || ObjectManager.Me.IsMounted || !ObjectManager.Me.InCombat) // || !ObjectManager.Me.InCombat return;

                if (GuardianSpirit()) return;
                if (DivineHymn()) return;
                if (Sanctify()) return;
                if (Halo()) return;
                if (Serenity()) return;
                if (CircleofHealing()) return;
                if (Light of Tuure()) return;

                if (PrayerofHealing()) return;
                if (PrayerofMending()) return;

                if (FlashHeal()) return;
                if (Renew()) return;
                if (Heal()) return;
                if (Purify()) return;
                if (BodyAndMind()) return;

                if (FollowTank()) return;

                if (Chastise()) return;
                if (HolyFire()) return;
                if (Smite()) return;
            }
            #endregion

    And finally the spell himself : 

    Spoiler

      #region Light of T'uure
            bool Light of T'uure()
            {
                if (!_Light of T'uure.KnownSpell) return false;
                if (!_Light of T'uure.IsSpellUsable) return false;
                if (PriestHolySettings.CurrentSetting.PercentLightofTuureHealth == null) return false;
                int HandsHealth = PriestHolySettings.CurrentSetting.PercentLightofTuureHealth;
                if (HandsHealth == 0) return false;

                var members = getPartymembers().Where(o => o.IsValid
                    && o.IsAlive
                    && o.HealthPercent <= HandsHealth
                    && !TraceLine.TraceLineGo(o.Position)).OrderBy(o => o.HealthPercent);
                if (members.Count() > 0)
                {
                    var u = members.First();
                    WoWPlayer healTarget = new WoWPlayer(u.GetBaseAddress);
                    if (healTarget.IsAlive || healTarget.HealthPercent > 0)
                    {
                        while (TraceLine.TraceLineGo(healTarget.Position))
                        Interact.InteractGameObject(healTarget.GetBaseAddress, false);
                        _Light of T'uure.Launch();
                        return true;
                    }

                }
                return false;
            }
            #endregion

    ( in last part i have a part with the option of the spell, but pretty sure the mistake isnt coming from here )

     

    The obvious point i see is because of the ' that i missplaced. When i use something like sublime text ( that i use like a noob ), i see that the color of the line changing after the ' of Light of T'uure. But i need somewhere to put it no ? because its the spell name ingame, how the fightclass will find it if i can't put it 

  2. Hey mates :)

    I'am using a fightclass for Holy priest using Wrotation in raid / group.
    My issue is that the fightclass always target a partymember ( always the same ), and don't want me to target anything else. This happen when i'am not in fight, & so the Wrotation isnt started.. 
    Look like a line from the fightclass targeting a party member, but i can't find it :'( 
     

     

    Here is the FC in question

     

  3. Welcome back on Legion Eeny :)


    I've myself experimented the "vault" of Elysium : a room with a chair & a rat ( Rat's guild was " we know more than you think" ). i was botting multiple account, the one teleported in that room got ban 10 sec after the teleport, the other accounts few hour after that :(

  4. Hey mates ! 

    I'am trying to do a Healing Holy priest fightclass. 
    I can't find the way to put condition for healing AOEs

    I'am not good in LUA or C#, so if anyone can help :)

    For example, this fightclass is kinda rocking, but i can't tweak it beceause i don't knw shit in programming .. If anyone can improve it for me, i'am ready to pay the price. Or better if someone could learn me how to tweaj kind of fightclass .. ( i'am ready to give some money too :D for a little of your time & your knowledge :D )
     

    Thanks

     

  5. Is there a way that rotation predict fight actions ? Like in MM raid , for the heal cd rotation between , a brain is more efficient than a rotation ( let's say that X target have debuff That they shouldn't have , raid leader call you to do Y action , rotation will not handle ) 

    For a DPS on Krosus MM for example , ofc a rotation will do great , but for heal too ? :) 

  6. Hey pals ! 

    I'am actually looking forward to level my next alt as a healer. I'am playing PVE vHL (by hand ofc), 10/10M clean

    My question is : Do you think a very nice fightclass would do the job (healing) ? Like using the main spell automatized by wrotation, & using CD by hand with a stopcast macro ? Will it be more efficient than a good player with mouseover macro ?

    I see some issue; for example, how to do that my tranquility CD, wich is used by my own, don't get interrupt by the wrotation ? 

     

    If anyone is playing HL ( HM / MM ) with wrotation, could he give me some feedbacks ? 

     

  7. When i try to update wrobot, i got this error message : 

     

    22:22:29 - error: System.Net.WebException: Une exception s'est produite lors d'une requête xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx car il est en cours d'utilisation par un autre processus.
       à System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       à System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
       à System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
       à System.Net.WebClient.DownloadFile(Uri address, String fileName)
       --- Fin de la trace de la pile d'exception interne ---
       à System.Net.WebClient.DownloadFile(Uri address, String fileName)
       à System.Net.WebClient.DownloadFile(String address, String fileName)
       à UpdateManager.UpdateManager.BioqemutaneUkFio()
    22:22:29 - Update file: Bin/wManager.dll

     

     

  8. Hello !

    Bot seems to not understand that Vanilla ghost wolf is a casted spell, so he decide that he is stuck ( but he is actually casting it .. ), so straf & jump to avoid the "wall" .. 

    [F] 01:12:22 - [Spell] Cast Ghost Wolf (Ghost Wolf)
    [N] 01:12:22 - [MovementManager] Think we are stuck
    [N] 01:12:22 - [MovementManager] Trying something funny, hang on
    [D] 01:12:23 - [MovementManager] Avoid wall: StrafeLeft

    How to deal with that ? :(

  9. Same issue without addon
     

    22:26:24 - [ToTown] Vendor found Jahan Hawkwing
    22:26:24 - [ToTown] Repair items
    22:26:26 - [ToTown] Sell items (try 1)
    22:26:29 - [ToTown] Go to vendor Jahan Hawkwing (Repair)
    22:26:30 - [ToTown] Vendor found Jahan Hawkwing
    22:26:30 - [ToTown] Repair items
    22:26:31 - [ToTown] Sell items (try 1)
    22:26:34 - [ToTown] Go to vendor Jahan Hawkwing (Repair)
    22:26:35 - [ToTown] Vendor found Jahan Hawkwing
    22:26:35 - [ToTown] Repair items
    22:26:36 - [ToTown] Sell items (try 1)

     

  10. Hello ! 

    I'am looking to build a fightclass for my druid.
    I'am struggling with the bearform. Once the character is in form, you can't cast anything like heals or buffs unless you unclick your form. Is they anyway to put the bot to do that ?
    I tried just put buff & in combat in condition, but he bear form for ever & don't get it off ( Logic )
    Help :ph34r:

  11. 5 hours ago, BodyU said:

    No offence but use a little more of ur mind, farm for days fjarn, farm for days starlight, farm for days aethril. U get the point. If u cant sell them all, MAKE FLASKS.

    This is working when u have maximum 2 bots. Try to handle 10 bots + crafts flasks for those 10 bots ^^ 
    My solution is to find a player / guild with high need, & to deal directly with them, or to dispatch items on many banks & sell with differents name 

×
×
  • Create New...