Jump to content

LunaAlfie

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by LunaAlfie

  1. 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.
  2. Hi, i`m just wondering, if i actually can use Protected Functions from Blizzard in a C sharp Condition Box?
  3. 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 :/)
  4. Well it`s mostly because i`m lazy yes, but it`s not just that I just can`t do such things... I`m trying to make a lasting DK Tank Class that can be used on any purpose :)
  5. Thanks, but i was hoping for a bit more well you know what i mean - i want others to do the work for me That`s why i have decided to Bot in the first place! I haven`t got the energy to learn a new Language just for this one purpose...
  6. Just trying to figure of, if there is a way to auto spot off mobs from healers and dd`s but not from tanks :)
  7. 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.
  8. Version 1.0.0

    289 downloads

    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 :)
  9. That was not the Problem. I want to add each Potion to the Settings for the Fight Class, but only one of the Potions shows up in Settings.
  10. Draenischer Trank der Stärke (ID= 109219 ) Rune der Kraftverstärkung (ID= 118631 ) Großes draenisches Fläschchen der Stärke (ID= 109156 ) Heilsames Tonikum (ID= 109223 ) It`s all in German, but the ID`s should be the same i think?
  11. Sorry for that ^^ The Problem stays the same, no matter what you type in.. Whenever you use code it will only display one option, not all options you have made.
  12. 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? :)
  13. 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
  14. With tmpRole = UnitGroupRolesAssigned(tmp);
  15. Hi, I`ve tryed to put Potions as an Optional Setting in a Fight Class, but for some Reason only one C# Code is shown in the Settings for the Class. How can i resolve this Problem? It really buggs me right now :/
  16. 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; }; }; };
  17. Awesome. The Speed alone makes me want to buy WRobot for good :)
  18. Same here. Don`t think it`ll be patched untill tomorrow.
  19. 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?
  20. 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
  21. 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)...
×
×
  • Create New...