Jump to content

Droidz

Administrators
  • Posts

    12427
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz reacted to mightyhunt in [archeology] Not solving   
    got it working
  2. Like
    Droidz reacted to tazer974 in combat de pet   
    ok merci bcp en tout cas nikel le bot vraiment simple d utilisation
  3. Like
    Droidz got a reaction from da8ball in Swapping pets   
    Hi,
     
    How explain I have added possibility to use lua script.
     
    Use this script for change pet when health is smaller at 30 % (you can change this value):
    local minHealthPercent = 30; local PetAlly = 1; local PetEnemy = 2; local activePetEnemy = C_PetBattles.GetActivePet(PetEnemy); local typePetEnemy = C_PetBattles.GetPetType(PetEnemy, activePetEnemy); local activePetAlly = C_PetBattles.GetActivePet(PetAlly); local typePetAlly = C_PetBattles.GetPetType(PetAlly, activePetAlly); if C_PetBattles.GetHealth(PetAlly, activePetAlly) * 100 / C_PetBattles.GetMaxHealth(PetAlly, activePetAlly) <= minHealthPercent then for i = 1, NUM_BATTLE_PETS_IN_BATTLE do if C_PetBattles.GetHealth(PetAlly, i) * 100 / C_PetBattles.GetMaxHealth(PetAlly, i) > minHealthPercent and not (i == activePetAlly) then C_PetBattles.ChangePet(i); break; end end end
  4. Like
    Droidz reacted to bear31 in Profils du Quester   
    Top merci, je vais voir dès que j'ai un peu de temps si je peux pondre quelques profils pour compléter la collection.
  5. Like
    Droidz reacted to Seumas in Need help !   
    Sounds like you need to use a profile! Download a mining profile and run that 
  6. Like
    Droidz got a reaction from zjxlsmr in only queued for 1 BG when i have 2 BG ticked in Product Setting   
    Hello,   I have just test and works fine for me. I'll add a wait time (wow latency). Wait next update and tell me if this resolve your problem.
  7. Like
    Droidz got a reaction from Zokeh in How to force attack on 'neutral' mobs.   
    Hello,   When you create profile you need to add targets entry (select target in game > In profile creator click on button "Add" (right of the textbox Targets Ids), save your profile).
  8. Like
    Droidz reacted to Ohren in Help with rune counting.. Droidz you are needed. xP   
    I am working on my Frost DK Wrotation, and the rune count condition just doesn't work for me... I have managed to get this far..
    for i=1,6 do _, _, a = GetRuneCooldown(i);print(a) end It returns true or false for all 6 runes. Now how do I get to count all that into a numerical variable named returnVar so I can actually use it for my fight class?
     
    EDIT:
    j = 0;for i=1,6 do _, _, a = GetRuneCooldown(i); if a == true then j = j + 1; end end if j >= 3 then b = 1; end This seems to work awesome
  9. Like
    Droidz got a reaction from pmpaul in Increasing "Survey" bot internal CD to 3 second.   
    Hello,
     
    Wait the next update (It will at the same time of wow 5.4), wrobot wait survey cd and I have tried to remove idle time (I wait reviews).
  10. Like
    Droidz got a reaction from Seumas in Request Power leveling Battle Pets! & Bug found   
    Hello,   Thanks for your reports. I'll look it in the week (I come back to you when it is done).
  11. Like
    Droidz reacted to Gaimz in How To Bot Safely   
    Sorry can you delete this thread for some reason it didnt post my full post and I cbf writing it up again lol sorry
  12. Like
    Droidz reacted to Ohren in My enhancement shaman fight class.   
    Hey Darktempler, I have found a better work around.
     
    Using LUA just put down...
    _, _, _, count, _, _, _, _, _, _, _ = UnitAura("player", "Maelstrom Weapon"); In return value research use "5".
    In return value var user "count".
     
    Fires perfectly. I was having issues using the normal Buff => Maelstrom = True
  13. Like
    Droidz reacted to jackel420 in Not Functioning Against Raid Dummy   
    I'm in the middle of leveling another toon, but I'll get back to you as soon as possible.  (about 1 hour).
  14. Like
    Droidz got a reaction from Yakkoo in Help with picking up quests   
    Hello,
      Sorry for the time of reply I was on vacation.   I'll look it tomorrow, your profile is for start zone of paladin blood elf?
  15. Like
    Droidz reacted to Darktempler in Shaman Fight Classes are awful   
    My fightclasses also working very well, but the Problem with 5 stacks Maelstrom I also have -  my fight class is with self heal ( because i make mass pulls ) and thats what he uses the 5 stacks - self heal (healing surge )
     
    Stormstrike as spell in fight class will not work, you have to replace the Stormstrike in the Fight class with Primal Strike, then he will use the storm strike.
     
    Droidz - I have a lot of of nearly perfect fight classes - will make them maybe public soon, perhaps there will be again an competitionz?!?
     
    The fight classes in the download section are ok for grinding but I like it perfect :-)
  16. Like
    Droidz reacted to Darktempler in My enhancement shaman fight class.   
    Droidz - I think you can not track this with the Bot.
     
    I Cant find the Buff or Buffstack - there is nothing.
     
    Only when you reach 5 Stacks, than you get the Aura, as written above.
     
    But with the Workaround, it is working like charm.
  17. Like
    Droidz reacted to Pasterke in Use of talents failed   
    There's is no base spellname for Nether Tempest. You only get that skill if you choose that specific talent.
     
    If you have Faerie Swarm and you cast Faerie Fire, then he casts Faerie Swarm. The only thing then, when he look for the debuff, it's Faerie Swarm and not Faerie Fire.
     
    I made a solution for that one ;
    new SpellState("Faerie Fire", 23, context => !MeFeralSettings.CurrentSetting.HaveFaerieSwarm && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Fire")), false, true, false, false, true, true, 0, false, false, false, false), new SpellState("Faerie Fire", 22, context => MeFeralSettings.CurrentSetting.HaveFaerieSwarm && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Swarm")), false, true, false, false, true, true, 0, false, false, false, false), [Setting] [DefaultValue(false)] [Category("Druid Feral")] [DisplayName("Faerie Swarm Talent")] [Description("Put on true if you have that Talent")] public bool HaveFaerieSwarm { get; set; }
  18. Like
    Droidz reacted to Ohren in Fight class competition.   
    I'm getting back into the fight class game since my divorce is final and I am all moved into my new house. Now that there is more people making fight classes, here is my idea.
     
    Goal
    To get the best fight classes we possibly can for WRobot.
     
    Some details
    Fight classes will be going head to head against my current fight classes in a couple of categories.
     
    Categories
    DPS: On a single target dummy, I'll let it sit there for about 10 minutes and get the results. This is more just to see how well the fight class will do against raid bosses.
    Survivability: I'll put the bot into a dungeon (Stormstout on normal mode for DPS fight classes, and Stormstout on heroic for tank) and see how far it makes it, using the best result out of 3 attempts (trying not to leave much to chance).
     
    Some more details
    After I get the results of the head to head comparison posted here, you can make changes to your fight class and challenge me again. To challenge me, your profile MUST be posted in the public download section on wrobot.eu. If you happen to best me, I will have one week (from the time the testing is complete) to have a rematch with you. If my fight class package doesn't currently have the spec you want to challenge me on, it may take a bit longer to run that competition.
     
    Rewards
    I am not sure exactly what the rewards will be right now. But it will probably end up being some TCG/rare drop battle pets.
    Update (9/13): You will also get your fight class added into my fight class package, including your username in the title. That package is the most downloaded file (140,577 total downloads to date) on wrobot.eu so you will have some bragging rights.
  19. Like
    Droidz reacted to zjxlsmr in Bot always trying to use Ground mount instead of flying one when going back to farm zone after mailing   
    After my bags is full, the bot had successfully mailed all the items.  (bot fly to mailbox as premise, and the zone is flyable)
     
    the next act bot will do is:
     
    1, Dismount, if i enabled "Use ground mount" and mount up ground one, then ofc RUN to farm zone.
     
    2. Use flying mount but RUN to the farm zone.
     
     
     
     
    This is annoying as there is huge altitude difference between my farm zone and mailbox. So i end up suicide a lot by falling.
     
    There is a much longer path on the map between mailbox and farm zone VIA GROUND (bot sometime will run this path as it is THE GROUND PATCH, but took ages to get the destination)
     
     
     
     
    this is what i want it to be:
     
    1, if this is a flyable map the bot will always travel in air in long distance movement ( i would say over 100 yards).
     
    2, make the bot act like Gatherer traveling between Mailbox and farming zone. (just like travel between herb to herb).
     
     
     
    i really cant solve this problem thus goes this post xD
     
    PS: ask me to post a video if you dont know what i mean.
  20. Like
    Droidz got a reaction from No Heart in WRobot ready for wow 5.4 live server   
    Hello,

    WRobot is ready for live server (World of Warcraft 5.4.0 17359), you need only to accept update when you launch WRobot (accept update also if you use wrobot for ptr version).

    If you play on european server don't accept update today (09/10/2013), to downgrade to wrobot for wow 5.3 you need to download this.

    Good botting at all.

    PS:
    Now Wow force 64 bit mode (same if you have activated 32 bit option in wow launcher), for launch wow in 32 bit you need to go to world of warcraft folder, remove (or rename) "wow-64.exe" and launch wow directly by the file "wow.exe" (or you can launch wow 32 bit directly with wrobot).


  21. Like
    Droidz got a reaction from No Heart in what is the realmlist of the server ?????????   
    Hello,
     
    It is wow bot, not wow server.
  22. Like
    Droidz got a reaction from Seumas in what is the realmlist of the server ?????????   
    Hello,
     
    It is wow bot, not wow server.
  23. Like
    Droidz reacted to gradinas in Ru Translate   
    I made an amateur translation into Russian
    Gradinas (Russian).xml
  24. Like
    Droidz got a reaction from da8ball in WRobot ready for wow 5.4 live server   
    Hello,

    WRobot is ready for live server (World of Warcraft 5.4.0 17359), you need only to accept update when you launch WRobot (accept update also if you use wrobot for ptr version).

    If you play on european server don't accept update today (09/10/2013), to downgrade to wrobot for wow 5.3 you need to download this.

    Good botting at all.

    PS:
    Now Wow force 64 bit mode (same if you have activated 32 bit option in wow launcher), for launch wow in 32 bit you need to go to world of warcraft folder, remove (or rename) "wow-64.exe" and launch wow directly by the file "wow.exe" (or you can launch wow 32 bit directly with wrobot).


  25. Like
    Droidz reacted to Darktempler in WW Monk JAB / CHI broken?   
    Thanks Droidz for the quick answer and good work!
     
    Works like charm with light force!
     
    WTF is light force? New class Jedi Knight?
     
    :-)
     
    Can anyone make his fight classes Public here?
     
     
     
    @ Shai - thanks for your offer, but now I am done with the ww Monk.
     
    Used your rogue Fight class a while ago. Thanks for it.
     
    Now I have all classes done, mostly 2 speccs - NOT DK and Warri - will do warri soon, but I just started the warri and I need to learn how Warri mechanics work.
×
×
  • Create New...