Jump to content

Droidz

Administrators
  • Posts

    12590
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, In your profile (edit it with "profile creator") you can select level minimum/max of mobs at attack, use good settings for this. You can also add to the blacklist zones in the profile (don't forget to save change). In tab "Tools" of main WRobot window, click on button "Tools". In this window you can blacklist position (zone), mobs types or unit by unit.
  2. Hello, Read this: (don't forget to install slimDX) Do you use an administrator Windows session?
  3. Hello, I have credited your mmorobot account of price of your current subscription. You can use this credit to buy new subscription.
  4. Bonjour, Pour le moment les profils de quêtes ne couvrent pas tous les niveaux/classes. Vous pouvez utiliser le bot Grinder (ou Automaton), possible de le combiné avec le bot Battlegrounder, plus long que les quêtes mais ça fonctionne aussi.
  5. Hello, How you have replied in PM that problem is caused by "youtube pop up blocker". ps: Use AdBlock instead of "youtube blocker" for avoid this problem.
  6. Droidz

    reviv our pet

    Hello, What fightclass do you use? Do you have try another fightclass?
  7. Hello, If you don't use fightclass: Go to tab general settings and select an fightclass. You can download new fightclass here: http://wrobot.eu/files/category/11-druid/ (copy/extract download file in folder "WRobot\FightClass") If you use fightclass: The best way is to contact the creator of the fight class. You can also try another fightclass: http://wrobot.eu/files/category/11-druid/ Or try to edit fightclass to fix the problem.
  8. Hello, Can you share full log file please (you can found it in "Logs" folder)
  9. Hello, This don't works if you put item name in fisher product settings option "Lure Name"?
  10. Your settings is like this?
  11. Hello, I'll add this feature soon.
  12. Hi, I cannot test but try this code I have correct some errors. if (GetUnitSpeed("player") == 0) and not (UnitCastingInfo("player")) and not (UnitChannelInfo("player")) and not (UnitAffectingCombat("player")) and not (IsMounted()) and not (IsFlying()) and not (IsFalling()) and not (IsResting()) and not (UnitIsAFK("player")) then local timeLeftToCastAgain = 10*60; --[[ Searing Totem ]] local idTotem={3599} for i=1,#idTotem do local spellname=GetSpellInfo(idTotem[i]) for totemIndex=1,4 do local haveTotem, totemName, startTime, duration = GetTotemInfo(totemIndex); if (haveTotem and spellname == totemName) then local timeLeft = startTime+duration-GetTime(); if (timeLeft < timeLeftToCastAgain) then if (IsUsableSpell(spellname)) then local start, duration, enable = GetSpellCooldown(spellname) if (duration==0) then CastSpellByName(spellname); end end end break; end end end end
  13. Do you have try to follow player by name (you can config it in "Product settings" of party bot).
  14. In "Product Settings" check if location of "Ausgrabungsstätte von Sra'vess Ost" seem correct (not correct = 9.710005E+13 , correct = 897.980) If position is not correct, go to the dig site "Ausgrabungsstätte von Sra'vess Ost" in game, select line of this dig site in "Product Settings" and click on button "Selected dig site is at my current location". If problem is not resolved desactive this dig site.
  15. Bonjour, Je viens de répondre à votre message privé:
  16. Hello, Can you share your log please (of bugged session, you can found log file in "Logs" folder).
  17. 3500 is in ms. Prefer make your quests profiles with profile delivered with the bot is created in C# it is not easy). My game also is in French, not problem. To change profile automatically use action "Load Profile" in "Quest order editor".
  18. Hello, I have test to reproduce bug and not problem found. Can you send me screen shot of your battleground settings and your log please (of bugged wrobot session, you can found it in "Logs" folder)?
  19. Hello, I recommand to update your dig sites list: (or dig sites where WRobot bug to go there). If you can send me screen shot of your wow map where you have the problem. Thanks
  20. Hello, In "Quest order editor" add action "RunCode" after "pulse" with param: wManager.Wow.Helpers.Quest.CompleteQuest(); You can add wait time to wait then window appear: Thread.Sleep(3500); wManager.Wow.Helpers.Quest.CompleteQuest();
  21. Hello, can you share an profile which doesn't works with converter.
  22. Droidz

    Vendors

    Hello, Check if your items is no in "Do not sell list" and add items name at sell in "Force sell list" (and don't forget to activate items quality at sell).
  23. Hello, Party product don't works for it? You can try to use WRotation and add in your fightclass this wow macro
  24. ps: If you want get group players you can use this code: List<WoWPlayer> playerList = Party.GetParty(); foreach (var player in playerList) { // ... }
  25. For get player role for the moment you can use lua: http://wowprogramming.com/docs/api/UnitGetAvailableRoles In the next version I have added "AvailableRoles" function, you can use it like: List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); bool canTank, canHealer, canDps; string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { player.AvailableRoles(out canTank, out canHealer, out canDps); Logging.Write("[MyPlugin] Player " + player.Name + " canTank: " + canTank + ", canHealer: " + canHealer + ", canDps: " + canDps); if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
×
×
  • Create New...