Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, can you stop to spam forum, next time I ban you: https://wrobot.eu/forums/topic/7996-archaeologist/?do=findComment&comment=36780
  2. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. https://wrobot.eu/forums/topic/8032-resto-druid-healing-class/
  4. https://wrobot.eu/forums/topic/7996-archaeologist/?do=findComment&comment=36780
  5. check also if this option is enabled:
  6. Hello, do you have wow addons? if yes try to disable all
  7. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). Try also to disable your fightclass (to check if it is the problem)
  8. In general settings try to disable option "Calculate interact/combat distance by target size"
  9. Hello, you probably use fightclass for others game version. Try to re download and reinstall WRobot in new folder, disable all wow addon and clear cache. And try to launch WRobot archaeologist bot without edit settings to check if this works
  10. Your items in not in "do not sell list"?
  11. Hello, use code like: Quester.Bot.QuesterSetting.Load(); if (Quester.Bot.QuesterSetting.CurrentSetting != null) { Quester.Bot.QuesterSetting.CurrentSetting.ProfileName = "nouveau nom de profil"; Quester.Bot.QuesterSetting.CurrentSetting.Save(); }
  12. Hello, when you convert to C# you launch the editor for shortcut "Fight Class Editor" or from WRobot tab "Tools"? If you launch from shortcut launch it from WRobot (to convert to c#)
  13. Hello, do you have enabled option in product settings "Precision Mode (fish school)"?
  14. Hello, Try to active option "Use lua to move" Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  15. Hello,
  16. Droidz

    Debugger Program Found

    Hello, and use last wrobot update
  17. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  18. hello, https://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/
  19. WRobot use lua to turnin quest. You can try code like: ulong lastTarget = 0; wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (lastTarget == target) return; var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.Unit) { var unit = new WoWUnit(o.GetBaseAddress); if (unit.IsValid && unit.NpcMarker == NpcMarker.YellowQuestion) { lastTarget = target; Interact.InteractGameObject(target); // your turnin code here } } } catch { } }; } or ulong lastTarget = 0; wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (lastTarget == target) return; if (!Logging.Status.StartsWith("Quester > TurnIn")) return; var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.Unit) { var unit = new WoWUnit(o.GetBaseAddress); if (unit.IsValid) { lastTarget = target; cancelable.Cancel = true; Interact.InteractGameObject(target); // your turnin code here } } } catch { } };
  20. Hello, try to use ingame lua event like: f = CreateFrame('Frame') f:RegisterAllEvents() f:SetScript('OnEvent', function() if event and tostring(event) == 'QUEST_COMPLETE' then QuestRewardItem{index}:Click(); QuestFrameCompleteQuestButton:Click(); end end ) (use random name for "f" and "'Frame'")
  21. Hello, WRobot check already it is "smaller or equal at". Your vendor is not blacklisted?
  22. Bonjour, lancer le macro tout les X secondes, ca ne devrai pas poser de problème. Si vous avez un message d'erreur vous pouvez toujours ajouter la condition dans le macro if (IsInGroup(LE_PARTY_CATEGORY_HOME) or IsInGroup(LE_PARTY_CATEGORY_INSTANCE)) then ACCEPTINVIT... else QUEUE... end
  23. Hello, it is strange, you get this problem since your first WRobot usage? Try to reset wow settings and clear wow cache.
×
×
  • Create New...