Everything posted by LunaAlfie
-
Rota Bug
Just put Saber slash in the conditions for Pistol Shot. I.e. Spell Ready Saberslash need false.. That should solve your Problem.
-
Issue with Fight Class ability usage [Death Knight]
Yup.
- Can i use Protected functions from the Blizzard api?
-
Issue with Fight Class ability usage [Death Knight]
The Problem might be, that Rime is also in the Spellbook. If you check the Download Sections there`s 2 Frost DK classes that solved this issue already using C Sharp Code as Condition. (I can`t remember which code it was out of my head sorry :/)
- How to combine "Unit Attack Player Near" with "Unit being attacked is NOT a Tank" ?
- How to combine "Unit Attack Player Near" with "Unit being attacked is NOT a Tank" ?
- How to combine "Unit Attack Player Near" with "Unit being attacked is NOT a Tank" ?
- How to combine "Unit Attack Player Near" with "Unit being attacked is NOT a Tank" ?
-
Dual Wield Weapons Problem
Know nothing about the Bots, but the Weapons usually can be equipped only once. Are you sure you got the right names? Sometimes it`s just the end bit that differs, like for me it`s "harmonic" and something else, but appart from that they have exactly the same name.
-
Detailed frost dk rotation
- 293 downloads
- Version 1.0.0
This is using a specific set of Talents (1,2,3,3,2,1,3) which will allow you to do aoe damage while primarily focusing on single target damage - Very good for PVE (untested in PvP). It is using all procs, but does not support automated battle rezz yet. Death Grip needs to be activated in the Rotation Settings before available. - Please report any Issues / Bugs :) -
Settings only shows one C# Script
- Settings only shows one C# Script
- Settings only shows one C# Script
- Settings only shows one C# Script
- Combat Rezz on Tanks / Healers before DD`s
The thing is i`m not really interested in Programming, all i want to do is battle rezz the healers and tanks before the dd`s Basically: I want to run around and dodge stuff myself, but can`t be bothered hitting all the buttons hehe But then again i think nobody here can, since this is a Forum for Bots, hm? :)- Settings only shows one C# Script
Runic Empowerment: ID=81229, Stack=0, TimeLeft=0 ms, Owner=0000000007893F560810E40000000000 Draenic Strength Potion: ID=156428, Stack=0, TimeLeft=19199 ms, Owner=0000000007893F560810E40000000000 Draenic Strength Flask: ID=156071, Stack=0, TimeLeft=3588757 ms, Owner=0000000007893F560810E40000000000 Greater Draenic Strength Flask: ID=156080, Stack=0, TimeLeft=3596088 ms, Owner=0000000007893F560810E40000000000- Combat Rezz on Tanks / Healers before DD`s
- Settings only shows one C# Script
- Combat Rezz on Tanks / Healers before DD`s
Hello, i`ve never done anything related to programming and after hours of Reading i`ve managed to put something together. The purpose: Combat Rezz Tanks before Healers and Healers before DD`s. Can anybody look over it and tell me, what is wrong and what is not wrong, please? char rd = 'raid'; char tmp = ''; char tmpRole = ''; bool tmpTanks = true; bool tmpHeals = true; for (int i = 1; i <= 20; i++) { tmp = rd + i; tmpRole = UnitGroupRolesAssigned(tmp); if (tmpRole == 'TANK') { if (UnitIsDead(tmp)) { tmpTanks = false; local name = GetItemInfo(61999); RunMacroText('/use ' .. name); break; }; } else if (tmpRole == 'HEALER') { if (UnitIsDead(tmp)) { tmpHeals = false; local name = GetItemInfo(61999); RunMacroText('/use ' .. name); break; }; } else { if (tmpTanks && tmpHeals) { local name = GetItemInfo(61999); RunMacroText('/use ' .. name); break; }; }; };- WRobot for Wow 7.0.3 bugs reports
Awesome. The Speed alone makes me want to buy WRobot for good :)- WRobot for Wow 7.0.3 bugs reports
Same here. Don`t think it`ll be patched untill tomorrow.- Building a "Can Interrupt" condition (need help)
- Building a "Can Interrupt" condition (need help)
Hi, I`ve looked into the Wow Api a bit and i found a really usefully function, that will let me Check if the Casting Spell can be Interrupted. I would like to put that Function into the Condition using C Sharp code, but i got zero Idea / knowledge on how to accomplish that. The Function is called "UnitCastingInfo". I`m guessing it`s something like this: notInterruptible = UnitCastingInfo("player") But how to build it in?- WRobot for Wow 7.0.3 bugs reports
I`ve had some Issues with the ID`s - In case you got the same Problem, here`s a smal List i created: Killing Machine: ID=51128 ---- Spellbook Rime: ID=59057 ---- Spellbook Killing Machine: ID=51124 Razorice: ID=51714 Frost Fever: ID=55095 Rime: ID=59052 Dark Succor: ID=178819 --- Spellbook The Spellbook ones differ from the proc ones somehow. I had to use the non Spellbook ones- Feral Casting Healing Touch even when Predatory Swiftness is not present
That worked like a charm on all my Problems.. How would it look like for "Target Buff Casted By Me" when the Target should NOT have that Buff? :/ (I.e. keep a harmfull Buff on a Target at all times)...