Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. and code like: Engine lastEngine = null; robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate(Engine engine, State state, CancelEventArgs cancelable) { try { if (engine == null || engine.States == null) return; if (engine != lastEngine) { if (engine.States.Any(s => s is Idle)) { lastEngine = engine; engine.AddState(new MyCustomState()); // or engine.States.Insert(X, new MyCustomState()); // cancelable.Cancel = true; ?? } } } catch { } };
  2. Hello, try to increment option "Max number of hostile units near the unit to attack", you can also activate radar3d to check if mob is not blacklisted
  3. Sorry, the code I had written could not work correctly, I just rewrite it
  4. if it is not that, it is probably you VM settings or Windows version, Wow works on VMware
  5. Hello, no option to put fake character level. If you can modify profile you can change zones level, but if it is paid profile the file is probably encrypted (and you cannot modify encrypted files, in this case only profile creator can do it). If you can also try to change wow memory with plugin like (not recommanded method): using System.Threading; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { const uint LevelChangeOffset = 4; private uint CurrentLevel { get; set; } public void Initialize() { EventsLua.AttachEventLua("PLAYER_LEVEL_UP", context => { CurrentLevel = 0; }); while (Conditions.ProductIsStarted) { if (Conditions.InGameAndConnectedAndProductStartedNotInPause) { var lvl = wManager.Wow.ObjectManager.ObjectManager.Me.Level; if (CurrentLevel == 0) CurrentLevel = lvl; uint newLevel = CurrentLevel + LevelChangeOffset; if (lvl > 0 && lvl != newLevel) wManager.Wow.Memory.WowMemory.Memory.WriteUInt32(wManager.Wow.ObjectManager.ObjectManager.Me.GetDescriptorAddress(wManager.Wow.Patchables.Descriptors.UnitFields.Level), newLevel); } Thread.Sleep(100); } } public void Dispose() { } public void Settings() { } }
  6. Hello, you use last version of WRobot? You have try to download wow client in another website?
  7. when npc is near you (in objectmanager)?
  8. when this happen again, if you can send me by private message result of "all memory info" buton in dev tools
  9. Hi, not quickly but normally the bot blacklist mob (15-30 seconds) and leaving the fight. You have tried to wait?
  10. Hello, in advanced general settings increment your min latency
  11. Hello, you can found upgrade invoice here: https://wrobot.eu/clients/orders/
  12. Hi, you get same problem with "OnStartEngine"? You can also try to use "OnAddState" when bot add "Idle" (it is all time last state)
  13. Try to close all useless programs. Try also fresh wrobot install with default settings (use only your profile, try without fightclass)
  14. try to install Redistributable Visual C + + 2010 (X86) and SlimDX (4.0 X86)
  15. Yes I also looked the code and did some tests I was going to tell you that I cannot reproduce this problem.
  16. Hello, try to increment your min latency (in advanced general settings). If you use wow addons disable all. You can also try without plugin/fihtclass and with fresh WRobot install (with default settings) (to be sure that is not problem)
  17. Do you have error in your log file?
  18. Hello, this problem is generally caused by teamviewer, but can be caused by your antivirus. You have try to disable all?
  19. Hello, try again problem resolved
  20. Droidz

    Black s**t screen

    You are sure that you use last version? I tested again I cannot reproduct problem. For me the problem came from CTM, sometime he was called with float.NaN param (that do blackscreen or crash wow)
  21. Hello, use old version https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
×
×
  • Create New...