Everything posted by Droidz
-
"Bags in process"???
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Careful with Botting on Netherwing!
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).
-
Bot randomly causing entire PC to freeze
Can you try to disable all WRobot plugins, and try with another fightclass/profile to check if you get this problem again
-
WRobot does not start the Game
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/ ).
-
Path finding
share again log please
-
Bot wont buy food (vanilla)
Hello, you have added vendor in you profile or npc db?
-
elevator Tb,Fp
Hello, disable smooth option and disable wow addons
-
Pathfinding Server down AGAIN!?
I need full log file to understand what happen. But servers are online, and your log seem clean
-
Wrobot error??
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"
-
Pressing a specific keyboard button
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:
-
Pause bot if player nearby doesnt work
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Incredibly slow update
Hello, you still get this problem?
-
Infinite walking route loop in feralas
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?
-
elevator Tb,Fp
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 install slimdx
-
Bot randomly causing entire PC to freeze
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Elevators (OffMeshConnection) all seem broken since latest update
Normally fixe was release, I'll check
-
Pathfinding Server down AGAIN!?
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.
-
Running Into Objects
Hello, you install of HMP is bad, check guide and reinstall this plugin
-
grinder wont start
Hello, try to use your profile with "Quester" product
-
Framestack dosent show button names
try to call
-
Framestack dosent show button names
https://github.com/Irame/TSM_WOTLK/blob/fd714be7de31950592b4ac68c620fc6280e1d508/TradeSkillMaster_AuctionDB/Modules/Scanning.lua#L384
-
Framestack dosent show button names
Hello, you can try to look code of addon
-
Pathfinding Server down AGAIN!?
Hello, the Pathfinder servers are online and no one reported any problems to me. Can you share your log file.
-
How to Pass Anti-Bot
Hello, it is automatic or GM send it to suspect users?
-
Can you make it, so wrobot does not count quiver/ammobag slots als normal bag slots?
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;"); } }