Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, This don't works if you put item name in fisher product settings option "Lure Name"?
  2. Your settings is like this?
  3. Hello, I'll add this feature soon.
  4. 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
  5. Do you have try to follow player by name (you can config it in "Product settings" of party bot).
  6. 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.
  7. Bonjour, Je viens de répondre à votre message privé:
  8. Hello, Can you share your log please (of bugged session, you can found log file in "Logs" folder).
  9. 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".
  10. 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)?
  11. 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
  12. 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();
  13. Hello, can you share an profile which doesn't works with converter.
  14. 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).
  15. Hello, Party product don't works for it? You can try to use WRotation and add in your fightclass this wow macro
  16. ps: If you want get group players you can use this code: List<WoWPlayer> playerList = Party.GetParty(); foreach (var player in playerList) { // ... }
  17. 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); } }
  18. Hello, thank you, I'm glad you said that.
  19. Hello, yes, in product settings (when "WRotation" is selected) desactivate the option "Manage character rotation, range and target".
  20. Hello, Go to tab "General Settings", to right/bottom click on "advanced...". In new window go to tab "Food/drink" and enter name of your food and drink.
  21. Hello, try this: List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
  22. Hello, In the FightClass? If yes: Add condition at yout spell "Target Buff" like this:
  23. I have search on google and problem seem caused by avast. If you can try to deactivate/desinstaller avast.
  24. In bottom right of this page click on button "More Reply Options", in new page click on "Choose Files...".
×
×
  • Create New...