Jump to content

Droidz

Administrators
  • Posts

    12586
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, in advanced general settings tab "Vendor..." increment "Drink Amount", in tab "Food/Drink" complete drink name (you need to add NPC type "vendor" in your "NPC DB" (tab "Tools") or in your profile)
  2. Hey, it is hardcoded but try code like that (not tested) using System.Threading; using System.Threading.Tasks; using robotManager.Helpful; using robotManager.Products; using wManager.Wow.Bot.States; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Task.Run(() => { while (Conditions.InGameAndConnectedAndProductStartedNotInPause && ObjectManager.Me.IsDeadMe) { if (ObjectManager.Me.IsValid && ObjectManager.Me.PositionCorpse.DistanceTo(ObjectManager.Me.Position) < 45) { Logging.Write("Stop product near corpse"); Products.ProductStop(); } Thread.Sleep(500); } }); } }; } public void Dispose() { } public void Settings() { } }
  3. chekc if you use utf8 file encodage (for the plugin file)
  4. Hello, easy way is to use bot "Automaton" (but you can also do that with quester or grinder)
  5. Hey, In you log you have line robotManager.Helpful.Logging.Write("124")? try to add these lines afer: robotManager.Helpful.Logging.Write("p.CurrentWowAccount==null > " + (p.CurrentWowAccount == null)); robotManager.Helpful.Logging.Write("p.CurrentWowAccount.AccountName==null > " + (p.CurrentWowAccount.AccountName == null)); robotManager.Helpful.Logging.Write("p.CurrentWowAccount.Password==null > " + (p.CurrentWowAccount.Password == null)); You run this code at start? if yes try to wait few seconds (maybe relogger profiles are not completly loaded)
  6. Hello, try to use smaller value at https://wrobot.eu/byme/doc/html/F-wManager.wManagerSetting.BlacklistGameObjectDefaultTimeMs.htm (you need to edit xml settings file or to use C# code to change this option)
  7. Hello, https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ .
  8. Hello, this error is not important, if you have problem please share full log file and give more detaila about your problem
  9. Hello, is your screenshot you have selected only one step, select all steps and unselect bugged step (with "CTRL" (key) + left mouse click )
  10. Hello, this error is because I closed recently 2 pathfinder servers. This error I don't know why, maybe bad install of framework.net
  11. Hello, you can use wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; , go to zone (with follow path by sample) and disable this option: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; bot will attack all mobs
  12. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  13. Hello, you can use this plugin: Ignore Elite.cs or in advanced general settings tab "pathfinding" you use option "try to avoid group of mobs". But the best is to avoid to bot in complicated areas
  14. Hello, try to disable all wow addons
  15. Hello, It's a very old version and we both know which one it is... Use current bot version (with trial version if you want test)
  16. https://wrobot.eu/forums/topic/13026-project-ascension-wrobot-no-longer-finding-client/?do=findComment&comment=61936&_rid=1 I do not advise to do this, I remind you that Ascension detects the bot
  17. The code that I given is for Azeroth, for Kalimdor use wManager.Wow.Memory.WowMemory.Memory.WriteInt32(wManager.Wow.ObjectManager.ObjectManager.ObjectManagerAddress + 0xCC, (int)wManager.Wow.Enums.ContinentId.Kalimdor); You can run it in your profile, in plugin, or in "Dev... tools" (tab "Tools"), paste the code in top textbox, select "C#" (instead "Lua (Wow)") and click on "Run Code".
  18. Problem should be resolved
  19. you go here to view remote https://wrobot.eu/remote/ ?
  20. Hello, Ascension use launcher (and modified game client), that launcher inject dll which contains protection code agains bot (in this case he changes continent ID on memory to make WRobot think he's in another place). To fix it you need to run code like wManager.Wow.Memory.WowMemory.Memory.WriteInt32(wManager.Wow.ObjectManager.ObjectManager.ObjectManagerAddress + 0xCC, (int)wManager.Wow.Enums.ContinentId.Azeroth); But it is unsafe (for your account). In any case, use bot on this server is not recommanded and very unsafe
  21. Hello, do you have error in your log file?
  22. Hello, you can found link in site header ( https://discord.gg/HXunx8tUpn )
  23. Hello, I can't reproduce this problem. You have installed SlimDX? https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/slimdx/SlimDX Runtime .NET 4.0 x86 (January 2012).msi
×
×
  • Create New...