Jump to content

Droidz

Administrators
  • Posts

    12514
  • Joined

  • Last visited

Everything posted by Droidz

  1. 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();
  2. Hello, can you share an profile which doesn't works with converter.
  3. 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).
  4. Hello, Party product don't works for it? You can try to use WRotation and add in your fightclass this wow macro
  5. ps: If you want get group players you can use this code: List<WoWPlayer> playerList = Party.GetParty(); foreach (var player in playerList) { // ... }
  6. 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); } }
  7. Hello, thank you, I'm glad you said that.
  8. Hello, yes, in product settings (when "WRotation" is selected) desactivate the option "Manage character rotation, range and target".
  9. 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.
  10. 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); } }
  11. Hello, In the FightClass? If yes: Add condition at yout spell "Target Buff" like this:
  12. I have search on google and problem seem caused by avast. If you can try to deactivate/desinstaller avast.
  13. In bottom right of this page click on button "More Reply Options", in new page click on "Choose Files...".
  14. For Pvp battle pets, in product settings of "Pet Battle" product activate option "Pvp mode".
  15. Hello, I have reply here:
  16. Hello, Make all steps of this: If problem is not resolved send me your log file please (you can found it in "Logs" folder).
  17. I'll add this feature, wait next update (for wait you can add healing spell in your fightclass).
  18. Hello, I have try and no problem with tool NPC DB. Can you try to rename or delete file "WRobot\Data\NpcDB.xml" to clean database and check if problem is resolved (or send me this file, I'll check if is not corrempude).
  19. Hello, When you play at wow (without bot) you don't have this problem? For solved this problem update directx (9 and 11), framework (4.0 or 4.5), your graphic driver.
  20. Hello community. I have just released WRobot 1.2.3. You can read changelog here. Good botting at all.
  21. Droidz

    WRobot 1.2.3 released

    Hello community. I have just released WRobot 1.2.3. You can read changelog here. Good botting at all.
  22. Hello, If you can try with new version and tell me if problem is resolved. Thanks.
  23. Hello, I have try to fix problem, wait next update and tell me if problem is resolved. If problem is not solved, please tell me with details problems. Thanks.
  24. Hello, Can you share log file of bugged wrobot session (you can found it in "Logs" folder).
×
×
  • Create New...