Everything posted by Droidz
-
I have Pet Question about DK's.... And a Suggestion.
Like this: if (UnitPower("pet" , SPELL_POWER_ENERGY) > 30) then RunMacroText("/cast [target=pettarget,harm,nodead][] Claw") end
-
The pet Battle Engine gets stuck
Hello, Thanks I'll look it
-
How would you put an pet ability to not cast or recast on???
Hello, It is not possible for the moment, you can try to create custom your lua script, but it is no easy.
-
How do I???
It is not possible for the moment, I'll add this (for quest and grinder also) but I wait more informations about Warlords of Draenor before adding significant changes (for avoid to work for nothing).
-
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 }
-
PLease help
Hello, Can you share your log please.
-
bot wont start at all
Hello, Install slimdx (link: http://slimdx.org/download.php (choose version x86 .net 4.0).
-
Monk's brews
Hello, I have found this id: 116740;Tigereye Brew 125195;Tigereye Brew 125196;+1 Tigereye Brew 123980;Brewing: Tigereye Brew 137591;Tigereye Brew! Try this: In FightClass "General Settings", "Additional C# code" add: public int TigereyeBrewStackCount() { // 116740;Tigereye Brew // 125195;Tigereye Brew // 125196;+1 Tigereye Brew // 137591;Tigereye Brew! int buffStack = 0; buffStack = buffStack + ObjectManager.Me.BuffStack(116740); buffStack = buffStack + ObjectManager.Me.BuffStack(125195); buffStack = buffStack + ObjectManager.Me.BuffStack(125196); buffStack = buffStack + ObjectManager.Me.BuffStack(137591); return buffStack; } To use it, add in the spell condition type "C Sharp Code", > in "Value" put code: TigereyeBrewStackCount() >= 10 (replace 10 by number of stack required) ps: I ignore if this code works but it is good way to calculate stack of several spells. ps 2: You can replace "ObjectManager.Me.BuffStack" by "ObjectManager.Target.BuffStack" to get target stack.
-
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.
-
the condition me is stunned isnt working.
Hello, This condition don't works with all spells. I know this condition works with spell like http://www.wowhead.com/spell=853/hammer-of-justice but for the others spells, you need to check manually the buff (when you are stunned you have buff).
-
does not work
Hello, I am not sure to understand exactly what you want say but for some quests you need to make one quest by objective. Look this for http://www.wowhead.com/quest=3361/a-refugees-quandary and http://www.wowhead.com/quest=24489/trolling-for-information I have used this solution.
-
When swimming?
Hello, Normally WRobot does not go under the water, he swim on the surface, unless the target it is under water, in the case?
-
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.
-
I have Pet Question about DK's.... And a Suggestion.
Add after "<FightClassSpells>" this code: <FightClassSpell> <SpellName>RunMacroText("/cast [target=pettarget,harm,nodead][] Claw")</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>LuaScript</ContionType> <Param xsi:type="FightClassConditionLua"> <LuaScript>attackStatus = IsPetAttackActive()</LuaScript> <VarRet>attackStatus</VarRet> <ValueRet>true</ValueRet> </Param> </FightClassCondition> </FightClassConditions> <Priority>1</Priority> <Timer>2000</Timer> <NotSpellIsLuaScript>true</NotSpellIsLuaScript> <CanMoveDuringCast>Yes</CanMoveDuringCast> </FightClassSpell>
-
Grinder and Battlegrounder
Hello, select Gatherer product, in product settings select an profile and select again Battlegrounder product.
-
Gatherer profiles are flying into sea
Hello, Do you have this problem with all profiles? If no if you can give profile name. Can you also send me the log file of bugged session please.
- horde/85-90/85-90 Jade Forest.xml bug
-
How to Video
Bonjour, Il n'y a pas de voix dans les videos elles sont multilangues. Vous pouvez trouver le forum Français ici. Egalement le guide d'utilisateur (qui est probablement le guide le plus complet et disponible uniquement en Français pour le moment).
-
I have Pet Question about DK's.... And a Suggestion.
Copy/Past this code in notepad, save the file to XML and you can open it with fightclass editor to look how this works.
-
Hello again friends :-)
Welcome back jaladhjin. Not hesitate to give your suggestions.
-
Droidz Need Help New Profile Levels 5-12
I have fixed problem in step "IncriminatingDocuments>TurnIn" for quest http://www.wowhead.com/quest=8482 , I have replaced "Objective count 1" = 1 by "Objective count 1" = 0 For http://www.wowhead.com/quest=8483 , I have replaced "Objective count 2" = 1 by "Objective count 1" = 0 I have added in option "Macro when interact (full lua code, no /run)" : RunMacroText("/click GossipTitleButton1"); RunMacroText("/click GossipTitleButton1"); I have replaced "Gossip option" = -1 by "Gossip option" = 1 (I'll edit this post when I found new problems)
-
I have Pet Question about DK's.... And a Suggestion.
Hello, You can just put your macro RunMacroText("/cast [target=pettarget,harm,nodead][] Claw") in spell name, activate option "Not spell, is lua script" and add "Timer". Or try this sample (I haven't tested) (I have added lua condition IsPetAttackActive()) (I have set up the "Timer" at 2 secondes): http://pastebin.com/stQ3Hkem
-
Heroic Leap????
Hello, Do you have activated "Spell settings" > "AOE Spell" ?
-
Path finder suggestion
ps: You can look tab "Map" to watch what I want say and how wrobot works.
-
Add Button
Hello, Nice ideas, I'll add it.