Everything posted by Zan
-
Horde BloodElf Quester 1-110 Demo By Traxacon
-
Buff recognition
Yes the ! makes it false
-
Buff recognition
!ObjectManager.Me.TargetObject.HaveBuff (1111) Or this for targets around you u <= !u.HaveBuff(1111)
-
Game is updated but i get game version incorrect error
7.3.2.25383 is the old WoW version that works with WRobot. The new version is 7.3.2.25455. I think this was the version that was updated a few days ago then rolled back.
-
Darkflight usage in Custom Profile
Here is a snippet of my Custom Profile: public static Spell StampedingRoar = new Spell(106898); public static Spell Darkflight = new Spell(68992); if (ObjectManager.Me.WowRace == WoWRace.Worgen && Darkflight.KnownSpell && Darkflight.IsSpellUsable) { Darkflight.Launch(false, true, true, true); } if (ObjectManager.Me.WowRace != WoWRace.Worgen && ObjectManager.Me.WowClass == WoWClass.Druid && StampedingRoar.KnownSpell && StampedingRoar.IsSpellUsable) { StampedingRoar.Launch(false, true, true, true); } My Worgen Druid is not using Darkflight. It is instead using Stampeding Roar which it shouldn't because it is a Worgen. I use similar conditions in my FC and my Worgen Druid uses Darkflight when it meets the conditions in my FC. It's just not working when I put it in my Custom Profile. Any ideas?
-
Game is updated but i get game version incorrect error
WoW just had a patch. You should try not using the launcher so you don't run into these problems of updating WoW when WRobot is not updated. Then when you open WRobot and it says outdated, then you can update WRobot and WoW and you'll be fine.
-
Anyone making money using bots?
You would need a lot more bots. You would need to farm different things on the same realm so you don't over saturate the AH. Then you would need to find buyers like you said. Look at the wow token price and how much gold you get with it. Use that to give you a rough idea of what you need to do and don't expect nearly the same amount. Wow Tokens basically killed gold selling.
-
Anyone making money using bots?
Doubt it.
- Question about Profiles
- Question about Profiles
-
Would like to buy 1 Year but can`t
It says Private on the store and is 19.99€
-
Clean install
You're welcome
-
Clean install
Save the Settings before you do a fresh install: ReloggerGeneralSettings.xml
-
Some General Quests about botting...
I make multiple accounts to farm for my main. Mostly for mats.
- Looking for fight classes
-
How did Wrobot fair in this banwave?
Big one back in Nov. 2016 hit us. The one that just hit within the last 24 hours did not. I mainly use WRobot as a rotation bot. It's pretty easy to make a basic rotation with the GUI WRobot has. I'm not sure if the ban page is only for members or not but here's the link: https://wrobot.eu/forums/forum/29-security-ban-reports/
- LFR Botting
- Spell priority and DLL
- Spell priority and DLL
-
Time Lost Proto Drake farming
https://wrobot.eu/forums/forum/44-black-market/
-
Relogger Question
There is a task to change the WoW folder and Wrobot folder in case you use more than one.
-
Relogger
It's at the very top of that section
- Spell priority and DLL
- Bot attacks grey mobs
-
How to click QuestChoiceFrameOption1.OptionButton
Lua.LuaDoString ("QuestChoiceFrameOption1.Click ();"); Or :Click(); Something like that.