Jump to content

Ordush

Elite user
  • Posts

    1178
  • Joined

  • Last visited

Everything posted by Ordush

  1. You are obviously using google translate. Copy paste his code without google translate.
  2. ofc. ? If you do a dungeon or a raid, notice that you can't hear any of the other players yelling "Spell is not ready yet". Trust me 90% of wow players mash keys. ?
  3. I didn't mean your post was necro, but that I replied to a necro post. I can see how those two things could get mistaken, sorry bad choice of words from my side. I've only had issues with the downspiralling when using a gather profile, if I was getting to high. It could probably be fixed by doing more Z moving. ? However, post stuff in the bug tracker instead of the forum if you want to get stuff fixed. These posts drown
  4. First of all, it's quite a necro post but I will however still add this. NEVER use the client downloaded from a servers site on that same server. It's very likely that the server has installed some kind of anti-cheat into the client they are hosting. The last part with the hang-up that is because of a bad profile, if you make your profiles go too high in the air over a herb it will try to get to the herb by flying in a 180 degree line, which is not possible, so it will get offset by 1 degree, which will make the bot turn it around, which will repeat itself. This is how the last video happens. So if you want it NOT to do that, go closer to the herb so it doesn't fly in a 180 degree line directly down to the herb. ?
  5. First of all UnitBuffName is something I added to my api. It's not native to the wow lua api. It's funny how stuff from my api keeps showing up on these forums, not sure where people are getting it from. Depending on what expansion you are on you shoudl use either UnitAura("Unit", "SpellName") or UnitBuff("Unit", index) or UnitDebuff("Unit", index)
  6. He already posted a method that works?
  7. You can't interact with released corpses
  8. That would be amazing man!
  9. Too bad. Do you have any suggestions for a workaround?
  10. Not without any coding knowledge
  11. Random randomNumber = new Random(); int iceArmorTimer = randomNumber.Next(15, 30); // Makes the int iceArmorTimer into a random number between 15 and 30
  12. This returns false if the target doesn't have Vampiric Touch Have been trying to make a workaround without luck. if ((ObjectManager.Target.GetBuffs(_VampiricTouch.Name).Any(a => a.Owner == ObjectManager.Me.Guid && a.TimeLeft < (1000 + ObjectManager.Me.GlobalCooldownTimeLeft + 1500)) || ObjectManager.Me.Guid != ObjectManager.Target.BuffCastedBy(_VampiricTouch.Name))) Nevermind lol the last code line i wrote just here works.
  13. Very nice!
  14. That is because there are some people on here that are trying to make more money by adding their stuff to all channels. That is not a bug in the forum or bad setup. It's simply the greed and misuse of some users.
  15. It is already grouped by expansion and by product type. Like Fightclass, Quester etc.
  16. No private servers below pandaria has sophisticated anti-cheat =P
  17. My plugin has it as an extra option if you look at screenshots. However it's a paid plugin. Not sure if there are any free ones. out there.
  18. That is not a bug lol It's a feature. And yes you can, you just need to put a delay between each sale. They implemented it because people were sharing addons on the forum that would delete all items in bag.
  19. I understand now what it is he wants. He wants both of them to mount up at the same exact time, and not get the second char to cast mount when the other char has cast it. He basically wants it to look like he is mutli-boxing. The only way you can do that is by using chat commands, reading from an external file etc. I'd suggest you take a look at chat commands it's somewhere here on the forum Then you make player A write in chat then cast mount player B cast mount if chat message. That way you will get as close as mounting at the same time as you can.
  20. Try reinstalling wrobot into a new folder, because party is supposed to auto mount up if leader does it.
  21. It was just an example, I'm pretty sure that Droidz reads from memory instead of using the lua function. Was just to explain what I meant. ?
  22. It would be awesome to have IsMine as optional for checking buffs in wotlk name, rank, icon, count, debuffType, duration, expirationTime, isMine, isStealable = UnitAura("unit", index or ["name", "rank"][, "filter"]) Example: If (ObjectManager.Target.BuffTimeLeft("Vampiric Touch", true) < 1000) Where the true is isMine I know I can manually just make a lua function to check it myself, but it would be nice to have built into the api. ?
  23. You need to look at the log in your bot not the output area of the dev tools.
×
×
  • Create New...