Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, use WRotation product
  2. Now support 7.2.0.23911
  3. You are alone at report this problem, I think than this problem is probably caused by your wrobot install. Can you try to reinstall WRobot? If you can send me your profile I'll try to reproduce this problem (you can send me your profile by private message).
  4. Hello, you can create your own product/custom profile, or use event (with plugin or fightclass) to hook "FreeDefaultState" bg like: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state == null || string.IsNullOrWhiteSpace(state.DisplayName) || state.DisplayName != "Free default") return; // put your bahaviour here: // if you don't want run base behaviour: cancelable.Cancel = true; };
  5. Droidz

    Exception Reaction

    And you get this problem only in this zone?
  6. Hello, on what version of wow do you play? and you can try to use lua for that
  7. Hello, try new Thread(() => { robotManager.Products.Products.InPause = true; Thread.Sleep(20 * 1000); // 20 secondes robotManager.Products.Products.InPause = false; }).Start(); or robotManager.Products.Products.InPause = true; Thread.Sleep(20 * 1000); // 20 secondes robotManager.Products.Products.InPause = false;
  8. Droidz

    Safe resurrection

    Normally wrobot try to found the best position to resurrect. Are you sure that when this happen, an safe spot is available to resurrect?
  9. Hello, to use descriptor you can use WRobto API like: uint address = wManager.Wow.ObjectManager.ObjectManager.Me.GetDescriptorAddress(wManager.Wow.Patchables.Descriptors.PlayerFields.NextLevelXP); int result = wManager.Wow.Memory.WowMemory.Memory.ReadInt32(address); If you don't want to use focus, you can try to use "mouseover": WoWUnit target; // ... your target uint s_MouseOver = 0x00BD0798; // 3.3.5 http://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/298310-3-3-5-offsets.html#post1902575 wManager.Wow.Memory.WowMemory.Memory.WriteUInt64(s_MouseOver, target.Guid); SpellManager.CastSpellByNameOn("Spell Name", "mouseover");
  10. Hello, add objects at havrest with c# code step, and use killandloot quest type: wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(235390); (replace 235390 by object id) (sample: http://wrobot.eu/files/file/486-garrison-farm-minesherbs/ )
  11. Hello, it is spell stetting "Check if target in view", this option is active by default
  12. Try to add npc in your npc db (tab tools). The NPC is far?
  13. Hello, try to change your mount (in general settings)
  14. Sorry, you need to put full path like: .LoadCustomClass(Application.StartupPath + @"\FightClass\myfightclass.xml");
  15. Do you have try to install this verison of framework? https://www.microsoft.com/en-us/download/details.aspx?id=42637
  16. Try to run code: new Thread(() => { robotManager.Products.Products.ProductStop(); Thread.Sleep(1000); robotManager.Products.Products.ProductStart(); }).Start();
  17. Hello, in relogger general settings, instead "WRobot.exe" select file with name like "UqtfGgP.exe". If you cannot resolve problem try to reinstall WRobot.
  18. COMBAT_LOG_EVENT_UNFILTERED seem not exist in vanilla
  19. Hello, no you cannot use this in lua. Where do you want use your script?
  20. Hello, with "custom profile" you can do what you want, but it is not easy way to do quest with. Why do you not use normal quest profile, you can use you own code/class
  21. If you can wait next update and tell me if gameobject distance is fix (in wrobot for vanilla)
  22. What product do you use?
  23. Hello, use lua to wait, I comeback here when is fix.
  24. Hello, I confirm than "COMBAT_LOG_EVENT_UNFILTERED" seem skip in "OnEventsLuaWithArgs ". I'll fix it, I comeback here when is done, to wait you can try to use lua script
  25. Try to disable option "Ignore fighting during farm if in druid form/Sky Golem"
×
×
  • Create New...