-
Posts
12579 -
Joined
-
Last visited
Reputation Activity
-
Droidz got a reaction from Ohren in Monk's brews
return true or false. Look this.
if (ObjectManager.Me.HaveBuff(0) == false)
{
// buff no found
}
if (!ObjectManager.Me.HaveBuff(0))
{
// buff no found, like == false
}
if (ObjectManager.Me.HaveBuff(0) == true)
{
// buff found
}
if (ObjectManager.Me.HaveBuff(0))
{
// buff found, like == true
}
-
Droidz got a reaction from Bear T.O.E. in What is new
Hello.
I post small news, since yesterday he are a lot of news about Warlords of Draenor.
Since last new, WRobot is now in version 1.1.5 (changelog here), and of course, support last wow version (5.4.7 (18019)).
Thank at the community for the loyalty and good botting at all.
-
Droidz reacted to Ohren in Snippets of LUA codes (for FightClass)
Here is a work-around for using spells that are off of the global cool down timer (my example is using Heroic Strike from a Warrior).
First, add a spell, I tend to name it Faux (Whatever the spell name is) so in this instance, it will be Faux Heroic Strike. It is ideal to place this up high on priority.
Next, add in your conditions. For Heroic Strike, I use Rage > 110.
Now add in an LUA script with the following information...
LUA Script: CastSpellByName("Heroic Strike");retV=1;
Return value research: 0
Return value var: retV
... This will trigger your spell to cast. The reason I set retV's value to 1, then check to see if it equals 0 is just to make sure WRobot doesn't try firing a fake spell named Faux Heroic Strike.
And boom, now your spell is completely off the GCD. Make sure the spell is off GCD before using this method, or else it will slow down your fight class and ruin your recount heroism.
-
Droidz got a reaction from Bear T.O.E. in How do I???
Hello, You cannot use <NameClass= in petbattle profiles. To combine several profiles in one (and changing automaticly the zone by pets level) you need only in the profile editor add zones and configure Min and Max level by zone. -
Droidz got a reaction from Balfazar in Account computer specific?
Hello,
The only limitation of unlimited version your address IP (public IP).
You can run as many WRobot you want to as many computers as you want at the same time if you use same IP address. If you start WRobot on another internet connection (IP), WRobot running on the first IP will be closed. -
Droidz got a reaction from ixmog in horde/85-90/85-90 Jade Forest.xml bug
Hello, Thanks for report. You can found another profile for level 85 at jade forest here: -
Droidz reacted to Bear T.O.E. in A List of areas to lvl your Pets
KALIMDOR
[1] Orgrimmar
[1-2] Azuremyst Isle
[1-2] Durotar
[1-2] Mulgore
[1-2] Teldrassil
[1-3] Darnassus
[1-3] Exodar
[1-3] Thunder Bluff
[3-4] Northern Barrens
[3-6] Azshara
[3-6] Bloodmyst Isle
[3-6] Darkshore
[4-6] Ashenvale
[5-7] Stonetalon Mountains
[7-9] Desolace
[9-10] Southern Barrens
[11-12] Feralas
[12-13] Dustwallow Marsh
[13-14] Tanaris
[13-14] Thousand Needles
[14-15] Felwood
[15-16] Moonglade
[15-16] Un'Goro Crater
[16-17] Ahn'Qiraj: The Fallen Kingdom
[16-17] Silithus
[17-18] Winterspring
EASTERN KINGDOMS
[1] Stormwind
[1-2] Dun Morogh
[1-2] Elwynn Forest
[1-2] Eversong Woods
[1-2] Tirisfal Glade
[1-2] Undercity
[1-3] Ironforge
[1-3] Silvermoon City
[3-4] Westfall
[3-6] Ghostlands
[3-6] Loch Modan
[3-6] Silverpine Forest
[4-6] Redridge Mountains
[5-7] Duskwood
[6-7] Hillsbrad Foothills
[6-7] Wetlands
[7-8] Arathi Highlands
[7-9] Northern Stranglethorn Vale
[9-10] The Cape of Stranglethorn
[10-11] Western Plaguelands
[11-12] The Hinterlands
[12-13] Eastern Plaguelands
[13-14] Badlands
[13-14] Searing Gorge
[14-15] Swamp of Sorrows
[15-16] Burning Steppes
[16-17] Blasted Lands
[17-18] Deadwind Pass
OUTLAND
[17-18] Hellfire
[18-19] Nagrand
[18-19] Terrokar
[18-19] Zangarmarsh
[18-20] Blade's edge
[20-21] Netherstorn
[20-21] Shadowmoon
NORTHREND
[20-22] Borean tundra
[20-22] Howling Fjord
[21-22] Grizzly Hills
[21-22] Scholazar Basin
[22-23] Crystalsong forest
[22-23] Dragonblight
[22-23] Icecrown
[22-23] Storm Peaks
CATA Zones
[22-23] Deepholm
[22-24] Mount Hyjal
[23-24] Uldum
[23-24] Twilight Highlands
PANDARIA
[23-25] Krasarang Wilds
[23-25] Kun-Lai Summit
[23-25] The Jade Forest
[23-25] Valley of the Four Winds
[24-25] Dread Wastes
[24-25] Townlong Steppes
-
Droidz got a reaction from deadfiraspace in How to Video
Before all, you need to install:
- Framework 4.0: http://www.microsoft...s.aspx?id=24872
- Visual C++ 2012 (VSU1\vcredist_x86.exe 6.3 MB): http://www.microsoft...s.aspx?id=30679
Running wow in 32 bit:
Download and Install WRobot:
Basic Settings:
Grinder - Use and Create Profile:
https://www.youtube.com/watch?v=bak7iR0Ewo4
Download and Install Profile and Fight Class:
How to Add/Use Mailbox option:
-
Droidz reacted to Ohren in Snippets of LUA codes (for FightClass)
Here is my snippet for checking time left on buffs (on yourself).
_, _, _, _, _, duration, expirationTime, _, _, _, _ = UnitBuff("player","Inquisition"); t = GetTime(); timeRemaining = expirationTime - t; if (timeRemaining <= 6) then retV = "1"; else retV = "0"; end This will cast Inquisition when there is 6 seconds left on the buffs life. Great for spells that you want up 100% of the time. To get this to work, you might have to remove the line breaks, so it would actually look like..
_, _, _, _, _, duration, expirationTime, _, _, _, _ = UnitBuff("player","Inquisition");t = GetTime();timeRemaining = expirationTime - t;if (timeRemaining <= 6) hen retV = "1";else retV = "0";end -
Droidz reacted to Bear T.O.E. in I just noticed I am getting an ERROR... !!! ???
Not sure... But I thought I would post it to lend a hand.
-
-
Droidz reacted to Luthimate in Error - not working with new updates.
Thank's Droidz, i tell you if my bug persist :)
-
Droidz got a reaction from Bear T.O.E. in WRobot support the Wow 5.4.7 Hotfixes of February 20
WRobot support the new wow hotfix 17930 (5.4.7 )
More info about wow hotfix here.
-
Droidz got a reaction from cufta in move character during combat
I have created a simple plugin: I have also posted source code (if you want improve plugin). -
Droidz reacted to Bear T.O.E. in Ok in Townlong Steps there is an Area that the herbing bot will try and herb.
Im going to try and run my bot later on tonight so I will let you know it that works
ty
-
Droidz got a reaction from nonstop1005 in move character during combat
I have created a simple plugin: I have also posted source code (if you want improve plugin). -
Droidz reacted to Networkz in quest turn in
Don't think its changed since cata.
Sent from my HTC One X using Tapatalk
-
-
Droidz got a reaction from Networkz in Snippets of LUA codes (for FightClass)
Activate/Deactivate spells of rotation with wow macro
In wow create new macro with this code:
/run if pausecooldown == 1 then pausecooldown = 0; print("pause desactivated") else pausecooldown = 1; print("pause activated") end Now in your spell add condition script lua:
LuaScript:
if not (pausecooldown == 1) then resultCooldown = "canlaunch" else resultCooldown = "" end Research:
canlaunch Var:
resultCooldown After, just click on macro to pause your spells.
PS: You can change variables name.
EDIT: Sample here:
-
Droidz got a reaction from Shinzor in Buy Wrobot
Hello, You can pay with bitcoin, or help the community (create profiles, fightclass, help for user support) to get free license key. -
Droidz reacted to Bugreporter in Stealth (a solution)
Use Stealth if hostile 30 Yards away but only in pvp or solo
<FightClassSpell> <SpellName>Stealth</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>HostileUnitNear</ContionType> <Param xsi:type="FightClassConditionUnitNear"> <Type>Bigger</Type> <Radius>30</Radius> </Param> </FightClassCondition> <FightClassCondition> <ContionType>LuaScript</ContionType> <Param xsi:type="FightClassConditionLua"> <LuaScript> --[[ PvP or solo AND No Casting and Stealth off and ready ? ]] local idStealth=1784 local start, duration, enabled = GetSpellCooldown(idStealth); result=((UnitIsPVP("player") or (UnitInParty("player")==nil)) and (duration==0) and (enabled==1) and not (UnitCastingInfo("player")) and not (UnitChannelInfo("player"))) </LuaScript> <VarRet>result</VarRet> <ValueRet>true</ValueRet> </Param> </FightClassCondition> <FightClassCondition> <ContionType>MeInCombat</ContionType> <Param xsi:type="FightClassConditionBool" /> </FightClassCondition> <FightClassCondition> <ContionType>MeIsFlying</ContionType> <Param xsi:type="FightClassConditionBool" /> </FightClassCondition> </FightClassConditions> <Priority>11</Priority> <CombatOnly>false</CombatOnly> <CheckIfKnowUsableDistance>false</CheckIfKnowUsableDistance> <CheckIfView>false</CheckIfView> <AddToSettings>true</AddToSettings> <DescriptionSpell>Stealth. If hostile 30 Yards away. only pvp or solo</DescriptionSpell> </FightClassSpell> based on WoW 5.4.2.
-
-
Droidz reacted to Bugreporter in How to disable casting while farming ?
I think I found the solution. Could it be, that you only check UnitCastingInfo("player") ?
This fails if it is a spell like mounting. Please have a look at UnitChannelInfo("player").
The difference between this I describe here
-
Droidz got a reaction from MrPneu in bot does not dismount
Hello, I have added new option in WRobot. Please update WRobot, Go to tab "General Settings" > "Enter advanced settings..." and activate option "Use lua to move", save and close settings. Tell me if this works. -
Droidz reacted to Womble in Still Having Massive Front / Back Detection Issues
Seems to be working brilliantly for now. Nice.