Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. You can try code like (no tested): if not _oldGetTime then _oldGetTime = GetTime; _randomTime = math.random(1000, 86400); function GetTime() return _oldGetTime() + _randomTime; end end it should not cause problem to the bot and addons (and use custom variable name).
  2. Can you try to disable all WRobot plugins, and try with another fightclass/profile to check if you get this problem again
  3. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (install required softwares) If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  4. share again log please
  5. Hello, you have added vendor in you profile or npc db?
  6. Hello, disable smooth option and disable wow addons
  7. I need full log file to understand what happen. But servers are online, and your log seem clean
  8. Hello, try to remove wow cache folder and if problem is not resolve to download another wow client (in another website). If the problem persists as Matenia says, share the crash log (in the wow error folder). You can also try to disable wrobot plugin,, try with another profile/fightclasses and try to launch WRobot with shortcut "WRobot no dx"
  9. Hello, if you want press key to external program window use code like: Replace ExeFileNameWithoutExtension by file name (without .exe) You can replace F1 by https://docs.microsoft.com/fr-fr/dotnet/api/system.windows.forms.keys?view=netframework-4.7.2 If you want press key to Wow window:
  10. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  11. Hello, you still get this problem?
  12. Hello, Can you share your full log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). And You have try to use another profile?
  13. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 install slimdx
  14. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  15. Normally fixe was release, I'll check
  16. When server is done he don't return path, and bot is in pause (your character don't move) Can you describe to me with more detail the problem you have.
  17. Hello, you install of HMP is bad, check guide and reinstall this plugin
  18. Hello, try to use your profile with "Quester" product
  19. try to call
  20. https://github.com/Irame/TSM_WOTLK/blob/fd714be7de31950592b4ac68c620fc6280e1d508/TradeSkillMaster_AuctionDB/Modules/Scanning.lua#L384
  21. Hello, you can try to look code of addon
  22. Hello, the Pathfinder servers are online and no one reported any problems to me. Can you share your log file.
  23. Hello, it is automatic or GM send it to suspect users?
  24. And code look like: var QuiverAmmoBagsId = new List<int> { 29143, 29144, 29118, 18714, 44447, 44448, 34105, 34106, 34099, 34100, 19319, 19320, 2662, 2663, 8217, 8218, 7371, 7372, 3604, 3605, 3573, 3574, 11362, 11363, 5439, 5441, 7278, 7279, 2101, 2102, }; var freeSlots = 0; var bags = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWContainer(); foreach (var b in bags) { if (b.IsValid && QuiverAmmoBagsId.Contains(b.Entry) && b.Owner == wManager.Wow.ObjectManager.ObjectManager.Me.Guid && (b.ContainedIn == 0 || b.ContainedIn == wManager.Wow.ObjectManager.ObjectManager.Me.Guid) && !string.IsNullOrWhiteSpace(b.Name)) { freeSlots += Lua.LuaDoString<int>($@" local freeSlots = 0; for bagID = 1, 4 do if GetBagName(bagID) ~= nil and GetBagName(bagID) == '{b.Name.Replace("'", "\'")}' then for s=1,GetContainerNumSlots(bagID) do local i = GetContainerItemInfo(bagID,s); if not i then freeSlots = freeSlots + 1 end end end end return freeSlots;"); } }
  25. wManager.Wow.Helpers.Bag.GetContainerNumFreeSlotsNormalType return good result for me in Wotlk and Tbc
×
×
  • Create New...