Jump to content

vanbotter

Members
  • Posts

    65
  • Joined

  • Last visited

Everything posted by vanbotter

  1. OK so today I check the bot and it has now picked up Orgrimmar on both characters. However, it doesn't seem to use it when travelling there. One of the bots has moved into Ashenvale and is using Splintertree post for its town, it's made numerous trips but it hasn't added that taxi to its database either yet. @Droidz please can you enlighten me on the logic behind that side of the bot? should it grab the flight master as it comes into range. He is currently set to 200 range and ticked to use taxi. Should it add to the database as soon as its in range? does wrobot have to be restarted for it to reload the db? Thanks Adam
  2. I dont want them in range though, i want to be physically in combat before using it ? could try some kind of <10 yrd range though
  3. Thanks @matenia I'll give that a whirl! So neither of the 2 options i linked are actually "in combat"? they are both referring to in combat or "about to be in combat"? strange.
  4. Hi I want the bot to only cast Bloodrage if he is in combat. however, even with these 2 options. "combat only = true" and a spell condition of "me in combat = true" he still casts it when he's running around and ready to engage. This hinders the warriors ooc healing ability and stops him using charge. Am i missing something here? Thanks
  5. Thanks @Droidz He does sit with that, although he sits and them either immediately stands up and goes to fight (on low hp still) or sits and then stands up immediately and waits out the rest of the regen. currently 45% to 95% I guess i could change the sleep(1000) to be sleep(17000) but then he'd over rest! A better method?
  6. Thanks for the reply Droidz. I do have a LOT of addons so here's what I tried: 1) Disabled all addons. 2) Logged back in wow 3) Ran to Org and stood 2 yards from the flightmaster, targeted him. 4) Launched bot program, started quester. It checked all the paths and ran down the flight master tower and is currently walking back to the barrens! ha. I've left him to it, he seems he wants the exercise. I can see it is not in his DB still. Interestingly he does have the south barrens flight master in his database even though this particular character has not visited it yet. My 22 lock has 4 flight paths, my warrior has 2 flight masters. Just xroads and org. Do they share the database? can i not upload a full vanilla database somehow?
  7. Hi Very new to this, so far levelled a lock to 20 and a warrior to 10. Working great. 1st issue is with vendors and food. I have my guy trying to buy shiny red apples. The innkeeper in xroads is the guy that sells them. My bot however goes to repair, goes to vendor and seems to randomly choose a vendor in xroads with who to try buy food/water. ofc, since only the innkeeper has the food he needs, he never buys any, he never seems to goto this one. How does the bot know which vendor to use to buy the correct food? is there not a db somewhere so he knows which vendors sell which food types? how would he ever know which one to use to buy the right food when auto add npcs is turned on? second issue i have is the warriror just standing idle to regen when out of combat. Looks very botty. I'd like there to be an option to sit for regen considering it increases health regen by 33% in Vanilla and warriors regen is already (0.8x spirit)+6 so quite high. I saw someone post you can make a plugin by simply copying a free one and putting this as the loop... I can't get this to work, i don't know anything about C programming but i edited an existing .cs file and stuck this in but it just errors. Thanks in advance! if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } This is what my whole file looks like: using System; using System.IO; using System.Media; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager; using wManager.Plugin; using wManager.Wow.Helpers; using wResources; public class Main : IPlugin { if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } }
  8. Hi I'm sure this has probably been answered but I cannot find it specifically. I have 4 flight masters unlocked, xroads, TB, south barrens and Org. I can see this when I goto a flight master. However, my Taxi DB is missing the org flight master. I have the same thing on 2 toons, lvl 15 and 20. Both of them are in the barrens grinding and every time they need a trainer they walk to Org. They walk almost past the org flight master to get to their class trainers. How do i get the org taxi into the taxi DB and why is it missing in the first place? Thanks in advance! Adam Edit: They both have "use taxi" ticked in general settings and a flight master discover range of 3000
  9. Hi Very new to this, so far levelled a lock to 20 and a warrior to 10. Working great. One issue i do have is the warriror just standing idle to regen when out of combat. Looks very botty. I'd like there to be an option to sit for regen considering it increases health regen by 33% in Vanilla and warriors regen is already (0.8x spirit)+6 so quite high. I saw someone post you can make a plugin by simply copying a free one and putting this as the loop... I can't get this to work, i don't know anything about C programming but i edited an existing .cs file and stuck this in but it just errors. Thanks in advance! if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } This is what my whole file looks like: using System; using System.IO; using System.Media; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager; using wManager.Plugin; using wManager.Wow.Helpers; using wResources; public class Main : IPlugin { if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } }
×
×
  • Create New...