Everything posted by Droidz
-
Set foreground/focus wow window
Hi, robotManager.Helpful.Display.ShowWindow(obj.CurrentWowProcess.MainWindowHandle); public static void ShowWindow(IntPtr mainWindowHandle) { Native.ShowWindow(mainWindowHandle, Native.SwRestore); Native.SetForegroundWindow(mainWindowHandle); }
-
[Partially fixed]Can't make working gatherer quest
try to active option quest option RepeatableQuest
-
Path finder seems broken
it is strange, try to use cloudflare or google dns
-
Path finder seems broken
The last update normally corrects the problem, it changes server if the selected server is malfunctioning (and I tried to solve the problem on the server side).
-
Relogger checkboxes and windows classic theme
Hi, I can reproduce this problem but I don't understand why, and I haven't found how to resolve it. But it is old Windows version and this affect only if you don't use default Windows style, I'll not fix it.
-
Tauri wow game crash
Do not pay attention to the version I do not always change it (if WRobot does not ask for an update at startup, it means that it is up to date).
-
Tauri wow game crash
If you can tell me if you still get crash with the new update
-
The WR button doesn't work
Hello, Wait next update for the fix
-
Path finder seems broken
In next update I'll fix problem with this security (the bot is often stuck on pause without trying to change servers)
-
BfA version
Hello, what is your BfA game version (with build number)? I need to know this to add the supports
-
Tauri wow game crash
I'll check. Are you using the updated version of WRobot?
-
dump lua
hi, look https://github.com/goldpaw/WoW_UI_Source_WotLK/blob/7ac7bc5b6ebc57f7de70c64aaf61072bb22bc511/AddOns/Blizzard_DebugTools/Dump.lua#L350 -- DEVTOOLS_MAX_ENTRY_CUTOFF = 0 DevTools_Dump(_G)
-
How to use mount with item ID in Mount options?
Hello, you play in Wotlk? put item name don't works?
-
Tauri wow game crash
Did you notice a particular moment in these crashes? (when movement, cast spell, if wrobot is attached without starting a product he crashes?)
-
Tauri wow game crash
Hello you have try to download client on another website (not in website of the server)?
-
How to blacklist specific spot in quester.
Hello, in easy quest editor > tools > blacklist editor
-
Wrobot wont work
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Sell the purple items of the first two backpacks?
https://wowwiki.fandom.com/wiki/API_GetItemQualityColor Try /run local q;if MerchantFrame:IsVisible()then for i=1,300 do q=GetContainerItemLink(i/35,i%35)if (q and (q:sub(5,10)=="a335ee" or q:sub(5,10)=="0070dd")) then UseContainerItem(i/35,i%35)end;end;end
-
Sell the purple items of the first two backpacks?
Hi, replace 300 by 69
-
Kill mobs that in range, until there are no units left
it is "using" problem, I fixed code, it is sample (starting orc zone): test.xml
-
(tbc) Find next not dead position
Hello, if it is for one dunjon maybe you can try to blacklist zone, or compare zone and move if you are in bad zone. Otherwise I think with events lua or gameobject entry id
-
Kill mobs that in range, until there are no units left
Hi, no tested but you can try code like this: using System.Collections.Generic; using robotManager.Helpful; using wManager.Wow.Bot.States; using wManager.Wow.Class; using wManager.Wow.ObjectManager; public class QuestGrindingNearestMobs : QuestClass { public Vector3 HotSpots = new Vector3(1, 2, 3); public float RadiusGrinderZone = 50; public string NameQuest = "QuestGrindingNearestMobs"; private wManager.Wow.Bot.States.GrindingNearestMobs _grinder; private wManager.Wow.Bot.States.MovementLoop _movement; public QuestGrindingNearestMobs() { _grinder = new wManager.Wow.Bot.States.GrindingNearestMobs { Priority = 2, CenterGinderZone = HotSpots, RadiusGrinderZone = RadiusGrinderZone }; _movement = new wManager.Wow.Bot.States.MovementLoop { PathLoop = new List<Vector3>() { HotSpots } }; Name = NameQuest; } public override bool Pulse() { Logging.Status = "Quester > Grinder nearest mobs for \"" + Name + "\""; if (_grinder.NeedToRun) _grinder.Run(); else if (_movement.NeedToRun) { _movement.Run(); } return true; } public override bool IsComplete() { return !_grinder.NeedToRun && ObjectManager.Me.Position.DistanceTo(HotSpots) <= RadiusGrinderZone; } public override bool HasQuest() { return !IsComplete(); } }
-
Too many times to enter the dungeon in a short time.
Hello, look https://wrobot.eu/forums/topic/9204-addingusing-a-counter/?do=findComment&comment=42769&_rid=1
-
Wrobot slow act
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/ ).
-
Connections
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/ ).