Everything posted by Droidz
-
Window Sizes
Hello, No sorry, in "Window" menu you can organise the windows but no way to save.
-
LoadProfile
Hello, Like this: (in this screenshot you load profile named "(01-05)NightElf.xml" in folder "WRobot\Profiles\Quester\AllianceQuestsDroidz\". Remove "AllianceQuestsDroidz\" if your profile, is in base quest profiles folder.)
-
WRobot for Wow PTR version 5.4.7 (17898)
WRobot support now Wow PTR server (wow version 5.4.7 (17898)). More info
-
WRobot for Wow PTR version 5.4.7 (17898)
WRobot support now Wow PTR server (wow version 5.4.7 (17898)). More info
-
WRobot for Wow PTR version 5.4.7 (17898)
Hello, If you want try WRobot for Wow 5.4.7 (17898) (PTR server). To install WRobot for PTR server: To uninstall: PS: If you found bugs post report here please.
-
I Need help lol.
If you can try with new the WRobot update please. It is problem with decimal separator (in french computer is "," by default, in english is "."). Tell me if problem is solved or not. Thanks
-
w.Manager - Target Position - Front Value
IsFacing checking only if you facing your target (you can facing your target and your target can be in front or not of your character). If you facing your target and you have same rotation, you are inevitably behind it.
-
I Need help lol.
Hello, What is you Windows langage? Can you copy/past here first position (before bug). For the moment you can remove number after the ".". Thanks.
-
Advanced settings window
Hello, Can you send me screenshot please.
-
More AOE Issues (Yup!)
Yes but I want say, during combat, you can get 5 CP (you can launch manually "Crimson Tempest" by moment)?
- Wrotation only does normal attack
-
D'ont dismount
Hello, You can found this option in advanced general settings. Teamviewer can cause problem to access at the keyboard, kill all teamviewer process, and teamviewer service process.
- Herb locations
-
Profil rotation
Bonjour, Vous pouvez supprimer le sort avec l'éditeur de fightclass, regardez le guide d'utilisation de WRobot (à la fin).
-
More AOE Issues (Yup!)
Hello, You use spells in your fightclass with less than 5 combo points (your spell Crimson Tempest required 5 combo points), your character has 5 combo points during combat?
-
w.Manager - Target Position - Front Value
Hello, The function IsFacing return true or false (boolean) all calcul is in function.
-
Energy Pool Version Of SND Lua Code (Read Me)
Hello, You can try it: ret=1; if (UnitPower("player" ,SPELL_POWER_ENERGY) <= 74) then ret = 0; return; end local nameSpell = GetSpellInfo(51713); if (not nameSpell) then return; end local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId = UnitBuff("player", nameSpell); if (not expirationTime) then return; end local expireTimeLeft = expirationTime-GetTime(); if expireTimeLeft > 6 then ret = 0 end I have added line: if (UnitPower("player" ,SPELL_POWER_ENERGY) <= 74) then ret = 0; return; end or you can use condition "Energy".
-
Snippets of LUA codes (for FightClass)
Hello, If you have an snippet of lua code for Fight Classes you can share it on this thread. Please share only code that works, not ask here.
-
DoTing several targets/target switch
Try it (for Duid level 1): MultiTargetDruidLvl1.xml
-
Profil rotation
Bonjour, Vous devez désactiver l'option "Manage rotation..." dans les "Product Settings".
-
DoTing several targets/target switch
Hello, You can use script lua similar at (with option no spell is lua code): local nameSpell = GetSpellInfo(44614); if (not nameSpell) then return; end TargetNearestEnemy(); CastSpellByName(nameSpell); Replace 44614 by your spell id (this script works with mage level 1). You can add condition unit "Unit attack Player near" to limit number of targets.
-
Anticipation Buff Stacks - Not Working
Hi. Try this: SUB TEST 4 FIXED.xml (I haven't test it tell me if this works)
-
*NEW FEATURE IDEA* If you have the Wooly Mammoth Mount use that as a vendor!
Can you send me your log and your mammoth mount name please.
-
Anticipation Buff Stacks - Not Working
You can test your lua script with "Development Tools" in tab "Tools".
-
Anticipation Buff Stacks - Not Working
You need to use UnitDebuff: ret = 0; local nameSpell = GetSpellInfo(1943); if (not nameSpell) then return; end local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId = UnitDebuff("target", nameSpell); if (not expirationTime) then return; end local expireTimeLeft = expirationTime-GetTime(); if expireTimeLeft <= 2 then ret = 1 end ps: I have also added codes to avoid lua error ("if (not nameSpell) then return; end" and "if (not expirationTime) then return; end") this var can be nil.