Everything posted by Ordush
-
endless.gg ?
They don't have any anti-cheat it's pure reports
-
Ban hammer - Frostmourne
My best guess is that a GM randomly came upon your char. Bots are dead give away.
-
Ban hammer - Frostmourne
People get banned on that server everyday it's definitely not detected. I have been botting there since day 1. Still 0 accounts banned.
-
sell items (specific vendor and specific time )
You are obviously using google translate. Copy paste his code without google translate.
-
Fightclasses & Stuns
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. ?
-
Plants don"t touch the ground
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
-
Plants don"t touch the ground
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. ?
-
If unitBuffName
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)
-
How to cast revive once?
He already posted a method that works?
-
How to cast revive once?
You can't interact with released corpses
-
How to cast revive once?
no
-
Quester Parallels - Combine Target Entry
That would be amazing man!
-
Quester Parallels - Combine Target Entry
Too bad. Do you have any suggestions for a workaround?
-
How to randomize a spell ?
Not without any coding knowledge
-
Does warmane IP ban if caught ?
Ofc.
-
How to randomize a spell ?
Random randomNumber = new Random(); int iceArmorTimer = randomNumber.Next(15, 30); // Makes the int iceArmorTimer into a random number between 15 and 30
-
Add optional IsMine to UnitBuff wotlk+
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.
-
Add optional IsMine to UnitBuff wotlk+
Very nice!
-
Future of wrobot?
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.
-
Future of wrobot?
It is already grouped by expansion and by product type. Like Fightclass, Quester etc.
-
endless.gg ?
No private servers below pandaria has sophisticated anti-cheat =P
-
FishingBot cannot loot BOP items
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.
-
wrobot keep disconnecting wow
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.
-
Detect if Target is mounting up
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.
-
Detect if Target is mounting up
Try reinstalling wrobot into a new folder, because party is supposed to auto mount up if leader does it.