Jump to content

Droidz

Administrators
  • Posts

    12432
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from TheSmokie in WoW has stopped working every time I'm about to launch the bot - REPLY TO DROIDZ   
    Hello, you can reply on the topic instead create new
    look torrent or others servers website to found others clients, I found https://wowdl.net/fichiers/clients
  2. Thanks
    Droidz got a reaction from Pudge in Pathfinder server   
    Hi, the problem should be solved.
  3. Like
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in WOW crash when fighting in BG   
    you use last update?
  4. Like
    Droidz got a reaction from Pudge in ClickToMove.CGPlayer_C__ClickToMove(x, y, z, 0, (int)ClickToMoveType.Move, 0);   
    Hi,
    If I'm not mistaken, by default Wow uses 0 (and since a few updates the bot forces the use of 0 internally)
  5. Like
    Droidz got a reaction from Pudge in wManager.wManagerSetting.CurrentSetting.Save();   
    Hi,
    When you edit "wManager.wManagerSetting.CurrentSetting" change is instant. Maybe quest profile change settings, if you save settings when running, quester cannot restore default settings
  6. Like
    Droidz got a reaction from Pudge in Snippets codes for quest profiles   
    Use item on hostile weakened mob
    Add step type "PickUp" (put quest name in parameter) Add step type "RunCode", in parameter put this code: Thread t = new Thread(() => { uint itemId = 62899; int questId = 28000; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 25) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start();  (you need to have quest in your questlog, you can replace "62899" but the item id, "28000" by the quest id and "25" by the max target health)
    Add step type "Pulse" (put quest name in parameter) (use quest type kill or interact)
    Add step type "TurnIn" (put quest name in parameter)
    (sample if based on this quest: http://www.wowhead.com/quest=28000/do-the-imp-possible )
  7. Thanks
    Droidz got a reaction from Pudge in Delete one blacklist of zone   
    Hi, try
    wManager.wManagerSetting.GetListZoneBlackListed().RemoveAll(z => z.Comment == "comment to remove"); // or wManager.wManagerSetting.GetListZoneBlackListed().RemoveAll(z => z.GetPosition().DistanceTo(new Vector3(1, 2, 3)) < 0.5);  
  8. Like
    Droidz got a reaction from Marvelino123 in "Hooking Error" - What can I do?   
    Hello, in wow settings don't unlock FPS (and use fps limit like 60 or less)
  9. Like
    Droidz got a reaction from Marvelino123 in BfA version   
    Hi,
    is done, I released version for BfA (you need to redownload updater)
  10. Like
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in BfA version   
    Hi,
    is done, I released version for BfA (you need to redownload updater)
  11. Like
    Droidz got a reaction from Apexx in BfA version   
    Hi,
    is done, I released version for BfA (you need to redownload updater)
  12. Thanks
    Droidz got a reaction from Messerboogie in [wotlk] Use mount from inventory   
    Hello, try https://wrobot.eu/forums/topic/12585-how-to-use-mount-with-item-id-in-mount-options/?tab=comments#comment-60315
  13. Thanks
    Droidz got a reaction from Messerboogie in [Wotlk] Farming question   
    Hello, you can the best is to use quest product but it require good skill to do this yourself.
  14. Like
    Droidz got a reaction from Pudge in [Quester] He's trying to pickup quest for more than 120 secondes, go to next step   
    Hi,
    wManager.Wow.Helpers.Quest.QuesterCurrentContext.SkipPickUpQuestAfterXSecondes you need to change it in questcontext
     
  15. Thanks
    Droidz got a reaction from TheSmokie in Is item soulbound or not   
    Hey, you need to use lua for that.
    look  https://www.wowinterface.com/forums/showthread.php?t=51249 or maybe source code of https://www.curseforge.com/wow/addons/auto-seller   
  16. Like
    Droidz got a reaction from Artek in [Fixed] Wrotation wont let me change target   
    Hello, you have option in advanced general settings to ignore pet 
  17. Thanks
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in Bot spiraling up as high as possible   
    If anyone has time to try with this file: robotManager.dll (move and replace file in the "Bin" folder and ignore the update request when the bot starts). This file will log when WRobot presses a key, with several log files I could have been a better idea of what is happening with Wotlk (do not use 'Use lua to move' option)
  18. Like
    Droidz got a reaction from Apexx in Bot spiraling up as high as possible   
    If anyone has time to try with this file: robotManager.dll (move and replace file in the "Bin" folder and ignore the update request when the bot starts). This file will log when WRobot presses a key, with several log files I could have been a better idea of what is happening with Wotlk (do not use 'Use lua to move' option)
  19. Like
    Droidz got a reaction from 79135 in Bug with windows   
    Hi, I'm sorry but this problem will be difficult for me to resolve, you are the only one to have reported something similar to me.
    see if it's not a problem with your Windows, if it's up to date, why not try reinstalling it.
  20. Thanks
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in Pathing Stormwind   
    I tested I cannot reproduce problem, try to download and install WRobot in new folder (don't change settings put only your profile)
  21. Thanks
    Droidz got a reaction from zhxwbr8 in How to use mount with item ID in Mount options?   
    If by name that don't works, in settings put buff name like his happer in game when you mouse is over (top/right), and use this plugin: Main.cs
    using System.ComponentModel; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.OthersEvents.OnMount += delegate(string name, CancelEventArgs cancelable) { MovementManager.StopMoveTo(); // or MovementManager.StopMove(); ItemsManager.UseItem(67009); Usefuls.WaitIsCasting(); cancelable.Cancel = true; }; } public void Dispose() { } public void Settings() { } } (this plugin will use item when WRobot will try to use mount spell)
  22. Like
    Droidz got a reaction from TheSmokie in BfA version   
    Hello, what is your BfA game version (with build number)? I need to know this to add the supports
  23. Like
    Droidz got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in BfA version   
    Hello, what is your BfA game version (with build number)? I need to know this to add the supports
  24. Thanks
    Droidz got a reaction from zhxwbr8 in The WR button doesn't work   
    Hello, Wait next update for the fix
  25. Like
    Droidz got a reaction from Artek in How to blacklist specific spot in quester.   
    Hello, in easy quest editor > tools > blacklist editor
×
×
  • Create New...