Jump to content

vanbotter

Members
  • Posts

    65
  • Joined

  • Last visited

Reputation Activity

  1. Like
    vanbotter got a reaction from eeny in Demon / Affliction lock 1-60 by Eeny   
    Heya Eeny

    Great profile, there is 1 thing i can see missing... can we have the voidwalker cast suffering please when there's 2 mobs within 10 yards of the player? or even if just when there's 2 mobs would be nice so he tanks them both ?

    Ta

    VB
     
    Edit:
     
    I added suffering into the multi mob combat section and defined it at the top, seems to work, although void walker is often very low on mana so can't really cast it.
     
            //if one or more mobs on us and we're fairly healthly, target & pet attack
            if (EnemiesAttackingMeCount() >= 1 && ObjectManager.Me.HealthPercent <= 60 && ObjectManager.Pet.IsAlive) {
                //Target closest enemy attacking us
                var closestEnemy = ObjectManager.GetWoWUnitHostile().Where(e => e.IsAttackable && e.IsTargetingMe).OrderBy(e => e.GetDistance2D).FirstOrDefault();
                if (closestEnemy != null) {
                    Logging.Write("Targeting closest enemy, lets see what happens");
                    Interact.InteractGameObject(closestEnemy.GetBaseAddress);
                    System.Threading.Thread.Sleep(400);
                    Lua.LuaDoString("PetAttack();");    
                    Suffering.Launch();
                    System.Threading.Thread.Sleep(700);
                }        
            }
  2. Thanks
    vanbotter got a reaction from Marsbar in [Free] qObjMarker   
    Any idea what this error means? It does this as soon as I close the settings for the plugin, before i press play on the bot...


  3. Like
    vanbotter reacted to Marsbar in [Free] qObjMarker   
    Thanks buddy, I'm glad you've been enjoying my other plugin, this actually has that same functionality you're suggesting. It draws a red line to players of the opposite faction and they're marked in orange. It doesn't have the search radius though as generally the draw distance on private servers is quite low.
  4. Thanks
    vanbotter got a reaction from Marsbar in [Free] qObjMarker   
    This is brilliant! Great to use on my 60's! I don't like to bot on them but anything like this that helps turn wRobot more useful at 60 is great!

    I'm going to be cheeky and ask if you could also implement player tracking as an option in the settings?
    This draws lines from yourself to all enemy players within radius of "AggroMonitorSetting" It draws green lines from player to enemies and red lines from enemies to their targets... so you know if they're targetting you. 
    If not, no worries, but would be nice to be able to run just 1 plugin rather than 2 ?
     
     
        public void Monitor()     {         try         {             if (Conditions.InGameAndConnectedAndAliveAndProductStarted && _isLaunched)             {                 foreach (WoWUnit Mob in ObjectManager.GetObjectWoWPlayer().Where(x => x.IsAlliance && x.GetDistance2D < AggroMonitorSettings.CurrentSetting.SearchRange && ObjectManager.Target.TargetObject != null))                 {                     Radar3D.DrawCircle(ObjectManager.Target.Position, 1f, System.Drawing.Color.Red, true);                     Radar3D.DrawLine(Mob.Position, Mob.TargetObject.Position, System.Drawing.Color.Red);                     Radar3D.DrawCircle(Mob.TargetObject.Position, 0.5f, System.Drawing.Color.LightBlue, false);                     Radar3D.DrawLine(Mob.Position, ObjectManager.Me.Position, System.Drawing.Color.Green);                 }             }         }         catch         {             Logging.Write("Error");         }     }  
  5. Thanks
    vanbotter got a reaction from Marsbar in [Product] Traveller   
    Works perfectly now! thank you very much @Marsbar
    So many times i have to run my bots around manually because they've failed to grab flight masters etc. Always been a huge annoyance that it's botted and im having to run manually around with em. 
    Can't wait to see you add the other functionality like class trainer types etc ? 
    Amazing work. 
    Double click on the map to travel, which is built in, is useless because 1) it stops to fight and doesn't resume travel, and 2) if you click on a place it can't get, it gets as near as possible and runs into a wall repeatedly!
     
  6. Thanks
    vanbotter reacted to Marsbar in [Product] Traveller   
    No, it's encrypted so it goes off to get the code. Just uploaded one more version before I'm lost, could you retest?
  7. Thanks
    vanbotter got a reaction from eeny in 1-60 Enh Shaman lvling by Eeny   
    FC's aren't in control of looting mobs. Check your Wrobot settings. FC's don't affect things like looting or drinking etc.
    Ta
     
     
  8. Like
    vanbotter got a reaction from eeny in 1-60 Enh Shaman lvling by Eeny   
    Modified a bit which suits me better. Uses Lesser Healing Wave rather than Healing wave... getting a healing wave off when fighting beasts as enhancement is hard, especially Ghost Wolf Alphas that hit crazy fast. 
    Would recommend setting Healing Wave as food until you get LHW and use that. 
    Bot has no downtime from my experience, If it has a lot of mana it does more dps (Earth shocks and LS), on the next fight if it has less mana it plays more conservative so the fight after it is back to full dps mode. 
    Thanks @eeny for the original. 
     
     

    Shaman_Enh_lvling.xml
×
×
  • Create New...