Jump to content

eeny

Elite user
  • Posts

    987
  • Joined

  • Last visited

Reputation Activity

  1. Like
    eeny got a reaction from likon in Druid Fightclass problem   
    Got sick of this - used up writing the fight class in c#.  now it works a charm
     
     
  2. Thanks
    eeny got a reaction from wrobotu in Can i skip steps in the Profile?   
    Product settings > profile settings(enable disable steps) > untick all the steps you completed.
     
    start the bot
  3. Like
    eeny got a reaction from randomorc in Is there any way to speed up wrobot?   
    In settings / advanced setting there should be latency""... believe its 300-700 default?  Reduce hat number down to around your game latency wand watch the bot for a bit.  You may see it start to skip looting / skinning in which case bump it back up.. try find a good spot.
     
     Quester.Bot > Pulse(): System.NullReferenceException: Object reference not set to an instance of an object.
       at Quester.Bot.Bot.Pulse(Boolean loadSettingsProfile, String profile)
    You are loading the profile under the wrong type. AKA- you are trying to load a grind / farming profile in quester mode.  check what mode the file should be loaded under and start it with that mode.
  4. Like
    eeny got a reaction from Pudge in Snippets codes for quest profiles   
    Use item on dead mob ( after looting)
    Use like the use item on weakened mob- you need to modify the item ID and Quest ID for your quest.
     
     
    Thread t = new Thread(() => { uint itemId = 9618; int questId = 25336; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsDead) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start();  
  5. Like
    eeny got a reaction from loobrush in Crazy idea... Duplicate/Read Zygor's guide   
    there is a Zygor > Wrobot profile converter... Just after you convert you need to program the quest order and any specific bot action's...
    Its been attempted and its been found that start from scratch using the guide as a guide is far more time effective.
  6. Like
    eeny got a reaction from Gargaroth95 in Get quest item from grinding mobs   
    I assume you want the bot to grind mobs till it finds the item that starts a quest. 
     take a look at the below profile.. The first pulse is a kill and loot, however the <iscomplete> condition is:
          <IsCompleteCondition>return ItemsManager.GetItemCountById(113578) &gt;= 240;</IsCompleteCondition>
    What that does is checks you bags for ITEMID- in this case 113578 and if its bigger than or equal to 240 the quest is complete.
    All i would do is change the ITEM id to the quest start object and set value to =1.  the next quest profile step will be to "pick up the quest" .  In the Quest you need to set true "pickup from item" and add the item ID. ( pic attached).
     
    Without doing it for you i cant give you much else- hope that helps
     
     

  7. Thanks
    eeny got a reaction from Stresse in [Question] How To Check If Daily Quest Is Available?   
    Why not just use runcode to interact with all potential quest givers and accept any quest they have, then once you have spoken to all and collected the 3 quests use "ifHasQuest" steps to pulse the quests you picked up?
  8. Like
    eeny got a reaction from NiteKat in Can't get Hunter to use Ranged Attack   
    thats because the FC is trying to use a skill outside of the range... put the Me.target.distance setting to = your rage (in yds) and it should stop shuddering and just go to ur FC range and start attacking.
     
    you may set a range in your FC... however the way wrobot works is if u have a target outside range.. it will start tying spells.  Sometimes its good like hunters mark / pet attack, sometimes bad like what you are seeing.  All part of optimising a FC.
     
     
  9. Like
    eeny got a reaction from Dreamful in Can't get Hunter to use Ranged Attack   
    thats because the FC is trying to use a skill outside of the range... put the Me.target.distance setting to = your rage (in yds) and it should stop shuddering and just go to ur FC range and start attacking.
     
    you may set a range in your FC... however the way wrobot works is if u have a target outside range.. it will start tying spells.  Sometimes its good like hunters mark / pet attack, sometimes bad like what you are seeing.  All part of optimising a FC.
     
     
  10. Like
    eeny got a reaction from Serrec in Grind profile creation- 5 mins   
    I get PM'd about this a lot- Video should make it easier.
     
  11. Like
    eeny got a reaction from gramdeck in How to make casters run to mob and auto attack when low mana   
    depends on the version of wow  you play... take a look at other FC's that use it and implement it in yours.
  12. Like
    eeny got a reaction from gramdeck in How to make casters run to mob and auto attack when low mana   
    IIRC Droidz put in an option where is a FC has <25 yd range it will trigger auto attack and if its > 25 yds it wont trigger it.
    You would need to write the FC in C# and put a range clause in it.. If you are still keen take a look at my vanilla Hunter FC and look at the range function and change the options to be Mana driven so if you have  <10% mana the range is 5 yds so the bot auto attacks.
     
    Ideally... gear / set the bot up so it wont go OOM or set up wanding for low mana situations.
  13. Like
    eeny reacted to Droidz in Searing Gorge Gate Bug   
    I think I'll close the default tunnel (you can use it again with an offmeshconnection)
  14. Like
    eeny got a reaction from Macro in Request: PLUGIN to use health pots   
    Hey all,
     
    im starting to play around with pluggins but this ones a bit above me at this time.  I would like a pluggin to use potions.  I know this action can be written into the fight class- however i think this is more easily done as a pluggin. 
    The pluggin would only activate if
    A:- bot actually HAS a potion in its inventory B: bot is below a configurable % of health potions i would like used in the pluggin
    http://www.wowhead.com/spell=2330/minor-healing-potion
    http://www.wowhead.com/spell=2337/lesser-healing-potion
    http://www.wowhead.com/spell=3447/healing-potion
    http://www.wowhead.com/spell=7181/greater-healing-potion
    http://www.wowhead.com/item=3928/superior-healing-potion
    http://www.wowhead.com/spell=17556/major-healing-potion
    http://www.wowhead.com/spell=28551/super-healing-potion
    http://www.wowhead.com/item=33447/runic-healing-potion
     
       <!-- Basic Items: Potions, Health  (ordered by level to use) -->
           <Item Name="Minor Healing Potion" Entry="118" />
           <Item Name="Lesser Healing Potion" Entry="858" />
           <Item Name="Discolored Healing Potion" Entry="4596" />
           <Item Name="Healing Potion" Entry="929" />
           <Item Name="Greater Healing Potion" Entry="1710" />
           <Item Name="Superior Healing Potion" Entry="3928" />
           <Item Name="Combat Healing Potion" Entry="18839" />
           <Item Name="Superior Healing Draught" Entry="17349" />
           <Item Name="Major Healing Potion" Entry="13446" />
           <Item Name="Major Healing Draught" Entry="17348" />
           <Item Name="Super Healing Potion" Entry="22829" />
           <Item Name="Argent Healing Potion" Entry="43531" />
           <Item Name="Auchenai Healing Potion" Entry="32947" />
           <Item Name="Bottled Nethergon Vapor" Entry="32905" />
           <Item Name="Crystal Healing Potion" Entry="33934" />
           <Item Name="Healing Potion Injector" Entry="33092" />
           <Item Name="Rulkster's Secret Sauce" Entry="32763" />
           <Item Name="Volatile Healing Potion" Entry="28100" />
           <Item Name="Fel Regeneration Potion" Entry="31676" />
           <Item Name="Major Combat Healing Potion" Entry="31838" />
           <Item Name="Major Combat Healing Potion" Entry="31839" />
           <Item Name="Major Combat Healing Potion" Entry="31852" />
           <Item Name="Major Combat Healing Potion" Entry="31853" />
           <Item Name="Endless Healing Potion" Entry="43569" />
           <Item Name="Resurgent Healing Potion" Entry="39671" />
           <Item Name="Runic Healing Potion" Entry="33447" />
           <Item Name="Runic Healing Injector" Entry="41166" />
  15. Like
    eeny got a reaction from Findeh in Teleported to GM Island, bot did not close   
    As someone who has taken " a few"  trips to the white room on LB / ND---once you get ported there you are done...The GM has usually made their choice by then.  
     
    Not recently, but on more than one occasion I have had GM's drag mobs onto my bots - who fired off an alert.  I pause the bot window to fight a bit, only to get get ported to the white room, have a 10 minute conversation with the GM and still the acct got banned. 
    IF you are AFK botting, an automated "wtf mate" is not going to get the GM to send you on your way.
  16. Like
    eeny got a reaction from tonycali in Suggestion: Add option to set vendor for profile   
    this request has been brushed on time and time again... i still want it.
    I know and agree the quest profile path will solve the issue.  However for 90% of people, they are only ever going to make a grind / gather profile as quests are too difficult...
    The ability to hard code vendors into gatherer / grinder profiles with a simple checkbox is well overdue,
  17. Thanks
    eeny got a reaction from Grevlen in Combine-Vanilla plugin is not opening clams   
    Has the ode also
    I use the code in a quest file Soutridge Beach Azshara.xml  And it works a damn charm- just need to change the itemID in the runcode pulse so its opening the correct items and looting all.
  18. Thanks
    eeny got a reaction from pasdoy in Off pathsfinder   
    @Droidz its like the pathfinder server is responding, however it cannot do any complex movement, is generating a bunch of 0 yd movements and blacklisting everything.  Resorting back to no pathfinder works,however that brings its own problems.
    This log starts with no pathfinding, then i turn it back on a few mins in.
    20 Aug 2018 13H19.log.html
  19. Like
    eeny reacted to roneo in Suggestion: Add option to set vendor for profile   
    Sorry to necro this post but I also am running into problems because of this. Making a quest profile for every little grind profile you want to make is just unnecessary, @Droidz can you please add an option in the bot we can select that will make the profile only use the npcs in the grinding profile?
  20. Like
    eeny got a reaction from Mrzug in Northdale Bans?   
    Im Grinding a lot, Questing is too hard with the amount of people competing for mobs.  I have looked at my bots thrashing between tagged mobs in quest area's and have opted that grinding in a quiet spot may be slower- however my ban rate should be lower.
     Because im grinding, each 2-3 level's I actually play the bot to do a quest / dungeon to mix things up.  No bans yet.
    Re-spawn rates is a blessing or a curse depending on the class.  My Hybrid bots (Shams / pals / priest / druids) who run mana conservative, heal prioritized FC's have been able to pull through chain mobs fairly well.  With passable gear they have been pulling very nice EXP / hour.
    Meanwhile locks / hunters have been managing in most cases, however sometimes after the 5th mob in a row they can come undone. 
    Mages, rogues and warriors i have found to be borderline un-viable for the time being.  Too many times i have seen my rogue / warrior  bots get stuck at the same spawn point with the same 1-2 mobs continually respawning on top of them till they die.
     
    For the next few weeks im lvling shams / paladins/ priests to get some cash + gear together. When things settle down il look into other classes. 
  21. Like
    eeny got a reaction from limpfraeky in Hunter - Won't Attack Mobs & Ammo Help   
    Also i will admit that FC was a bit 'meh" was put up so people could build on it when they use it. 
     
    With the loop during combat the smoothmove plugin makes a very vocal appearance and may stop the bot turning and shooting during combat so try disable that.
    With the Ammo thing- was never an objective of the fight class.  Look at human master plugin or write profiles that buy ammo for you.
  22. Like
    eeny reacted to maylu in Autoattack Stutter with Luna Unit Frames   
    Turn off your add-ons. If you don't want to re-enable them each time, the easiest method is to create a separate WoW directory for botting.
  23. Thanks
    eeny got a reaction from Cflower in Automation?   
    Automation is a Wrobot 'mode' which can be selected on the main tab.
    Unlike quester / grinder / gatherer automation does  not need a profile to work, just run the bot to the location you want, set a radius and it will kill and gather stuff if you specify.  you will still need a fight class.
    Automation is helpful if you are playing and need to afk for 5-10.. just turn on automation and the bot will get some kills for you.  I wouldnt use it for a long time, making a profile is better.
  24. Haha
    eeny got a reaction from tonycali in Pathfinder problem again?   
    "refund"
    -Guy's who have been using bot for last 6 months.
  25. Like
    eeny reacted to KDiddy in Pathfinder problem again?   
    FYI - it's happening again right now...
×
×
  • Create New...