Jump to content

Droidz

Administrators
  • Posts

    12449
  • Joined

  • Last visited

Everything posted by Droidz

  1. I'm working on it. I rented a new server to save time. I'm installing (old one had failed motherboard and both hard drives, reason I was given: "The disjunction is due to a water leak on one of our network equipment" ). It takes time, I start from scratch (reconfiguration, send data…). The version for WOTLK should be available in the next few hours. Sorry for the inconvenience
  2. https://wrobot.eu/bugtracker/problem-with-connecting-to-the-server-r1474/
  3. Hello, An incident has occurred on the authentication server (probably hardware). I can't do anything at the moment, the hoster team is working on it. I don't know for how long there is.
  4. The limit is probably lua. Use buy/sell color filter, I'm sure that you can reduce your list
  5. This command https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/exit exit 1234 (replace 1234 by process id)
  6. Hello, The problem is that smoothmove can change path a little, and in some zones that small change can cause problems. In advanced general settings tab "Pathfinding" you can increment option "wall distance". Use bigger value in this option can generate strange path sometime.
  7. Hello, select NPC in smelting zone
  8. 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)
  9. Hello, you need to exit your .bat with the wow process id in exitcode
  10. I'am sorry, WRobot haven't this feature.
  11. I think your problem is caused by your fightclass.
  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, 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.
  14. Hello, do you have installed required software (vc++, slimdx) ?
  15. 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.
  16. 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".
  17. Hello, Can yuo share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  18. Hello, if (wManager.Wow.ObjectManager.ObjectManager.Me.WowClass == wManager.Wow.Enums.WoWClass.Warrior) { wManager.wManagerSetting.CurrentSetting.RestingMana = false; }
  19. 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?
  20. Hello. No, WRobot works and will work only on private servers. Current supported versions can be found here https://wrobot.eu/supported-wow-versions/
×
×
  • Create New...