Jump to content

Droidz

Administrators
  • Posts

    12449
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hi, The bot uses unpack Lua function only to extract Lua events. When you catch LuaEvent does your code take time ? (maybe try to lock one thread to try to reproduce the problem, if it's the problem try to run the slow code in a new thread. In dungeons, he has probably more events that in open world). You can also try to put lower value at : wManager.wManagerSetting.CurrentSetting.EventsLuaWithArgsWaitTime wManager.Wow.Helpers.EventsLua.RefreshMs (~150 by default)
  2. Hello, try to download Wow client in another website (you need to use default and unmodified wow client)
  3. Hello, you can disable step in tab "Product settings" > button "Profile settings (enable/disable quests/steps)"
  4. Hello, see https://wrobot.eu/forums/topic/5507-changing-botbase/
  5. Hello, you play with good game version ? Do you have any error in your log ?
  6. 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/ ).
  7. Disable all Wow add-ons, and install WRobot in a new folder (to reset all settings). Try with default settings, if it still doesn't work correctly, try to increment min/max latency (with values like 1000/1500)
  8. Can you share your log file of session where you run fisher product please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) .
  9. in advanced general settings
  10. Hello, Wow client is load only the closer objects, you can't change that. But you can try to search in wManager.Wow.Helpers.NpcDB.ListNpc (or add NPCs positions in your code, there are few auctioneers)
  11. Have you tried old version : https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
  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 try (it's not recommended to use this code, it can add bugs) : wManager.Events.FightEvents.OnFightEnd += delegate(Int128 guid) { var o = ObjectManager.GetObjectByGuid(guid); if (o != null && o.IsValid && o.Type == WoWObjectType.Unit && // o.Entry == 1234 && // By Entry ID ????? new WoWUnit(o.GetBaseAddress).IsAlive) { Fight.StartFight(guid, false); } };
  14. Hello, we need more information to help you. There are many possibilities, but we need to know the context.
  15. For the options, you can find most of them here https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm For the rest, search on the forum (use Google it is better), look at the code for profiles/plugins/etc, or request help of forum.
  16. Hello, if you want to use several products, using "relogger" application is the best way.
  17. Hello, run this code from your profile : wManager.Wow.Helpers.Radar3D.Pulse(); wManager.wManagerSetting.CurrentSetting.BlackListZoneWhereDead = true;
  18. List<String> ItemNames = new List<string> { "First Item", "second Item", //etc }; foreach (string ItemName in ItemNames) { if(!wManager.wManagerSetting.CurrentSetting.DoNotSellList.Contains(ItemName)) wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add(ItemName); }
  19. I am sorry, I don't understand why you get this problem. Have you tried to restart your computer? Do you use proxy ?
  20. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  21. Hello, in advanced general settings tab "Looting & Farming..." add herbs names in "Harvest object..." list
  22. Hello, try SpellManager.ExistMount("Warhorse") || SpellManager.ExistSpellBook("Warhorse")
×
×
  • Create New...