Jump to content

Droidz

Administrators
  • Posts

    12494
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, select NPC in smelting zone
  2. The first fightclass seems to attach the same event a significant number of times, whereas it should be done only once. In your second (xml shared), you spam lua code , but this lua code is incorrect. Try with download fightclass (or without to be sure)
  3. Hello, you need to exit your .bat with the wow process id in exitcode
  4. I'am sorry, WRobot haven't this feature.
  5. I think your problem is caused by your fightclass.
  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. Hello, I am not sure to understand. But you can't run bot without game client. But you can use low graphics qualities options to reduce CPU, memory and GPU usage. You can also optimize bot with fightclass with big sleep time and a little spell number, and change various bot settings to decrease resource usage.
  8. Hello, do you have installed required software (vc++, slimdx) ?
  9. Hello, do you have an error in your log ? Do you have tried to copy items names/id from toolbox (in tab "Others" > "Dev... tools" > button "All bag... items"? Do you use Wow add-ons? If yes, try to disable all.
  10. Hello, No, it's only for "Gatherer" product. But with "Grinder" profile editor, you can add several zones (change by character level). If you need more feature, you need to use "Quester".
  11. Hello, Can yuo share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  12. Hello, if (wManager.Wow.ObjectManager.ObjectManager.Me.WowClass == wManager.Wow.Enums.WoWClass.Warrior) { wManager.wManagerSetting.CurrentSetting.RestingMana = false; }
  13. Hello, It depends on the version of Wow, but in WOTLK by sample : using System.Runtime.InteropServices; using wManager.Wow.Patchables; namespace wManager.Wow.Helpers { /// <summary> /// Class WoWLock /// </summary> public class WoWLock { private readonly LockDbcRecord _lockDbcRecord0; private static DBC<LockDbcRecord> _lockDBC; private WoWLock(uint id) { if (_lockDBC == null) _lockDBC = new DBC<LockDbcRecord>(0x00AD40F4 - 0x400000); _lockDbcRecord0 = _lockDBC.GetRow((int) id); } /// <summary> /// By id. /// </summary> /// <param name="id">The id.</param> /// <returns>WoWLock.</returns> public static WoWLock FromId(uint id) { return new WoWLock(id); } /// <summary> /// Get record. /// </summary> /// <value>The record.</value> public LockDbcRecord Record { get { return _lockDbcRecord0; } } [StructLayout(LayoutKind.Sequential)] public struct LockDbcRecord { // 1 + 4*8 = 33 fields public uint Id; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public uint[] KeyType; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public uint[] LockType; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public uint[] Skill; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public uint[] Action; } } } Which DB do you want to read?
  14. Hello. No, WRobot works and will work only on private servers. Current supported versions can be found here https://wrobot.eu/supported-wow-versions/
  15. 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)
  16. Hello, try to download Wow client in another website (you need to use default and unmodified wow client)
  17. Hello, you can disable step in tab "Product settings" > button "Profile settings (enable/disable quests/steps)"
  18. Hello, see https://wrobot.eu/forums/topic/5507-changing-botbase/
  19. Hello, you play with good game version ? Do you have any error in your log ?
  20. 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/ ).
  21. 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)
×
×
  • Create New...